:root {
  --ink: #10231f;
  --muted: #5b6f69;
  --line: #dce8e5;
  --paper: #ffffff;
  --soft: #f3faf8;
  --deep: #073b36;
  --accent: #0b7f72;
  --accent-strong: #09685e;
  --accent-light: #d9f4ef;
  --warning: #c84f2c;
  --shadow: 0 18px 50px rgba(8, 49, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #ffffff;
  background: rgba(7, 59, 54, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: max-content;
  text-decoration: none;
  line-height: 1.05;
}

.brand span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  color: #ffffff;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
}

.language-switch button.is-active {
  color: var(--deep);
  background: #ffffff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px clamp(22px, 7vw, 108px) 76px;
  color: #ffffff;
  background-image: url("assets/simon-portrait.jpg");
  background-size: cover;
  background-position: 78% 44%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 38, 35, 0.94) 0%, rgba(4, 38, 35, 0.78) 42%, rgba(4, 38, 35, 0.16) 76%),
    linear-gradient(0deg, rgba(4, 38, 35, 0.22), rgba(4, 38, 35, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #79f0df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10em;
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.24;
}

.hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 780;
}

.button.primary {
  color: var(--deep);
  background: #ffffff;
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-notes span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.proof-item {
  min-height: 120px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

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

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.proof-item span {
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 10vw, 126px) clamp(22px, 6vw, 86px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.35fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-copy p,
.about-copy p,
.case-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.process-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--accent-strong);
  background: var(--accent-light);
  font-weight: 820;
}

.service-card p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
  color: #ffffff;
  background: var(--deep);
}

.pricing-band .eyebrow {
  color: #79f0df;
}

.pricing-panel {
  display: grid;
  gap: 16px;
}

.pricing-panel > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-panel strong {
  display: block;
  font-size: 1.22rem;
}

.pricing-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.routes-section {
  background: #ffffff;
}

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

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

.route-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(8, 49, 43, 0.08);
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-wide {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  grid-template-rows: auto;
}

.route-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 780;
}

.route-body p {
  margin: 0;
  color: var(--muted);
}

.budget {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.budget span {
  color: var(--muted);
  font-size: 0.9rem;
}

.budget strong {
  color: var(--ink);
}

.route-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(72px, 10vw, 126px) clamp(22px, 6vw, 86px);
  background: var(--soft);
}

.case-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-image img {
  width: 100%;
  height: clamp(340px, 48vw, 620px);
  object-fit: cover;
}

.process-section {
  background: #ffffff;
}

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

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--soft);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-gallery img:first-child {
  grid-row: span 2;
  height: 514px;
  object-position: 58% 42%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(78px, 10vw, 132px) clamp(22px, 6vw, 86px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 59, 54, 0.94), rgba(7, 59, 54, 0.78)),
    url("https://images.unsplash.com/photo-1717400411765-0d6a4d0bc8db?auto=format&fit=crop&q=80&w=1600");
  background-position: center;
  background-size: cover;
}

.contact-section .eyebrow {
  color: #79f0df;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.contact-card strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.76);
  background: #062f2b;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 4px;
    width: 42px;
    height: 38px;
    margin-left: 112px;
    margin-top: 2px;
    padding: 9px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
  }

  .site-nav {
    position: absolute;
    top: 106px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 59, 54, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .language-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-top: 2px;
  }

  .hero {
    background-position: 63% center;
  }

  .hero-content {
    width: min(320px, 100%);
    max-width: calc(100vw - 40px);
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 5.8vw, 3.35rem);
    line-height: 1.03;
  }

  .proof-strip,
  .split-section,
  .pricing-band,
  .case-section,
  .about-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.67rem;
  }

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

  .language-switch button {
    min-width: 26px;
    min-height: 28px;
    padding: 0 5px;
    font-size: 0.72rem;
  }

  .language-switch {
    position: static;
  }

  .menu-toggle {
    position: static;
    z-index: auto;
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
    padding: 116px 20px 42px;
    background-position: 60% 32%;
    overflow: hidden;
  }

  .hero-content {
    width: min(320px, 100%);
    max-width: calc(100vw - 40px);
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 38, 35, 0.96) 0%, rgba(4, 38, 35, 0.72) 42%, rgba(4, 38, 35, 0.18) 84%),
      linear-gradient(90deg, rgba(4, 38, 35, 0.2), rgba(4, 38, 35, 0.2));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.03;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .route-grid,
  .process-grid,
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .route-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .route-card {
    grid-template-rows: 230px 1fr;
  }

  .about-gallery img,
  .about-gallery img:first-child {
    grid-row: auto;
    height: 310px;
  }

  .budget {
    grid-template-columns: 1fr;
  }
}
