:root {
  --emerald: #0b3d2e;
  --emerald-deep: #072d22;
  --copper: #c28a5c;
  --copper-dark: #a47249;
  --ivory: #f4f1ea;
  --ivory-soft: #faf8f3;
  --ink: #1d1a16;
  --text-soft: color-mix(in srgb, var(--ink) 74%, #ffffff 26%);
  --line-soft: color-mix(in srgb, var(--ink) 14%, #ffffff 86%);
  --shadow-soft: 0 20px 48px rgba(16, 12, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--ivory) 90%, #ffffff 10%);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(18, 14, 10, 0.08);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-header.scrolled .nav-brand,
.site-header.scrolled .nav-links a {
  color: #2a2622;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--copper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(7, 45, 34, 0.72), rgba(7, 45, 34, 0.62)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(11, 61, 46, 0.65), rgba(7, 45, 34, 0.66));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 170px 0 120px;
  max-width: 700px;
}

.hero-mark {
  width: 108px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(10, 8, 6, 0.2));
}

.brand-name {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.tagline {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.06rem;
  color: var(--copper);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 62ch;
  margin: 0 auto 34px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: var(--copper);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.section {
  padding: clamp(98px, 11vw, 120px) 0;
}

.section-intro {
  max-width: 68ch;
}

.section-intro h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}

.section-intro p,
.colombia p,
.triptych p,
.steps p {
  color: var(--text-soft);
}

.trust {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
}

.triptych {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.triptych article {
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.triptych h3,
.steps h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.journey {
  background: var(--ivory-soft);
}

.steps {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.steps span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--copper);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(113, 74, 43, 0.24);
}

.colombia {
  background: linear-gradient(180deg, var(--ivory-soft) 0%, var(--ivory) 100%);
}

.narrow {
  max-width: 760px;
}

.colombia h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.inquiry {
  background: var(--ivory);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.form {
  background: var(--ivory-soft);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 78%, #ffffff 22%);
}

.form input,
.form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: color-mix(in srgb, var(--ivory-soft) 88%, #ffffff 12%);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, #ffffff 82%);
  border-radius: 10px;
  padding: 12px;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--copper) 52%, #ffffff 48%);
  outline-offset: 1px;
}

.form button {
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--copper);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form button:hover,
.form button:focus-visible {
  background: var(--copper-dark);
}

.form-note {
  margin-top: 2px;
  text-align: center;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--ink) 62%, #ffffff 38%);
}

.form-status {
  min-height: 1.2em;
  color: #2b6e52;
}

.form-status.error {
  color: #9b2226;
}

@media (max-width: 940px) {
  .nav-wrap {
    min-height: 82px;
  }

  .triptych,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 150px 0 92px;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    justify-content: center;
  }

  .nav-brand {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-content {
    padding: 142px 0 78px;
  }

  .hero-mark {
    width: 92px;
  }

  .tagline {
    letter-spacing: 0.13em;
  }

  .section {
    padding: 62px 0;
  }

  .form {
    padding: 22px;
  }
}
