:root {
  --bg: #f5efe5;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffaf1;
  --text: #1f2933;
  --muted: #55606d;
  --line: rgba(61, 76, 91, 0.16);
  --accent: #e25822;
  --accent-dark: #b8441f;
  --accent-soft: rgba(226, 88, 34, 0.12);
  --accent-glow: rgba(226, 88, 34, 0.10);
  --forest: #203833;
  --shadow: 0 24px 60px rgba(31, 41, 51, 0.12);
  --radius-card: 24px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(171, 122, 54, 0.09), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(32, 56, 51, 0.05), transparent 20%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

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

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-copy > * {
  animation: heroFadeUp 720ms ease both;
}

.hero-copy > *:nth-child(1) { animation-delay: 60ms; }
.hero-copy > *:nth-child(2) { animation-delay: 140ms; }
.hero-copy > *:nth-child(3) { animation-delay: 220ms; }
.hero-copy > *:nth-child(4) { animation-delay: 300ms; }
.hero-copy > *:nth-child(5) { animation-delay: 380ms; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes softDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(6px, -6px, 0);
  }
}

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

.hero {
  min-height: 100vh;
  padding: 104px clamp(20px, 4vw, 52px) 24px;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(calc(100% - 32px), 1240px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 0;
  padding: 14px 18px;
  border: 1px solid rgba(226, 88, 34, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), #2a4a43);
  color: #f7efe3;
  box-shadow: 0 10px 24px rgba(32, 56, 51, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand-text {
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 12px;
  color: var(--accent-dark);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.14);
  background: rgba(255, 251, 246, 0.9);
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.04);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: var(--accent);
  border-color: rgba(226, 88, 34, 0.34);
  background: rgba(255, 245, 239, 0.98);
  transform: translateY(-1px);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 410px);
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-heading .eyebrow,
#methode .eyebrow,
.about-panel .eyebrow,
.contact-copy .eyebrow,
.faq-section .eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent) !important;
}

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

.hero h1,
.footer h3 {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.intro,
.section-heading p,
.about-panel p,
.contact-copy p,
.service-card p,
.timeline p,
.hero-card p {
  line-height: 1.75;
  color: var(--muted);
}

.intro {
  max-width: 60ch;
  margin: 26px 0 0;
  font-size: 1rem;
}

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

.hero-primary-button {
  position: relative;
}

.hero-primary-button::before {
  content: "↓";
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  color: rgba(226, 88, 34, 0.78);
  font-size: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff8ee;
  box-shadow: 0 14px 30px rgba(178, 68, 31, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #c94e21, #f06a2f);
}

.button-secondary {
  border-color: rgba(226, 88, 34, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  border-color: rgba(226, 88, 34, 0.26);
  background: rgba(255, 250, 248, 0.95);
}

.hero-card,
.service-card,
.about-panel,
.contact-form,
.timeline article {
  border: 1px solid rgba(226, 88, 34, 0.18);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.06);
}

.hero-card {
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(31, 41, 51, 0.08);
}

.card-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-card .card-label,
.hero-card-floating .card-label {
  color: var(--accent) !important;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.services {
  scroll-margin-top: 140px;
}

#methode {
  scroll-margin-top: 108px;
}

#apropos {
  scroll-margin-top: 108px;
}

.section {
  padding: 24px clamp(20px, 4vw, 52px) 84px;
}

.trust-band {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.trust-band::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0), rgba(226, 88, 34, 0.28), rgba(226, 88, 34, 0));
  transform: translateY(-50%);
}

.trust-band::after {
  display: none;
}

.trust-band p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 9px 18px;
  background: rgba(249, 245, 238, 0.96);
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.08);
  box-shadow: 0 6px 16px rgba(226, 88, 34, 0.04);
  font-size: 0.95rem;
}


.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}

.faq-section .section-heading h2 {
  max-width: none;
}

.services-heading {
  max-width: none;
  width: 100%;
}

.services-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.services-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  width: 100%;
}

.services-prompt {
  min-width: 0;
  padding: 8px 14px;
  border-left: 2px solid rgba(226, 88, 34, 0.24);
  background: rgba(255, 252, 247, 0.42);
  border-radius: 0 14px 14px 0;
}

.services-prompt h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink-strong);
}

.services-prompt p {
  margin: 2px 0 0;
  color: rgba(85, 96, 109, 0.82);
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: nowrap;
}


.contact-copy h2,
.faq-section .section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.method-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.92rem, 3vw, 3rem);
}

.approach-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.78rem, 2.85vw, 2.8rem);
}

.section-heading.narrow {
  max-width: 620px;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0.82), rgba(226, 88, 34, 0.14), rgba(226, 88, 34, 0));
  opacity: 0.85;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 41, 51, 0.09);
  border-color: rgba(226, 88, 34, 0.24);
}

.service-card h3 {
  margin-bottom: 18px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 235, 222, 0.92), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(61, 76, 91, 0.1);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  font-size: 1.4rem;
}

.approach-card {
  min-height: 0;
  padding: 22px 26px;
  border-color: rgba(226, 88, 34, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(248, 242, 234, 0.9));
  box-shadow: 0 16px 30px rgba(31, 41, 51, 0.05);
  transition: padding 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.approach-card::before {
  height: 3px;
  opacity: 0.4;
}

.approach-card:has(.approach-disclosure[open]) {
  padding-bottom: 28px;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(31, 41, 51, 0.08);
  border-color: rgba(226, 88, 34, 0.28);
}

.approach-disclosure {
  margin: 0;
}

.approach-disclosure summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--accent-dark);
}

.approach-disclosure summary::-webkit-details-marker {
  display: none;
}

.approach-summary-text {
  display: grid;
  gap: 8px;
}

.approach-card-title {
  display: block;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
  line-height: 1.2;
  color: var(--ink-strong);
}

.approach-disclosure summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 88, 34, 0.08);
  font-size: 1.12rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 180ms ease, background 180ms ease;
}

.approach-disclosure[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(226, 88, 34, 0.14);
}

.approach-disclosure-content {
  padding-top: 14px;
}

.approach-disclosure-content p {
  max-width: none;
  margin: 0;
  color: rgba(61, 76, 91, 0.86);
}

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

.timeline article {
  padding: 24px;
  border-radius: 24px;
}

.service-watermark,
.timeline-watermark {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: clamp(4.8rem, 7.6vw, 6.3rem);
  line-height: 1;
  opacity: 0.16;
  transform: none;
  filter: saturate(0.78);
  z-index: 0;
  pointer-events: none;
}

.timeline-watermark {
  top: 18px;
  right: 18px;
  font-size: clamp(4.2rem, 6.6vw, 5.2rem);
  opacity: 0.11;
  filter: grayscale(0.15) saturate(0.55);
}

.timeline article > * {
  position: relative;
  z-index: 1;
}

.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.approach-visual {
  position: relative;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 76, 91, 0.12);
}

.approach-visual::before,
.approach-visual::after {
  content: "";
  position: absolute;
}

.approach-visual-video {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, rgba(32, 56, 51, 0.98), rgba(89, 120, 112, 0.9));
}

.approach-visual-video::before {
  inset: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 248, 238, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.approach-visual-video::after {
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid rgba(255, 248, 238, 0.92);
}

.approach-visual-balance {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(135deg, rgba(171, 122, 54, 0.96), rgba(122, 85, 33, 0.94));
}

.approach-visual-balance::before {
  left: 50%;
  top: 24px;
  width: 4px;
  height: 84px;
  transform: translateX(-50%);
  background: rgba(255, 248, 238, 0.92);
  border-radius: 999px;
}

.approach-visual-balance::after {
  left: 50%;
  top: 48px;
  width: 110px;
  height: 4px;
  transform: translateX(-50%);
  background: rgba(255, 248, 238, 0.92);
  border-radius: 999px;
  box-shadow:
    -40px 26px 0 -18px rgba(255, 248, 238, 0.92),
    40px 26px 0 -18px rgba(255, 248, 238, 0.92),
    -40px 36px 0 -18px rgba(255, 248, 238, 0.92),
    40px 36px 0 -18px rgba(255, 248, 238, 0.92);
}

.approach-visual-growth {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, rgba(39, 63, 85, 0.96), rgba(106, 141, 152, 0.92));
}

.approach-visual-growth::before {
  left: 20px;
  right: 18px;
  bottom: 24px;
  height: 3px;
  background: rgba(255, 248, 238, 0.42);
}

.approach-visual-growth::after {
  left: 34px;
  bottom: 34px;
  width: 84px;
  height: 84px;
  border-left: 4px solid rgba(255, 248, 238, 0.92);
  border-top: 4px solid rgba(255, 248, 238, 0.92);
  transform: skew(-18deg) rotate(45deg);
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(247, 240, 230, 0.88));
}

.about-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.about-ideas {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 6px;
  display: grid;
  gap: 14px;
}

.about-idea-item {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 88, 34, 0.14);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.04);
  overflow: hidden;
}

.about-idea-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 1.48vw, 1.34rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--ink-strong);
  padding-right: 64px;
}

.about-idea-item summary::-webkit-details-marker {
  display: none;
}

.about-idea-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 88, 34, 0.08);
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.about-idea-item[open] summary::after {
  content: "−";
}

.about-idea-content {
  padding: 0 24px 18px;
}

.about-idea-fact,
.about-idea-source {
  color: rgba(61, 76, 91, 0.76);
}

.about-idea-fact {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.68;
}

.about-idea-source {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  transform: translateY(-2px);
  border-radius: 999px;
  border: 1px solid rgba(61, 76, 91, 0.12);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  white-space: nowrap;
}

.about-idea-value {
  margin: 0 0 10px;
  padding-left: 22px;
  position: relative;
  font-size: 0.88rem;
  color: #ef9b74 !important;
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
}

.about-idea-value::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef9b74 !important;
}


.recruitment-page {
  background:
    radial-gradient(circle at top right, rgba(226, 88, 34, 0.08), transparent 24%),
    radial-gradient(circle at top left, rgba(226, 88, 34, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

.recruitment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 440px);
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}

.recruitment-hero-copy {
  max-width: 860px;
}

.recruitment-hero-copy .legal-intro {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.recruitment-hero-copy .legal-intro:first-of-type {
  margin-top: 0;
}

.recruitment-projection {
  max-width: 52ch;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(226, 88, 34, 0.12);
}

.recruitment-projection .eyebrow {
  margin-bottom: 14px;
}

.recruitment-projection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.recruitment-projection-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 88, 34, 0.12);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.recruitment-hero-copy h1 {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 18px !important;
  font-size: clamp(3rem, 5.3vw, 4.4rem);
}

.recruitment-hero-tagline {
  margin: 0 0 84px 26px;
  font-size: 0.9rem;
  line-height: 1.45;
  font-style: italic;
  color: rgba(92, 92, 92, 0.92);
}

.recruitment-hero-panel {
  align-self: start;
  margin-top: 72px;
  padding: 22px;
  border: 1px solid rgba(226, 88, 34, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 240, 230, 0.9));
  border-radius: 28px;
  box-shadow: 0 22px 42px rgba(31, 41, 51, 0.07);
}

.recruitment-hero-visual {
  position: relative;
  min-height: 280px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.8), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(226, 88, 34, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(244, 235, 222, 0.94));
  border: 1px solid rgba(226, 88, 34, 0.12);
}

.recruitment-hero-visual-media {
  background: linear-gradient(135deg, rgba(46, 27, 18, 0.92), rgba(122, 60, 31, 0.82));
}

.recruitment-hero-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 15, 11, 0.22), rgba(23, 15, 11, 0.55)),
    radial-gradient(circle at 82% 22%, rgba(226, 88, 34, 0.22), transparent 24%);
}

.recruitment-hero-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.16);
}

.hero-orbit-large {
  width: 230px;
  height: 230px;
  right: -30px;
  top: -10px;
}

.hero-orbit-small {
  width: 130px;
  height: 130px;
  left: 20px;
  bottom: 20px;
}

.hero-core {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(226, 88, 34, 0.14);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.hero-core span,
.hero-core strong {
  display: block;
}

.hero-core span {
  margin-bottom: 6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(184, 68, 31, 0.82);
}

.hero-core strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink-strong);
}

.hero-core-projection,
.hero-core-media {
  inset: auto 20px 20px 20px;
  text-align: left;
}

.hero-core-media span {
  font-size: 0.82rem;
}

.hero-core-projection strong,
.hero-core-media strong {
  font-size: 2.5rem;
  line-height: 0.98;
  max-width: none;
  color: var(--accent) !important;
}

.hero-core-media p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 247, 238, 0.92);
}


.recruitment-profiles {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.recruitment-profiles span,
.recruitment-profiles a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(226, 88, 34, 0.12);
  text-align: center;
  line-height: 1.35;
}

.recruitment-profiles span {
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.recruitment-profiles a {
  text-decoration: none;
}

.recruitment-media-link {
  width: 100%;
}

.recruitment-media-intro {
  margin: 2px 0 0;
  text-align: center;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.recruitment-media-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.recruitment-media-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(226, 88, 34, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.recruitment-media-badge img {
  display: block;
  max-width: 100%;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.text-accent {
  color: var(--accent) !important;
}














.recruitment-heading {
  max-width: 860px;
}

.recruitment-intro {
  margin-top: 132px;
  margin-bottom: 40px;
}

.recruitment-motivations {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 46px;
}

.recruitment-motivations-copy {
  display: grid;
  grid-template-rows: auto 1fr;
}

.recruitment-motivations-heading {
  margin-bottom: 22px;
}

.recruitment-motivations-heading h2 {
  white-space: nowrap !important;
  max-width: none;
}

.recruitment-motivation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 18px;
}

.recruitment-motivation-card,
.recruitment-motivation-stat {
  border: 1px solid rgba(226, 88, 34, 0.12);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
}

.recruitment-motivation-card {
  min-height: 170px;
  height: 170px;
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
}

.recruitment-motivation-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.22);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.recruitment-motivation-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.recruitment-motivation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.recruitment-motivation-stats {
  display: grid;
  align-self: start;
  grid-template-rows: repeat(2, 170px);
  gap: 18px;
  margin-top: 112px !important;
}

.recruitment-motivation-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  height: 170px;
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(233, 121, 74, 0.92), rgba(184, 68, 31, 0.92));
  color: #fff8f1;
}

.recruitment-motivation-stat span {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 238, 0.88);
}

.recruitment-motivation-stat strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  line-height: 0.94;
  color: #ffffff;
}

.recruitment-motivation-stat p {
  margin: 0;
  color: rgba(255, 247, 238, 0.94);
  line-height: 1.6;
}

.recruitment-intro-card,
.recruitment-note {
  padding: 30px;
  border: 1px solid rgba(226, 88, 34, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 240, 230, 0.9));
  border-radius: 28px;
  box-shadow: 0 22px 42px rgba(31, 41, 51, 0.07);
}

.recruitment-intro-card h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.85rem, 2.9vw, 2.45rem) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  color: var(--ink-strong) !important;
}

.recruitment-intro-card p,
.recruitment-note p {
  line-height: 1.75;
  color: var(--muted);
}

.recruitment-points {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.recruitment-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
  color: var(--muted);
}

.recruitment-points li + li {
  margin-top: 6px;
}

.recruitment-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.recruitment-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 46px;
}



.recruitment-pathway-track {
  --pathway-line-y: 98px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.recruitment-pathway-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: var(--pathway-line-y);
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0.18), rgba(226, 88, 34, 0.58), rgba(226, 88, 34, 0.18));
}

.recruitment-pathway-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 18px 10px;
}

.recruitment-pathway-details {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.recruitment-pathway-details summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.recruitment-pathway-details summary::-webkit-details-marker {
  display: none;
}

.recruitment-pathway-toggle {
  display: inline-grid;
  justify-items: center;
  width: 100%;
}

.recruitment-pathway-expanded {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
}

.recruitment-pathway-meta {
  margin: 0;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-align: center;
}

.recruitment-pathway-copy {
  margin: 0;
  max-width: 34ch;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.recruitment-pathway-details:not([open]) .recruitment-pathway-expanded {
  display: none;
}

.recruitment-pathway-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.24);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.recruitment-pathway-icon::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 88, 34, 0.92);
  color: #fff8f2;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(184, 68, 31, 0.18);
}

.recruitment-pathway-details[open] .recruitment-pathway-icon::after {
  content: "−";
}

.recruitment-pathway-step h3 {
  display: block;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.15;
}

.recruitment-pathway-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 48px;
  height: 48px;
  margin-top: calc(var(--pathway-line-y) - 24px);
  color: var(--accent);
  font-size: 3rem;
  line-height: 1;
}

.recruitment-stats,
.recruitment-network-grid {
  display: grid;
  gap: 20px;
}

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

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

.recruitment-stat,
.recruitment-network-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 88, 34, 0.12);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
}

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

.recruitment-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--accent-dark);
}

.recruitment-stat p,
.recruitment-network-card p,
.recruitment-network-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.recruitment-network-card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.18;
}

.recruitment-network-note {
  max-width: 60ch;
  margin: 18px auto 28px;
  text-align: center;
}

.recruitment-card,
.recruitment-timeline article,
.recruitment-timeline-item,
.faq-item,
.recruitment-cta {
  border: 1px solid rgba(226, 88, 34, 0.12);
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.06);
}

.recruitment-card {
  padding: 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.recruitment-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0.82), rgba(226, 88, 34, 0.14), rgba(226, 88, 34, 0));
  opacity: 0.75;
}

.recruitment-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  position: relative;
}

.recruitment-icon::before,
.recruitment-icon::after {
  content: "";
  position: absolute;
}

.recruitment-icon-growth {
  background: linear-gradient(135deg, rgba(184, 68, 31, 0.94), rgba(232, 132, 84, 0.9));
}

.recruitment-icon-growth::before {
  left: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  border-left: 3px solid rgba(255, 248, 238, 0.94);
  border-top: 3px solid rgba(255, 248, 238, 0.94);
  transform: rotate(45deg);
}

.recruitment-icon-growth::after {
  right: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.9);
}

.recruitment-icon-support {
  background: linear-gradient(135deg, rgba(226, 88, 34, 0.92), rgba(243, 158, 116, 0.88));
}

.recruitment-icon-support::before {
  inset: 16px;
  border-radius: 999px 999px 18px 18px;
  border: 3px solid rgba(255, 248, 238, 0.94);
}

.recruitment-icon-support::after {
  left: 50%;
  top: 14px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.94);
}

.recruitment-icon-vision {
  background: linear-gradient(135deg, rgba(201, 93, 47, 0.94), rgba(244, 166, 128, 0.9));
}

.recruitment-icon-vision::before {
  inset: 16px;
  border-radius: 999px;
  border: 3px solid rgba(255, 248, 238, 0.94);
}

.recruitment-icon-vision::after {
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.94);
}

.recruitment-process {
  margin-top: 38px;
  margin-bottom: 46px;
}

.recruitment-process .section-heading {
  margin-bottom: 34px;
}

.recruitment-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.recruitment-timeline-item {
  padding: 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.recruitment-timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0.78), rgba(226, 88, 34, 0.12), rgba(226, 88, 34, 0));
}

.recruitment-timeline-item::after {
  content: attr(data-icon);
  position: absolute;
  right: 10px;
  bottom: 2px;
  font-size: 6.2rem;
  line-height: 1;
  opacity: 0.16;
  filter: grayscale(0.15);
  pointer-events: none;
}

.recruitment-timeline-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 52px 18px 24px;
  position: relative;
}

.recruitment-timeline-item summary::-webkit-details-marker {
  display: none;
}

.recruitment-timeline-item summary::after {
  content: "›";
  position: absolute;
  right: 22px;
  top: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-dark);
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.recruitment-timeline-item[open] summary::after {
  transform: rotate(-90deg);
}

.recruitment-timeline-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruitment-faq {
  margin-bottom: 40px;
}

.recruitment-note {
  margin-bottom: 40px;
}

.recruitment-note h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.9vw, 2.45rem);
}

.recruitment-note p + p {
  margin-top: 10px;
}

.recruitment-page .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.85rem, 2.9vw, 2.45rem);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 20px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 11px;
  line-height: 1.56;
  color: var(--muted);
}

.recruitment-timeline-item p {
  margin: 0;
  padding: 0 24px 22px;
  line-height: 1.58;
  color: var(--muted);
}

.recruitment-cta {
  padding: 34px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 240, 230, 0.9));
}

.recruitment-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.9vw, 2.45rem);
}

.recruitment-cta p {
  max-width: 62ch;
  margin: 0 auto 24px;
  line-height: 1.75;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  scroll-margin-top: 108px;
}

.contact-details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-note {
  margin-top: 20px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.96), rgba(255, 252, 246, 0.9));
  border: 1px solid rgba(226, 88, 34, 0.12);
  box-shadow: 0 12px 28px rgba(226, 88, 34, 0.06);
}

.contact-highlight {
  margin: 0;
  color: rgba(184, 68, 31, 0.9) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.22;
}

.contact-note-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-form {
  padding: 28px;
  border-radius: 28px;
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(61, 76, 91, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.faq-section {
  padding-top: 10px;
}

.faq-section .section-heading.narrow {
  max-width: 900px;
}

.faq-section .section-heading p:last-child {
  white-space: nowrap;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-panel {
  border: 1px solid rgba(61, 76, 91, 0.1);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-panel:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.08);
  border-color: rgba(226, 88, 34, 0.16);
}

.faq-panel summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 16px 54px 16px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.34;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::before,
.faq-panel summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-panel summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-panel[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.2);
}

.faq-panel-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-panel[open] .faq-panel-content {
  grid-template-rows: 1fr;
}

.faq-panel[open] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 240, 0.98));
}

.faq-panel-content p {
  min-height: 0;
  margin: 0;
  padding: 0 18px 16px;
  color: #67727e;
  line-height: 1.58;
}

.footer {
  padding: 28px clamp(20px, 4vw, 52px) 36px;
  color: #fff5ef;
  font-size: 0.95rem;
  background:
    linear-gradient(180deg, rgba(226, 88, 34, 0.96), rgba(184, 68, 31, 0.98));
}

.footer-top,
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-top {
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 245, 239, 0.2);
}

.footer-top a {
  color: #f4ebde;
}

.footer-columns {
  margin-bottom: 24px;
}

.footer-title {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.footer-columns p,
.footer-regulatory p,
.footer-copy {
  margin: 6px 0;
  color: rgba(255, 245, 239, 0.88);
}

.footer-regulatory {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 245, 239, 0.2);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-copy {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 245, 239, 0.2);
}

.legal-page {
  min-height: 100vh;
  padding: 32px clamp(20px, 4vw, 52px) 72px;
}

.legal-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 88, 34, 0.16);
  background: linear-gradient(180deg, rgba(226, 88, 34, 0.96), rgba(184, 68, 31, 0.98));
  color: #fff8f1;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(184, 68, 31, 0.18);
}

.legal-intro {
  max-width: 62ch;
  line-height: 1.75;
  color: var(--muted);
}

.legal-card,
.legal-block {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.legal-card {
  padding: 28px;
  border-radius: 28px;
  margin-bottom: 24px;
}

.legal-card p,
.legal-block p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.legal-block {
  padding: 28px;
  border-radius: 28px;
}

.legal-block h2 {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero-content,
  .grid-3,
  .recruitment-hero,
  .recruitment-benefits,
  .recruitment-timeline,
  .timeline,
  .about-panel,
  .contact,
  .legal-grid,
  .recruitment-stats,
  .recruitment-network-grid,
  .recruitment-motivations,
  .recruitment-motivation-grid,
  .recruitment-pathway-track {
    grid-template-columns: 1fr;
  }

  .nav {
    top: 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-stage {
    order: 2;
  }

  .hero-card-floating {
    width: min(360px, calc(100% - 32px));
  }

  .trust-band {
    gap: 14px;
  }

  .method-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-diagram {
    order: 2;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 138px 18px 20px;
  }

  .nav {
    gap: 16px;
    margin-bottom: 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 8px);
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11.5vw, 3.6rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .intro,
  .hero-note,
  .section-heading p,
  .about-panel p,
  .contact-copy p,
  .service-card p,
  .timeline p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-signature {
    margin-top: 18px;
    padding: 14px 16px 12px;
    font-size: 1.34rem;
    border-radius: 0 16px 16px 0;
  }

  .hero-signature::after {
    left: 14px;
    right: 14px;
    bottom: 8px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 320px;
  }

  .hero-card-floating {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 22px;
  }

  .hero-card-floating h2 {
    font-size: 1.85rem;
  }

  .faq-section .section-heading p:last-child {
    white-space: normal;
  }

  .hero-card,
  .service-card,
  .contact-form,
  .faq-panel,
  .timeline article,
  .about-panel,
  .legal-card,
  .legal-block,
  .recruitment-card,
  .recruitment-intro-card,
  .recruitment-hero-panel,
  .recruitment-cta {
    border-radius: 22px;
  }

  .service-card,
  .timeline article,
  .contact-form,
  .legal-card,
  .legal-block,
  .recruitment-card,
  .recruitment-intro-card,
  .recruitment-hero-panel,
  .recruitment-cta {
    padding: 22px;
  }

  .recruitment-hero-panel {
    margin-top: 0;
  }

  .recruitment-motivation-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .recruitment-motivation-stats {
    margin-top: 0 !important;
  }

  .recruitment-motivation-stat {
    min-height: auto;
    height: auto;
    padding: 24px 20px;
  }

  .recruitment-pathway-track::before,
  .recruitment-pathway-arrow {
    display: none;
  }

  .recruitment-pathway-step {
    padding: 12px 0;
  }

  .recruitment-pathway-icon {
    width: 118px;
    height: 118px;
    font-size: 2.5rem;
  }

  .footer,
  .trust-band {
    flex-direction: column;
  }

  .trust-band::before,
  .trust-band::after {
    display: none;
  }

  .trust-band p {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .method-step {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .method-step-editorial {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 0;
  }

  .method-step-editorial h3 {
    font-size: 1.8rem;
  }

  .method-step-editorial p {
    font-size: 0.98rem;
  }

  .method-diagram-ring {
    width: min(320px, 100%);
  }

  .method-center {
    inset: 94px;
    font-size: 1.45rem;
    padding: 18px;
  }

  .method-node {
    min-width: 82px;
    min-height: 56px;
    font-size: 0.84rem;
  }

  .method-contact-badge {
    left: 10px;
    width: 78px;
    min-height: 78px;
    font-size: 0.72rem;
  }

  .method-walker {
    width: 22px;
    height: 30px;
    top: 52px;
    right: 66px;
  }

  .contact-note {
    padding: 16px 16px 14px;
  }

  .contact-highlight {
    font-size: 1.12rem;
  }

  .contact-note-text {
    font-size: 0.94rem;
  }

  .footer-top,
  .footer-columns {
    flex-direction: column;
  }
}

.hero-content-premium {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-bottom: 18px;
  background:
    radial-gradient(circle at 14% 18%, rgba(226, 88, 34, 0.14), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(32, 56, 51, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(245, 239, 229, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -128px;
  height: 212px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 252, 246, 0.96);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.hero-copy h1 {
  max-width: fit-content;
  font-size: clamp(2.35rem, 4.15vw, 3.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-copy h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-note {
  max-width: 54ch;
  margin: 26px 0 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: rgba(226, 88, 34, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-prompt::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(226, 88, 34, 0.78);
  box-shadow: 0 0 0 5px rgba(226, 88, 34, 0.12);
}

.hero-signature {
  position: relative;
  display: inline-block;
  margin: 30px 0 0;
  padding: 16px 22px 14px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.82rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, rgba(255, 244, 236, 0.96), rgba(255, 252, 246, 0.92));
  border-left: 4px solid rgba(226, 88, 34, 0.78);
  border-radius: 0 20px 20px 0;
  box-shadow: 0 16px 34px rgba(226, 88, 34, 0.08);
}

.hero-signature::before {
  display: none;
}

.hero-signature::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 88, 34, 0.28), rgba(226, 88, 34, 0));
}

.hero-stage {
  position: relative;
  min-height: 532px;
  z-index: 1;
}

.hero-stage-visual {
  position: absolute;
  inset: 18px 0 0;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 20%, rgba(226, 88, 34, 0.07), transparent 18%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.99), rgba(248, 241, 232, 0.97));
  border: 1px solid rgba(226, 88, 34, 0.12);
  box-shadow: 0 22px 42px rgba(31, 41, 51, 0.06);
}

.hero-stage-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(240, 106, 47, 0.18), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(226, 88, 34, 0.12), transparent 22%),
    radial-gradient(circle at 52% 72%, rgba(184, 68, 31, 0.08), transparent 22%);
  animation: softDrift 8s ease-in-out infinite;
}

.hero-stage-building::before,
.hero-stage-building::after,
.window,
.window-a,
.window-b,
.window-c,
.hero-card-floating {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(378px, calc(100% - 24px));
  min-height: 452px;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 88, 34, 0.18);
}

.hero-card-floating h2 {
  color: var(--text);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
}

@media (max-width: 980px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-stage-visual {
    position: relative;
    min-height: 320px;
  }

  .hero-card-floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-stage-building {
    inset: 28px 28px 74px 28px;
  }
}

@media (max-width: 640px) {
  .hero-stage {
    min-height: auto;
    gap: 14px;
  }

  .hero-stage-visual {
    min-height: 286px;
  }

  .hero-stage-building {
    inset: 24px 22px 72px 22px;
  }

  .hero-card-floating {
    width: 100%;
    padding: 20px;
  }

  .hero-card-floating .check-list {
    margin-top: 14px;
  }

  .hero-card-floating .check-list li:last-child {
    display: none;
  }
}

.hero-stage-bubbles {
  padding: 20px;
}

.hero-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  color: rgba(184, 68, 31, 0.96);
  font-weight: 700;
  letter-spacing: 0.015em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 237, 0.84));
  border: 1px solid rgba(226, 88, 34, 0.16);
  box-shadow: 0 18px 36px rgba(226, 88, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-bubble-large {
  top: 24px;
  left: 22px;
  width: 138px;
  height: 138px;
  font-size: 1.16rem;
  animation: softFloat 7.5s ease-in-out infinite;
}

.hero-bubble-medium {
  top: 184px;
  left: 26px;
  width: 104px;
  height: 104px;
  font-size: 0.94rem;
  z-index: 1;
  animation: softDrift 8.5s ease-in-out infinite;
}

.hero-bubble-small {
  top: 178px;
  left: 142px;
  width: 74px;
  height: 74px;
  font-size: 0.78rem;
  animation: softFloat 6.8s ease-in-out infinite;
}

.hero-bubble-medium-alt {
  top: 18px;
  left: 176px;
  width: 96px;
  height: 96px;
  font-size: 0.8rem;
  animation: softDrift 9s ease-in-out infinite;
}

.hero-bubble-small-alt {
  left: 112px;
  bottom: 52px;
  width: 88px;
  height: 88px;
  font-size: 0.8rem;
  animation: softFloat 8.2s ease-in-out infinite;
}

.hero-bubble-line {
  left: 22px;
  bottom: 20px;
  width: 204px;
  min-height: 50px;
  padding: 0 16px;
  font-size: 0.84rem;
  animation: softDrift 9.4s ease-in-out infinite;
}

@media (max-width: 980px) {
  .hero-bubble-large {
    width: 146px;
    height: 146px;
    left: 24px;
    top: 24px;
    font-size: 1.08rem;
  }

  .hero-bubble-medium {
    width: 102px;
    height: 102px;
    left: 26px;
    top: 186px;
    z-index: 1;
  }

  .hero-bubble-small {
    left: 138px;
    top: 182px;
    width: 72px;
    height: 72px;
  }

  .hero-bubble-medium-alt {
    width: 90px;
    height: 90px;
    left: 166px;
    top: 20px;
  }

  .hero-bubble-small-alt {
    left: 106px;
    bottom: 42px;
    width: 84px;
    height: 84px;
  }

  .hero-bubble-line {
    left: 20px;
    bottom: 18px;
    width: 184px;
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .hero-stage-visual {
    border-radius: 28px;
  }

  .hero-bubble,
  .method-diagram-ring,
  .hero-stage-glow {
    animation: none;
  }

  .hero-bubble-large {
    width: 122px;
    height: 122px;
    top: 18px;
    left: 14px;
    font-size: 0.92rem;
  }

  .hero-bubble-medium,
  .hero-bubble-medium-alt {
    width: 82px;
    height: 82px;
    font-size: 0.76rem;
  }

  .hero-bubble-small,
  .hero-bubble-small-alt {
    width: 68px;
    height: 68px;
    font-size: 0.68rem;
  }

  .hero-bubble-line {
    width: 138px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero-bubble-medium {
    top: 142px;
    left: 16px;
  }

  .hero-bubble-small {
    top: 138px;
    left: 108px;
  }

  .hero-bubble-medium-alt {
    top: 20px;
    left: 102px;
  }

  .hero-bubble-small-alt {
    left: 70px;
    bottom: 24px;
  }

  .hero-bubble-line {
    left: 14px;
    bottom: 18px;
  }
}

.method-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.method-steps {
  display: grid;
  gap: 18px;
}

.method-steps-editorial {
  gap: 20px;
}

.method-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 88, 34, 0.24);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 18px 42px rgba(226, 88, 34, 0.06);
}

.method-step-editorial {
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.method-step h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.method-step-editorial h3 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.02;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.method-step p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.method-step-editorial p {
  font-size: 1.05rem;
}

.method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff7f2;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.method-step-editorial .method-badge {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.15;
  text-align: center;
  align-self: start;
  margin-top: 4px;
}

.method-diagram {
  display: grid;
  align-items: center;
}

.method-journey {
  position: relative;
  min-height: 438px;
  padding: 18px 8px 56px 36px;
}


.method-journey-card {
  position: absolute;
  width: min(270px, calc(100% - 92px));
  padding: 16px 18px 16px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(249, 242, 232, 0.92));
  border: 1px solid rgba(226, 88, 34, 0.14);
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.05);
}

.method-journey-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 32px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226, 88, 34, 0.9), rgba(255, 168, 122, 0.92));
  box-shadow: 0 0 0 6px rgba(226, 88, 34, 0.12);
}

.method-journey-step {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-journey-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.method-journey-card-contact {
  top: 18px;
  left: 88px;
}

.method-journey-card-one {
  top: 110px;
  left: 124px;
}

.method-journey-card-two {
  top: 202px;
  left: 96px;
}

.method-journey-card-three {
  top: 294px;
  left: 132px;
}

.method-journey-footer {
  position: absolute;
  left: 88px;
  right: 8px;
  bottom: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.method-journey-footer span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid rgba(226, 88, 34, 0.12);
  color: rgba(184, 68, 31, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


@media (max-width: 980px) {
  .method-showcase {
    grid-template-columns: 1fr;
  }

  .method-journey {
    min-height: 436px;
    padding-left: 30px;
  }


  .method-journey-card {
    width: min(100%, calc(100% - 84px));
  }

  .method-journey {
    min-height: 404px;
  }

  .method-journey-card-contact {
    left: 74px;
  }

  .method-journey-card-one {
    left: 102px;
  }

  .method-journey-card-two {
    left: 82px;
  }

  .method-journey-card-three {
    left: 108px;
  }
}

@media (max-width: 640px) {
  .method-step {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .method-step-editorial {
    grid-template-columns: 62px 1fr;
    padding: 0;
  }

  .method-step-editorial h3 {
    font-size: 1.55rem;
  }

  .method-journey {
    min-height: auto;
    padding: 0 0 0 26px;
    display: grid;
    gap: 14px;
  }


  .method-journey-card {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    padding: 14px 14px 14px 16px;
  }

  .method-journey-card::before {
    left: -20px;
    top: 26px;
    width: 14px;
    height: 14px;
  }

  .method-journey-card h3 {
    font-size: 1.1rem;
  }

  .method-journey-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-left: 12px;
  }
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(226, 88, 34, 0.32);
  box-shadow: 0 0 0 4px rgba(226, 88, 34, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.hero-card-floating {
  backdrop-filter: blur(18px);
  animation: heroFadeUp 880ms ease 220ms both;
}

.section-heading p:last-child,
.about-panel p:last-child,
.contact-copy p:last-child {
  max-width: 62ch;
}

@media (max-width: 640px) {
  .nav {
    border-radius: 20px;
  }
}

.recruitment-hero-copy h1 + .legal-intro {
  margin-top: 64px !important;
}

.recruitment-intro .recruitment-intro-card h3,
.recruitment-intro-card > h3 {
  font-size: clamp(1.85rem, 2.9vw, 2.45rem) !important;
}

.recruitment-card h3,
.recruitment-timeline article h3 {
  font-size: 1.28rem;
  line-height: 1.18;
}


@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding: 18px 16px 28px;
  }

  .nav {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 0 0 18px;
    padding: 12px;
    gap: 12px;
    border-radius: 18px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .brand-text {
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .hero-content-premium {
    gap: 20px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy h1 .hero-title-line {
    white-space: normal;
  }

  .hero-signature {
    margin-top: 14px;
    padding: 12px 14px 10px;
    font-size: 1.18rem;
  }

  .intro,
  .hero-note,
  .hero-prompt,
  .section-heading p,
  .about-panel p,
  .contact-copy p,
  .service-card p,
  .timeline p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-prompt {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: auto;
    gap: 14px;
  }

  .hero-stage-visual {
    min-height: 240px;
    border-radius: 28px;
  }

  .hero-card-floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    padding: 18px;
  }

  .hero-card-floating h2 {
    font-size: 1.6rem;
    line-height: 1.02;
  }

  .hero-card-floating .check-list {
    margin-top: 12px;
  }

  .services-heading h2,
  .method-heading h2,
  .approach-heading h2,
  .contact-copy h2,
  .faq-section .section-heading h2 {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(1.78rem, 8vw, 2.3rem);
  }

  .services-prompts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-prompt {
    padding: 10px 12px;
  }

  .services-prompt p {
    white-space: normal;
  }

  .section-heading p:last-child,
  .about-panel p:last-child,
  .contact-copy p:last-child {
    max-width: 100%;
  }
}


@media (max-width: 640px) {
  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .hero-copy .eyebrow,
  .hero-copy .intro,
  .hero-copy .hero-note,
  .hero-copy .hero-prompt {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(1.86rem, 8.4vw, 2.4rem);
    line-height: 1.02;
  }

  .hero-stage-visual {
    min-height: 270px;
  }

  .hero-bubble-large {
    top: 20px;
    left: 16px;
    width: 126px;
    height: 126px;
    font-size: 0.94rem;
  }

  .hero-bubble-medium {
    top: 170px;
    left: 16px;
    width: 84px;
    height: 84px;
    font-size: 0.75rem;
  }

  .hero-bubble-small {
    top: 162px;
    left: 116px;
    width: 70px;
    height: 70px;
    font-size: 0.67rem;
  }

  .hero-bubble-medium-alt {
    top: 28px;
    left: 162px;
    width: 92px;
    height: 92px;
    font-size: 0.76rem;
  }

  .hero-bubble-small-alt {
    left: 190px;
    bottom: 26px;
    width: 72px;
    height: 72px;
    font-size: 0.67rem;
  }

  .trust-band {
    position: relative;
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .trust-band::before {
    display: block;
    left: 50%;
    right: auto;
    top: 14px;
    bottom: 14px;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(226, 88, 34, 0), rgba(226, 88, 34, 0.34), rgba(226, 88, 34, 0));
  }

  .trust-band p {
    width: 100%;
    max-width: 100%;
    padding: 11px 16px;
    font-size: 0.9rem;
    text-align: center;
  }

  .services {
    scroll-margin-top: 32px;
  }

  .services-heading {
    margin-bottom: 22px;
  }

  .services-prompts {
    gap: 14px;
    margin-top: 22px;
  }

  .services-prompt {
    padding: 14px 14px 14px 16px;
    border-left-width: 3px;
    border-radius: 0 16px 16px 0;
  }

  .services-prompt h3 {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .services-prompt p {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.52;
  }
}


@media (max-width: 640px) {
  .footer {
    padding: 24px 16px 26px;
    text-align: center;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .footer-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 245, 239, 0.1);
    border: 1px solid rgba(255, 245, 239, 0.14);
    color: #fff7f1;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-columns > div {
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 245, 239, 0.08);
    border: 1px solid rgba(255, 245, 239, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .footer-title {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .footer-columns p,
  .footer-regulatory p,
  .footer-copy {
    margin: 4px 0;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .footer-regulatory {
    padding: 14px 0;
    font-size: 0.76rem;
    line-height: 1.6;
  }

  .footer-copy {
    padding-top: 14px;
    text-align: center;
    font-size: 0.8rem;
  }
}


@media (max-width: 640px) {
  .recruitment-page {
    overflow-x: hidden;
  }

  .legal-page.recruitment-page {
    padding: 18px 16px 44px;
  }

  .recruitment-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .recruitment-hero-copy,
  .recruitment-hero-panel,
  .recruitment-motivations,
  .recruitment-intro,
  .recruitment-pathway,
  .recruitment-highlights,
  .recruitment-process,
  .recruitment-network,
  .recruitment-note,
  .recruitment-faq {
    min-width: 0;
    max-width: 100%;
  }

  .recruitment-hero-copy h1 {
    white-space: normal;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.02;
    margin-bottom: 12px !important;
  }

  .recruitment-hero-tagline {
    margin: 0 0 24px;
    padding-left: 10px;
    font-size: 0.82rem;
  }

  .recruitment-hero-copy .legal-intro,
  .recruitment-note p,
  .recruitment-network-note {
    max-width: 100%;
  }

  .recruitment-page .section-heading,
  .recruitment-heading,
  .recruitment-motivations-heading {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .recruitment-page .section-heading h2,
  .recruitment-note h2,
  .recruitment-intro-card > h3,
  .recruitment-intro .recruitment-intro-card h3,
  .recruitment-motivations-heading h2 {
    white-space: normal;
    font-size: clamp(1.65rem, 8vw, 2.1rem) !important;
    line-height: 1.08;
  }

  .recruitment-hero-panel {
    width: 100%;
    margin-top: 0;
    padding: 16px;
    border-radius: 22px;
  }

  .recruitment-hero-visual {
    min-height: 230px;
    border-radius: 20px;
  }

  .hero-core-media {
    inset: auto 14px 14px 14px;
  }

  .hero-core-media strong {
    font-size: 1.9rem;
  }

  .hero-core-media p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .recruitment-profiles {
    gap: 10px;
    margin-top: 14px;
  }

  .recruitment-profiles span,
  .recruitment-profiles a {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .recruitment-media-intro {
    font-size: 1rem;
  }

  .recruitment-media-badges {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .recruitment-media-badge {
    min-height: 54px;
    padding: 8px 10px;
  }

  .recruitment-media-badge img {
    max-height: 24px;
  }

  .recruitment-motivations {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .recruitment-motivation-grid,
  .recruitment-stats,
  .recruitment-network-grid,
  .recruitment-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recruitment-motivation-card,
  .recruitment-motivation-stat,
  .recruitment-stat,
  .recruitment-network-card,
  .recruitment-intro-card,
  .recruitment-note,
  .faq-item {
    min-width: 0;
  }

  .recruitment-motivation-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .recruitment-motivation-card h3 {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .recruitment-motivation-card p,
  .recruitment-motivation-stat p,
  .recruitment-stat p,
  .recruitment-network-card p,
  .faq-item p {
    font-size: 0.92rem;
    line-height: 1.52;
    white-space: normal;
  }

  .recruitment-motivation-stat strong,
  .recruitment-stat strong {
    font-size: 2.2rem;
  }

  .recruitment-intro {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .recruitment-points {
    padding-left: 18px;
  }

  .recruitment-pathway {
    overflow: hidden;
  }

  .recruitment-pathway-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruitment-pathway-step {
    width: 100%;
    min-width: 0;
    padding: 10px 0;
  }

  .recruitment-pathway-details,
  .recruitment-pathway-toggle,
  .recruitment-pathway-expanded {
    width: 100%;
    min-width: 0;
  }

  .recruitment-pathway-details summary {
    gap: 10px;
  }

  .recruitment-pathway-step h3,
  .recruitment-pathway-meta,
  .recruitment-pathway-copy {
    max-width: 100%;
    white-space: normal;
  }

  .recruitment-pathway-copy {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .recruitment-pathway-icon {
    width: 110px;
    height: 110px;
    font-size: 2.35rem;
  }

  .recruitment-process,
  .recruitment-highlights,
  .recruitment-network,
  .recruitment-note,
  .recruitment-faq {
    margin-bottom: 28px;
  }

  .faq-item summary {
    padding: 12px 42px 12px 16px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
}


/* Global polish across desktop, tablet, and phone */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.hero-signature,
.footer-title,
.recruitment-page .section-heading h2,
.recruitment-intro-card > h3,
.recruitment-intro .recruitment-intro-card h3 {
  text-wrap: balance;
}

p,
li,
.faq-panel-content p,
.recruitment-pathway-copy,
.recruitment-note p,
.recruitment-network-card p,
.recruitment-stat p,
.recruitment-motivation-card p,
.recruitment-motivation-stat p {
  text-wrap: pretty;
}

.hero-copy,
.section-heading,
.contact-copy,
.recruitment-hero-copy,
.recruitment-heading,
.recruitment-note {
  min-width: 0;
}

.button,
.nav-links a,
.footer-top a,
.faq-item summary,
.faq-panel summary,
.recruitment-timeline-item summary,
.about-idea-item summary {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-links a:hover,
.footer-top a:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-links a:focus-visible,
.footer-top a:focus-visible,
.faq-item summary:focus-visible,
.faq-panel summary:focus-visible,
.recruitment-timeline-item summary:focus-visible,
.about-idea-item summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.service-card,
.faq-panel,
.about-idea-item,
.recruitment-stat,
.recruitment-network-card,
.recruitment-motivation-card,
.recruitment-motivation-stat,
.recruitment-intro-card,
.recruitment-note,
.recruitment-hero-panel {
  min-width: 0;
}

.services-prompts,
.recruitment-media-badges,
.recruitment-motivation-grid,
.recruitment-stats,
.recruitment-network-grid,
.recruitment-timeline {
  align-items: stretch;
}

.recruitment-media-badge img {
  filter: saturate(0.92) contrast(1.02);
}

@media (max-width: 980px) {
  .section {
    padding-bottom: 68px;
  }

  .hero-content-premium,
  .recruitment-hero,
  .about-panel,
  .contact,
  .method-showcase,
  .recruitment-motivations {
    gap: 22px;
  }

  .services-prompts,
  .recruitment-motivation-grid,
  .recruitment-stats,
  .recruitment-network-grid,
  .recruitment-timeline {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-bottom: 56px;
  }

  .button,
  .nav-links a,
  .footer-top a,
  .faq-item summary,
  .faq-panel summary,
  .recruitment-timeline-item summary {
    min-height: 44px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .contact-copy,
  .services-heading,
  .method-heading,
  .approach-heading,
  .faq-section .section-heading,
  .recruitment-page .section-heading {
    text-align: left;
  }

  .contact-copy h2,
  .services-heading h2,
  .method-heading h2,
  .approach-heading h2,
  .faq-section .section-heading h2,
  .recruitment-page .section-heading h2 {
    text-wrap: balance;
  }

  .faq-panel summary,
  .faq-item summary {
    line-height: 1.38;
  }

  .recruitment-media-badges {
    gap: 10px;
  }
}


@media (max-width: 640px) {
  .recruitment-motivations-heading h2 {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(1.5rem, 7.4vw, 2rem) !important;
    line-height: 1.08;
  }
}


@media (max-width: 1100px) {
  .services-prompts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .services-prompt {
    padding: 10px 14px;
  }

  .services-prompt p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.42;
  }
}

@media (min-width: 981px) {
  .approach-heading p:last-child {
    max-width: none;
    white-space: nowrap;
  }
}


@media (min-width: 641px) and (max-width: 980px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 64px;
  }

  .nav {
    width: calc(100% - 24px);
    gap: 14px;
    padding: 12px 14px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .nav-links a {
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 5.6vw, 3.25rem);
    line-height: 1;
  }

  .hero-copy h1 .hero-title-line {
    white-space: normal;
  }

  .trust-band {
    gap: 12px;
  }

  .trust-band p {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 0;
    text-align: center;
  }

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

  .services-prompt:last-child {
    grid-column: 1 / -1;
  }

  .services-prompt h3,
  .services-prompt p {
    white-space: normal;
  }

  .about-panel,
  .contact,
  .method-showcase,
  .hero-content-premium {
    gap: 24px;
  }

  .recruitment-page .section-heading h2,
  .recruitment-intro-card > h3,
  .recruitment-intro .recruitment-intro-card h3,
  .recruitment-note h2,
  .recruitment-motivations-heading h2 {
    white-space: normal;
    font-size: clamp(1.9rem, 4.2vw, 2.35rem) !important;
    line-height: 1.08;
  }

  .recruitment-hero-copy h1 {
    white-space: normal;
    font-size: clamp(2.4rem, 5.2vw, 3.35rem);
    line-height: 1.02;
  }

  .recruitment-hero-tagline {
    margin: 0 0 34px 18px;
  }

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

  .recruitment-media-intro {
    grid-column: 1 / -1;
  }

  .recruitment-media-badges {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .recruitment-motivation-grid,
  .recruitment-stats,
  .recruitment-network-grid,
  .recruitment-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .recruitment-network-grid article:last-child,
  .recruitment-timeline details:last-child {
    grid-column: 1 / -1;
  }

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

  .recruitment-pathway-track::before,
  .recruitment-pathway-arrow {
    display: none;
  }

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

  .footer-columns {
    gap: 24px;
  }
}


@media (max-width: 640px) {
  .hero-stage-bubbles .hero-bubble {
    display: none;
  }

  .hero-stage-visual {
    min-height: 180px;
  }
}


@media (max-width: 640px) {
  .about-idea-value {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding-left: 18px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .about-idea-value::before {
    top: 1px;
  }
}


@media (max-width: 640px) {
  .contact-highlight {
    font-size: 1.22rem;
    line-height: 1.32;
  }
}


@media (max-width: 640px) {
  .hero-stage-glow {
    display: none;
  }

  .hero-stage-visual {
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.99), rgba(248, 241, 232, 0.97));
  }

  .services-prompts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .services-prompt {
    padding: 10px 8px;
    border-left-width: 2px;
    border-radius: 0 12px 12px 0;
  }

  .services-prompt h3 {
    font-size: 0.79rem;
    line-height: 1.28;
  }

  .services-prompt p {
    margin-top: 4px;
    font-size: 0.73rem;
    line-height: 1.32;
  }
}


@media (max-width: 640px) {
  .hero-stage-visual {
    display: none;
  }

  .hero-stage {
    display: block;
  }

  .hero-card-floating {
    margin-top: 0;
  }

  .services-prompts {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    margin-right: -2px;
  }

  .services-prompts::-webkit-scrollbar {
    display: none;
  }

  .services-prompt {
    flex: 0 0 76vw;
    min-width: 76vw;
    scroll-snap-align: start;
    padding: 12px 12px 12px 14px;
  }

  .services-prompt h3 {
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .services-prompt p {
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .contact-highlight {
    font-size: 1.34rem !important;
    line-height: 1.28;
    font-weight: 700;
  }
}


.method-diagram-timeline {
  align-self: stretch;
}

.method-timeline-premium {
  position: relative;
  height: 100%;
  padding: 10px 0 0 6px;
}

.method-timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 34px;
}

.method-timeline-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(226, 88, 34, 0.08), rgba(226, 88, 34, 0.52), rgba(226, 88, 34, 0.12));
}

.method-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.method-timeline-marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(247, 237, 225, 0.96));
  border: 1px solid rgba(226, 88, 34, 0.2);
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.05), 0 0 0 7px rgba(226, 88, 34, 0.06);
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.method-timeline-card {
  min-width: 0;
  padding: 18px 20px 17px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(248, 241, 232, 0.92));
  border: 1px solid rgba(226, 88, 34, 0.14);
  box-shadow: 0 16px 32px rgba(31, 41, 51, 0.05);
}

.method-timeline-kicker {
  margin: 0 0 8px;
  color: rgba(184, 68, 31, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-timeline-card h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.method-timeline-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.method-timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-left: 90px;
}

.method-timeline-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid rgba(226, 88, 34, 0.12);
  color: rgba(184, 68, 31, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .method-timeline-premium {
    padding-top: 4px;
  }

  .method-timeline-list {
    padding-left: 28px;
  }

  .method-timeline-list::before {
    left: 18px;
  }

  .method-timeline-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .method-timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.06rem;
  }

  .method-timeline-card {
    padding: 16px 18px;
  }

  .method-timeline-tags {
    padding-left: 78px;
  }
}

@media (max-width: 640px) {
  .method-timeline-premium {
    padding-top: 0;
  }

  .method-timeline-list {
    gap: 14px;
    padding-left: 24px;
  }

  .method-timeline-list::before {
    left: 15px;
    top: 10px;
    bottom: 14px;
  }

  .method-timeline-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .method-timeline-marker {
    width: 34px;
    height: 34px;
    font-size: 0.96rem;
    box-shadow: 0 10px 20px rgba(31, 41, 51, 0.04), 0 0 0 5px rgba(226, 88, 34, 0.06);
  }

  .method-timeline-card {
    padding: 14px 15px 13px;
    border-radius: 18px;
  }

  .method-timeline-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .method-timeline-card h3 {
    font-size: 1.02rem;
  }

  .method-timeline-card p:last-child {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .method-timeline-tags {
    margin-top: 16px;
    padding-left: 0;
  }
}


.method-diagram-orbit {
  align-self: stretch;
}

.method-orbit-premium {
  display: grid;
  gap: 22px;
  height: 100%;
}

.method-orbit-stage {
  position: relative;
  min-height: 520px;
  padding: 20px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 88, 34, 0.06), transparent 18%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(247, 240, 230, 0.92));
  border: 1px solid rgba(226, 88, 34, 0.12);
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.06);
}

.method-orbit-stage::before,
.method-orbit-stage::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.method-orbit-stage::before {
  width: min(360px, 74%);
  aspect-ratio: 1;
  border: 1px solid rgba(226, 88, 34, 0.14);
  box-shadow: inset 0 0 0 10px rgba(226, 88, 34, 0.03);
}

.method-orbit-stage::after {
  width: min(456px, 92%);
  aspect-ratio: 1;
  border: 1px dashed rgba(226, 88, 34, 0.16);
  opacity: 0.75;
}

.method-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 220px;
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), rgba(255, 250, 244, 0.94) 45%, rgba(247, 239, 228, 0.92) 100%);
  border: 1px solid rgba(226, 88, 34, 0.16);
  box-shadow: 0 24px 44px rgba(31, 41, 51, 0.08), 0 0 0 12px rgba(226, 88, 34, 0.05);
}

.method-orbit-core-kicker {
  color: rgba(184, 68, 31, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.method-orbit-core strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  line-height: 0.94;
  color: var(--ink-strong);
  text-wrap: balance;
}

.method-orbit-node {
  position: absolute;
  z-index: 3;
  width: min(220px, calc(100% - 32px));
  padding: 16px 18px 15px;
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid rgba(226, 88, 34, 0.14);
  box-shadow: 0 16px 32px rgba(31, 41, 51, 0.05);
  backdrop-filter: blur(10px);
}

.method-orbit-node::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226, 88, 34, 0.9), rgba(255, 168, 122, 0.92));
  box-shadow: 0 0 0 5px rgba(226, 88, 34, 0.1);
}

.method-orbit-node-index {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(184, 68, 31, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-orbit-node h3 {
  margin: 0 0 6px;
  font-size: 1.14rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.method-orbit-node p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.method-orbit-node-zero {
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.method-orbit-node-zero::before {
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}

.method-orbit-node-one {
  left: 10px;
  top: 188px;
}

.method-orbit-node-one::before {
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.method-orbit-node-two {
  right: 10px;
  top: 188px;
  text-align: right;
}

.method-orbit-node-two::before {
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.method-orbit-node-three {
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  text-align: center;
}

.method-orbit-node-three::before {
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
}

.method-orbit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.method-orbit-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid rgba(226, 88, 34, 0.12);
  color: rgba(184, 68, 31, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .method-orbit-stage {
    min-height: 560px;
  }

  .method-orbit-core {
    width: 200px;
    min-height: 200px;
  }

  .method-orbit-core strong {
    font-size: 1.9rem;
  }

  .method-orbit-node {
    width: min(196px, calc(100% - 32px));
  }

  .method-orbit-node-one {
    left: 0;
  }

  .method-orbit-node-two {
    right: 0;
  }
}

@media (max-width: 980px) {
  .method-orbit-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 20px 18px;
  }

  .method-orbit-stage::before,
  .method-orbit-stage::after {
    inset: 24px 24px auto auto;
    transform: none;
    width: 180px;
    aspect-ratio: 1;
  }

  .method-orbit-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .method-orbit-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    text-align: left;
  }

  .method-orbit-node::before {
    left: -18px;
    top: 24px;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .method-orbit-node-zero,
  .method-orbit-node-one,
  .method-orbit-node-two,
  .method-orbit-node-three {
    text-align: left;
  }

  .method-orbit-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .method-orbit-stage {
    padding: 16px 14px;
    border-radius: 24px;
  }

  .method-orbit-stage::before,
  .method-orbit-stage::after {
    display: none;
  }

  .method-orbit-core {
    padding: 20px 18px;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(31, 41, 51, 0.06), 0 0 0 8px rgba(226, 88, 34, 0.04);
  }

  .method-orbit-core strong {
    font-size: 1.64rem;
  }

  .method-orbit-node {
    padding: 14px 14px 13px 16px;
    border-radius: 18px;
  }

  .method-orbit-node::before {
    left: -14px;
    top: 22px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(226, 88, 34, 0.1);
  }

  .method-orbit-node-index {
    font-size: 0.64rem;
  }

  .method-orbit-node h3 {
    font-size: 1rem;
  }

  .method-orbit-node p:last-child {
    font-size: 0.9rem;
    line-height: 1.44;
  }

  .method-orbit-tags {
    gap: 8px;
  }
}


.method-orbit-minimal {
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: center;
}

.method-orbit-ring {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
}

.method-orbit-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  z-index: 0;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cmarker id='arrow' markerWidth='6' markerHeight='6' refX='5.1' refY='3' orient='auto' markerUnits='strokeWidth'%3E%3Cpath d='M 0 0 L 6 3 L 0 6' fill='none' stroke='rgba(226,88,34,0.9)' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/marker%3E%3C/defs%3E%3Cpath d='M 50 14 A 36 36 0 1 1 14 50' fill='none' stroke='rgba(201,111,79,0.24)' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M 69.5 18.8 A 36 36 0 0 1 79.1 28.9' fill='none' stroke='rgba(226,88,34,0.9)' stroke-width='1.35' stroke-linecap='round' marker-end='url(%23arrow)'/%3E%3Cpath d='M 62.3 83.8 A 36 36 0 0 1 46.2 85.8' fill='none' stroke='rgba(226,88,34,0.9)' stroke-width='1.35' stroke-linecap='round' marker-end='url(%23arrow)'/%3E%3C/svg%3E");
}

.method-orbit-ring::after {
  content: none;
}

.method-orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0;
  z-index: 2;
  color: var(--ink-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}

.method-orbit-stop {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
  z-index: 2;
}

.method-orbit-stop-dot {
  display: none;
}

.method-orbit-stop-label {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 3px;
  padding: 8px 12px;
  border-radius: 18px;
}

.method-orbit-stop-label::before {
  content: "";
  position: absolute;
  inset: -7px -12px;
  z-index: -1;
  border-radius: 24px;
  background: var(--background);
}

.method-orbit-stop-kicker {
  color: rgba(184, 68, 31, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-orbit-stop-label strong {
  display: block;
  color: var(--ink-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

.method-orbit-stop-top {
  left: 50%;
  top: 3%;
  transform: translate(-50%, 0);
}

.method-orbit-stop-right {
  right: -5.5%;
  top: 46%;
  transform: translate(0, -50%);
}

.method-orbit-stop-bottom {
  left: 50%;
  bottom: 3%;
  transform: translate(-50%, 0);
}

.method-orbit-stop-left {
  left: -8.5%;
  top: 46%;
  transform: translate(0, -50%);
}

.method-orbit-stop-top .method-orbit-stop-label,
.method-orbit-stop-bottom .method-orbit-stop-label {
  padding-inline: 18px;
}

.method-orbit-stop-right .method-orbit-stop-label,
.method-orbit-stop-left .method-orbit-stop-label {
  margin-top: 24px;
  padding: 10px 14px 8px;
}

.method-orbit-stop-right .method-orbit-stop-kicker,
.method-orbit-stop-right .method-orbit-stop-label strong {
  text-align: center;
}

.method-orbit-stop-left .method-orbit-stop-kicker,
.method-orbit-stop-left .method-orbit-stop-label strong {
  text-align: center;
}

.method-orbit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.method-orbit-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.68);
  border: 1px solid rgba(201, 111, 79, 0.1);
  color: rgba(156, 89, 64, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .method-orbit-ring {
    width: min(100%, 360px);
  }

  .method-orbit-center {
    font-size: 1.22rem;
  }

  .method-orbit-stop-label strong {
    font-size: 1.16rem;
  }
}

@media (max-width: 980px) {
  .method-orbit-minimal {
    gap: 16px;
  }

  .method-orbit-ring {
    width: min(100%, 340px);
  }
}

@media (max-width: 640px) {
  .method-orbit-ring {
    width: 100%;
    max-width: 308px;
  }

  .method-orbit-ring::before {
    inset: 16%;
  }

  .method-orbit-center {
    font-size: 1rem;
  }

  .method-orbit-stop {
    gap: 7px;
  }

  .method-orbit-stop-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(201, 111, 79, 0.08);
  }

  .method-orbit-stop-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .method-orbit-stop-label strong {
    font-size: 1.02rem;
    max-width: 5.8rem;
  }

  .method-orbit-stop-label {
    padding: 7px 9px;
    border-radius: 14px;
  }

  .method-orbit-stop-label::before {
    inset: -5px -8px;
    border-radius: 18px;
  }

  .method-orbit-stop-right .method-orbit-stop-label,
  .method-orbit-stop-left .method-orbit-stop-label {
    margin-top: 20px;
    padding: 9px 10px 7px;
  }

  .method-orbit-stop-top {
    top: 6%;
  }

  .method-orbit-stop-right {
    right: -3%;
    top: 45%;
  }

  .method-orbit-stop-bottom {
    bottom: 6%;
  }

  .method-orbit-stop-left {
    left: -5%;
    top: 45%;
  }

  .method-orbit-tags {
    gap: 8px;
  }
}
