@font-face {
  font-family: "Aileron";
  src: url("assets/Aileron-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/Aileron-SemiBold.otf") format("opentype");
  font-weight: 600;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/Aileron-Bold.otf") format("opentype");
  font-weight: 700;
}

:root {
  --ink: #16222a;
  --forest: #1c3a38;
  --sage: #687c6e;
  --clay: #a35e52;
  --gold: #d2973e;
  --paper: #eae4db;
  --white: #fbfaf7;
  --muted: #6a6d68;
  --line: rgba(22, 34, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aileron", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(234, 228, 219, 0.9);
  border-bottom: 1px solid rgba(22, 34, 42, 0.1);
  display: grid;
  gap: 24px;
  grid-template-columns: 210px 1fr auto;
  left: 0;
  padding: 14px 48px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  height: 58px;
  overflow: hidden;
  width: 190px;
}

.brand img {
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  width: 185px;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav-links a {
  color: rgba(22, 34, 42, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.language-switch {
  align-items: center;
  border: 1px solid rgba(22, 34, 42, 0.18);
  display: flex;
  height: 36px;
}

.language-switch button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  height: 34px;
  padding: 0 12px;
}

.language-switch button.active {
  background: var(--forest);
  color: var(--white);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  padding: 140px 48px 54px;
  position: relative;
}

.hero-slide {
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 2800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 34, 42, 0.88), rgba(22, 34, 42, 0.42) 44%, rgba(22, 34, 42, 0.12)),
    linear-gradient(0deg, rgba(22, 34, 42, 0.42), transparent 38%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  margin-bottom: 26px;
  max-width: 900px;
}

.hero-copy {
  color: rgba(251, 250, 247, 0.86);
  font-size: 19px;
  line-height: 1.7;
  max-width: 650px;
}

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

.primary-action,
.secondary-action,
.contact-form button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 700;
  min-height: 48px;
  padding: 0 22px;
}

.primary-action,
.contact-form button {
  background: var(--gold);
  color: var(--ink);
}

.secondary-action {
  border-color: rgba(251, 250, 247, 0.45);
  color: var(--white);
}

.hero-panel {
  background: rgba(251, 250, 247, 0.9);
  border-left: 4px solid var(--gold);
  bottom: 54px;
  color: var(--ink);
  max-width: 330px;
  padding: 24px;
  position: absolute;
  right: 48px;
  z-index: 2;
}

.hero-panel span,
.journey-card span,
.expertise-list span {
  color: var(--clay);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.section {
  padding: 88px 48px;
}

.intro-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.intro-copy {
  color: #3f4642;
  columns: 2 280px;
  font-size: 17px;
  line-height: 1.75;
}

.proof-strip {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.proof-strip div {
  border-right: 1px solid rgba(251, 250, 247, 0.18);
  min-height: 160px;
  padding: 34px;
}

.proof-strip strong {
  display: block;
  font-size: 26px;
  margin-bottom: 12px;
}

.proof-strip span {
  color: rgba(251, 250, 247, 0.7);
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.journey-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 1fr 1fr;
  margin-top: 42px;
}

.journey-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 430px;
}

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

.journey-card > span,
.journey-card h3 {
  padding-left: 24px;
  padding-right: 24px;
}

.journey-card > span {
  margin-top: 24px;
}

.journey-card h3 {
  font-size: 24px;
  line-height: 1.2;
}

.feature-card {
  grid-row: span 2;
  grid-template-rows: 1fr auto;
  min-height: 650px;
  position: relative;
}

.feature-card::after {
  background: linear-gradient(0deg, rgba(22, 34, 42, 0.84), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
}

.feature-card img {
  grid-row: 1 / -1;
}

.feature-card div {
  align-self: end;
  color: var(--white);
  padding: 34px;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 36px;
  padding: 0;
}

.expertise {
  background: var(--white);
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
}

.image-column {
  min-height: 680px;
}

.image-column img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.expertise-content {
  align-self: center;
}

.expertise-list {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

.expertise-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 50px 180px 1fr;
  padding: 22px 0;
}

.expertise-list strong {
  font-size: 18px;
}

.expertise-list p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.philosophy {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 120px 1fr;
}

.quote-mark {
  color: var(--gold);
  font-size: 148px;
  line-height: 0.9;
}

blockquote {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.08;
  margin: 0;
  max-width: 1100px;
}

.contact {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.contact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
  padding: 30px;
}

.contact-form label {
  color: var(--forest);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: #f4f0e8;
  border: 1px solid rgba(22, 34, 42, 0.16);
  color: var(--ink);
  outline: none;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  border: 0;
  cursor: pointer;
  justify-content: center;
}

.site-footer {
  align-items: center;
  background: var(--forest);
  color: rgba(251, 250, 247, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 28px 48px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 170px 1fr;
    padding: 12px 22px;
  }

  .nav-links {
    display: none;
  }

  .language-switch {
    justify-self: end;
  }

  .hero {
    min-height: 100vh;
    padding: 120px 24px 28px;
  }

  .hero-panel {
    margin-top: 34px;
    max-width: none;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .section {
    padding: 64px 24px;
  }

  .intro-grid,
  .expertise,
  .contact,
  .philosophy {
    grid-template-columns: 1fr;
  }

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

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

  .feature-card {
    min-height: 560px;
  }

  .expertise-list div {
    grid-template-columns: 46px 1fr;
  }

  .expertise-list p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    grid-template-columns: 1fr;
    position: absolute;
  }

  .brand {
    height: 50px;
    width: 165px;
  }

  .brand img {
    max-height: 46px;
    width: 158px;
  }

  .language-switch {
    justify-self: start;
  }

  h1 {
    font-size: 42px;
  }

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

  .primary-action,
  .secondary-action {
    justify-content: center;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 128px;
  }

  .journey-card {
    min-height: 380px;
  }

  .feature-card h3 {
    font-size: 30px;
  }

  .image-column {
    min-height: 420px;
  }

  .quote-mark {
    font-size: 96px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
