:root {
  --dark: #11110e;
  --green: #4fa066;
  --light: #f7f7f3;
  --text: #222;
  --muted: #666;
  --border: #e5e5df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

a {
  color: inherit;
}

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

/* CONTENEDOR */
.container {
  max-width: 1120px;
  margin: auto;
  padding: 56px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(17,17,14,.72), rgba(17,17,14,.72)),
              url("../img/hero-orvis.webp") center/cover no-repeat;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 920px;
  margin: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 12px;
  color: #e8f1ee;
}

/* TITULOS */
h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: .95;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
}

/* LEAD */
.lead {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: #f2f2f2;
}

/* BOTONES */
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
}

/* SECCIONES */
.intro {
  background: var(--light);
}

.text-block {
  max-width: 860px;
}

.text-block p {
  color: var(--muted);
}

.split-feature-section {
  max-width: 1120px;
}

.experience-split-feature__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.experience-split-feature__image-block,
.experience-split-feature__content-block {
  width: 100%;
}

.experience-split-feature__content-block {
  align-self: center;
}

.experience-split-feature__copy img {
  margin-top: 16px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* CTA */
.cta {
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta p {
  color: #ddd;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item p {
  color: var(--muted);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #bbb;
  padding: 30px 20px;
  text-align: center;
  font-size: .9rem;
}

footer p {
  max-width: 850px;
  margin: auto;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-split-feature__container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .experience-split-feature__image-block,
  .experience-split-feature__content-block {
    width: calc(50% - 20px);
  }

  .hero {
    padding: 120px 20px;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
