:root {
  --navy: #122d4d;
  --navy-deep: #0c223c;
  --accent: #4f7773;
  --accent-soft: #739a96;
  --cream: #fcf9f4;
  --cream-deep: #f3ede4;
  --white: #ffffff;
  --text: #1b2a3a;
  --muted: #5f6b76;
  --line: #dedbd5;
  --success: #256b45;
  --danger: #9c2f2f;
  --shadow: 0 18px 50px rgba(18, 45, 77, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  direction: rtl;
  background: var(--cream);
  color: var(--text);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #266d88;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: #426763;
  box-shadow: 0 10px 24px rgba(79, 119, 115, 0.22);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(18, 45, 77, 0.32);
  background: transparent;
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--cream);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 45, 77, 0.08);
  background: rgba(252, 249, 244, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 57px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.brand-role {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(79, 119, 115, 0.12);
  color: #355e5a;
}

.primary-nav .nav-cta {
  margin-right: 6px;
  background: var(--navy);
  color: var(--white);
}

.primary-nav .nav-cta:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 45, 77, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  right: 0;
  content: "";
}

.nav-toggle-lines::before { top: -7px; }
.nav-toggle-lines::after { top: 7px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
}

.hero::before {
  position: absolute;
  top: -260px;
  left: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(115, 154, 150, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.72fr);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 5.7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #455564;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.8;
}

.hero-photo-wrap {
  position: relative;
  min-height: 520px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 24px 0 0;
  overflow: hidden;
  border-radius: 210px 210px 30px 30px;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1.1);
  transform-origin: center top;
}

.photo-signature {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 2;
  max-width: 225px;
  padding: 16px 20px;
  border-right: 4px solid var(--accent-soft);
  border-radius: 5px 14px 14px 5px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(18, 45, 77, 0.16);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.43);
}

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

.proof-item {
  min-height: 124px;
  padding: 26px 28px;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-left: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Cards and sections */
.route-grid,
.service-grid,
.principles-grid,
.outcomes-grid {
  display: grid;
  gap: 22px;
}

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

.route-card {
  position: relative;
  min-height: 410px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(18, 45, 77, 0.05);
}

.route-card::after {
  position: absolute;
  left: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(79, 119, 115, 0.18);
  border-radius: 50%;
  content: "";
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(79, 119, 115, 0.13);
  color: var(--accent);
  font-weight: 850;
}

.route-card h3,
.service-card h3,
.principle-card h3,
.outcome-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.3;
}

.route-card p,
.service-card p,
.principle-card p,
.outcome-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-right: 22px;
}

.clean-list li::before {
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "←";
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(-4px);
}

.principles-section {
  background: var(--cream-deep);
}

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

.principle-card {
  padding: 28px;
  border-top: 3px solid var(--accent-soft);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.principle-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.experience-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.experience-band::before {
  position: absolute;
  top: -200px;
  left: -110px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.experience-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.05fr 0.95fr;
}

.experience-band .section-kicker,
.experience-band .text-link {
  color: #b8d8d5;
}

.experience-band .section-title {
  color: var(--white);
}

.experience-band p {
  color: #dbe4ed;
}

.experience-points {
  display: grid;
  gap: 12px;
}

.experience-point {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.experience-point strong {
  display: block;
  color: var(--white);
}

.experience-point span {
  color: #c6d1dc;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  align-items: start;
  gap: 76px;
  grid-template-columns: 0.86fr 1.14fr;
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 6px rgba(115, 154, 150, 0.13);
}

.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-field {
  margin-bottom: 17px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9c7c2;
  border-radius: 10px;
  background: #fffefa;
  color: var(--text);
}

.form-field input {
  min-height: 52px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 119, 115, 0.12);
  outline: 0;
}

.form-status {
  min-height: 27px;
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--accent);
  font-weight: 700;
}

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

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--cream) 35%, #eef3f1 100%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5.5vw, 4.9rem);
}

.page-hero .hero-lead {
  max-width: 820px;
}

.service-group + .service-group {
  margin-top: 92px;
}

.service-group-header {
  display: grid;
  gap: 26px;
  margin-bottom: 34px;
  grid-template-columns: 0.7fr 1.3fr;
}

.service-group-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.service-group-header p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-card .card-number {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  font-size: 0.83rem;
}

.comparison-wrap {
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.comparison-wrap h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.14;
}

.comparison-wrap > p {
  max-width: 800px;
  color: #dbe4ed;
}

.comparison-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.comparison-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.comparison-card h3 {
  margin: 0;
  color: var(--white);
}

.comparison-card .clean-list {
  color: #dbe4ed;
}

.integrity-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-right: 4px solid #b8d8d5;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 40px;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 0 0 42px;
  grid-template-columns: 180px 1fr;
}

.timeline-item::before {
  position: absolute;
  top: 9px;
  right: 164px;
  bottom: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item:last-child::before { display: none; }

.timeline-marker {
  position: relative;
  color: var(--accent);
  font-weight: 850;
}

.timeline-marker::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  content: "";
}

.timeline-content {
  padding-right: 8px;
}

.timeline-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
}

.timeline-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.outcome-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--cream-deep);
}

.content-page {
  max-width: 860px;
}

.content-page h2 {
  margin: 44px 0 8px;
  color: var(--navy);
  font-size: 1.45rem;
}

.content-page p,
.content-page li {
  color: #485966;
}

.content-page a {
  color: var(--accent);
  font-weight: 700;
}

.content-callout {
  margin: 36px 0;
  padding: 22px 24px;
  border-right: 4px solid var(--accent);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--cream-deep);
}

.not-found {
  display: grid;
  min-height: 66vh;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 660px;
}

.not-found-code {
  margin: 0;
  color: var(--accent-soft);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
}

/* Footer */
.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-deep);
  color: #d7e1ea;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-name {
  color: var(--white);
  font-weight: 800;
}

.footer-sub {
  margin: 3px 0 0;
  color: #aebdca;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-links a {
  color: #d7e1ea;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid,
  .experience-grid,
  .contact-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
  }

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

  .proof-item:nth-child(2) { border-left: 0; }
  .proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

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

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }

  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
  }

  .js-enabled .nav-toggle { display: inline-flex; }

  .primary-nav {
    display: grid;
    flex-basis: 100%;
    padding-bottom: 18px;
  }

  .js-enabled .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 74px);
    align-items: stretch;
    padding: 18px 20px 26px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(18, 45, 77, 0.12);
  }

  .js-enabled .primary-nav.is-open { display: grid; }

  .primary-nav a {
    padding: 13px 15px;
    border-radius: 10px;
  }

  .primary-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-grid,
  .experience-grid,
  .contact-grid,
  .service-group-header {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 56px; }
  .hero-photo-wrap { min-height: 500px; }
  .hero-photo-frame { inset: 0 12% 0 8%; }
  .photo-signature { right: 7%; }

  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; }

  .experience-grid { gap: 42px; }

  .timeline-item { grid-template-columns: 135px 1fr; }
  .timeline-item::before { right: 119px; }
}

@media (max-width: 590px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }

  .brand img { width: 49px; height: 36px; }
  .brand-name { font-size: 0.92rem; }
  .brand-role { font-size: 0.68rem; }

  .hero { padding: 44px 0 58px; }
  .hero h1,
  .page-hero h1 { letter-spacing: -0.04em; }
  .hero-photo-wrap { min-height: 410px; }
  .hero-photo-frame { inset: 0 4% 0 4%; border-radius: 160px 160px 24px 24px; }
  .photo-signature { right: 0; bottom: 18px; max-width: 200px; padding: 13px 16px; }

  .proof-grid,
  .principles-grid,
  .service-grid,
  .outcomes-grid,
  .comparison-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    min-height: auto;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item:last-child { border-bottom: 0; }
  .route-card { padding: 30px 24px; }
  .contact-form { padding: 25px 20px; }
  .comparison-wrap { padding: 34px 22px; }
  .page-hero { padding: 64px 0 56px; }

  .timeline-item {
    display: block;
    padding-right: 28px;
  }

  .timeline-item::before {
    top: 11px;
    right: 6px;
  }

  .timeline-marker { margin-bottom: 8px; }
  .timeline-marker::after { top: 8px; right: -27px; left: auto; }
  .timeline-content { padding-right: 0; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
