:root {
  --teal: #0f6e56;
  --teal-dark: #085041;
  --navy: #1a2e4a;
  --gold: #ba7517;
  --coral: #993c1d;
  --off-white: #f8f7f4;
  --white: #ffffff;
  --text-primary: #2c2c2a;
  --text-secondary: #888780;
  --border: #d3d1c7;
  --shadow-soft: 0 1px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 48px rgba(26, 46, 74, 0.08);
  --radius-tight: 2px;
  --radius: 4px;
  --nav-height: 72px;
  --container: 1280px;
  --container-copy: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--off-white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
}

::selection {
  background: rgba(15, 110, 86, 0.2);
  color: var(--navy);
}

*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--container-copy);
}

.container-copy {
  max-width: 680px;
}

.container-form {
  max-width: 560px;
}

.section-anchor {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.section {
  padding: 80px 0;
}

.section-white {
  background: var(--white);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--nav-height);
  background: rgba(26, 46, 74, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.site-nav.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-button {
  flex-shrink: 0;
  padding: 0;
}

.logo {
  height: 60px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link,
.mobile-nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: #ffffff;
}

.lang-switch,
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-separator {
  color: rgba(255, 255, 255, 0.28);
}

.lang-button {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.lang-button.is-active {
  color: #ffffff;
  font-weight: 500;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
}

.menu-icon {
  font-size: 24px;
  line-height: 1;
}

.menu-close {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-close {
  display: inline;
}

.mobile-menu {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideDown 0.2s ease;
}

.mobile-menu-inner {
  display: grid;
  gap: 12px;
  padding: 16px 0 20px;
}

.mobile-nav-link {
  text-align: left;
  padding: 10px 0;
}

.mobile-lang-switch {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-layout {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 72px 0 120px;
}

.hero h1,
.section-title,
.subsection-title,
.pivot-heading {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.hero-subheadline,
.section-intro,
.pivot-body,
.body-paragraph,
.body-stack p {
  margin: 0;
  line-height: 1.75;
}

.hero-subheadline {
  margin-top: 24px;
  max-width: 520px;
  font-size: 18px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button-primary,
.button-secondary,
.pivot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.button-primary {
  min-height: 48px;
  padding: 14px 32px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  min-height: 48px;
  padding: 14px 0;
  color: var(--teal);
  font-size: 15px;
  font-weight: 500;
}

.button-secondary:hover,
.pivot-link:hover,
.inline-link:hover {
  text-decoration: underline;
}

.button-block {
  width: 100%;
}

.button-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button-arrow {
  transition: transform 0.2s ease;
}

.button-primary:hover .button-arrow,
.button-secondary:hover .button-arrow,
.pivot-link:hover .button-arrow {
  transform: translateX(4px);
}

.hero-art {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(45vw, 560px);
  height: 60%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.08;
}

.hero-art-svg {
  width: 100%;
  height: 100%;
}

.credibility-bar {
  position: absolute;
  inset: auto 0 0;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.credibility-copy {
  margin: 0;
  padding: 16px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-title-medium {
  font-size: clamp(2rem, 3.5vw, 2.25rem);
}

.section-intro {
  max-width: 780px;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 64px;
}

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

.who-tile {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-tight);
  background: var(--white);
  text-align: left;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.who-tile:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.tile-accent-teal {
  border-left: 3px solid var(--teal);
}

.tile-accent-navy {
  border-left: 3px solid var(--navy);
}

.tile-accent-coral {
  border-left: 3px solid var(--coral);
}

.tile-accent-gold {
  border-left: 3px solid var(--gold);
}

.who-title {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--navy);
}

.who-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
}

.tile-arrow {
  display: inline-flex;
  margin-top: 16px;
  color: var(--border);
  transition: transform 0.2s ease, color 0.2s ease;
}

.who-tile:hover .tile-arrow {
  color: var(--teal);
  transform: translateX(4px);
}

.body-stack {
  display: grid;
  gap: 24px;
}

.body-stack-tight {
  gap: 16px;
}

.body-paragraph,
.body-stack p {
  font-size: 17px;
  color: var(--text-primary);
}

.process-band {
  background: var(--navy);
  padding: 60px 0;
}

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

.process-card {
  padding: 0 32px;
}

.process-card:first-child {
  padding-left: 0;
}

.process-card:last-child {
  padding-right: 0;
}

.process-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-name {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.process-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.services-list {
  display: grid;
}

.service-panel {
  padding: 48px 0 64px;
}

.service-panel.is-muted {
  background: var(--off-white);
}

.service-panel.is-white {
  background: var(--white);
}

.service-accent-teal {
  border-top: 2px solid var(--teal);
}

.service-accent-navy {
  border-top: 2px solid var(--navy);
}

.service-accent-coral {
  border-top: 2px solid var(--coral);
}

.service-accent-gold {
  border-top: 2px solid var(--gold);
}

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

.service-title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.service-who-label {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-who,
.service-what {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.service-who {
  color: var(--text-secondary);
}

.service-what {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.model-tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-tight);
  background: var(--off-white);
  color: var(--text-secondary);
  font-size: 12px;
}

.pivot-card {
  padding: 64px 0 0;
  text-align: center;
}

.pivot-heading {
  font-size: 24px;
  margin-bottom: 16px;
}

.pivot-body {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 17px;
}

.pivot-link {
  color: var(--gold);
  font-weight: 500;
}

.about-stack {
  display: grid;
  gap: 64px;
}

.subsection-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin-bottom: 24px;
}

.pull-quote {
  margin: 24px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--teal);
  color: #444441;
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
}

.about-cta {
  max-width: 680px;
  margin: 64px auto 0;
  text-align: center;
}

.muted-line {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.captcha-block {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.captcha-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.cf-turnstile {
  min-height: 65px;
}

.field-label {
  font-size: 14px;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-tight);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error,
.form-success {
  border-radius: var(--radius-tight);
  text-align: center;
}

.form-error {
  padding: 16px;
  border: 1px solid #f2c6c6;
  background: #fff3f3;
  color: #b13a3a;
  font-size: 14px;
}

.form-success {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
}

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 110, 86, 0.1);
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
}

.success-message {
  margin: 0;
  color: var(--teal);
  font-size: 17px;
  font-weight: 500;
}

.contact-meta {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.inline-link {
  color: var(--teal);
}

.meta-divider {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  gap: 12px;
  text-align: center;
}

.footer-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-legal {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

[hidden] {
  display: none !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@media (max-width: 1024px) {
  .hero-art {
    width: 40vw;
  }

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

  .process-card {
    padding: 0;
    border-right: 0 !important;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-copy {
    padding: 64px 0 140px;
  }

  .hero-art {
    display: none;
  }

  .who-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    padding: 40px 0 52px;
  }
}

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

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .logo {
    height: 50px;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .section-title,
  .section-title-medium {
    font-size: 1.8rem;
  }

  .subsection-title {
    font-size: 1.7rem;
  }

  .section-intro,
  .hero-subheadline,
  .body-paragraph,
  .body-stack p,
  .pivot-body {
    font-size: 16px;
  }

  .who-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .button-secondary {
    justify-content: center;
  }

  .credibility-copy {
    text-align: left;
    line-height: 1.6;
  }
}


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
