:root {
  --blue: #8ab4ff;
  --blue-2: #2f6ef3;
  --red: #ff5b66;
  --green: #45d18b;
  --ink: #f7f8fb;
  --muted: #c3cad6;
  --line: #2a3140;
  --paper: #050505;
  --soft: #10131a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px clamp(20px, 5vw, 70px);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 86px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav .nav-button {
  padding: 16px 34px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-2);
}

.nav-pill {
  color: var(--green);
}

.nav-button,
.button,
.newsletter-form button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 34px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-button:hover,
.button:hover,
.newsletter-form button:hover,
.contact-form button:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  padding: 14px 22px;
  font-weight: 700;
}

main > section {
  padding-inline: clamp(20px, 5vw, 70px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding-block: clamp(54px, 8vw, 104px);
}

.intro-copy h1,
.page-hero h1,
.contact-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy p,
.page-hero p,
.contact-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portrait-strip img,
.service-grid img,
.team-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
}

.portrait-strip img:nth-child(2) {
  margin-top: 44px;
}

.about-split,
.two-column-text,
.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  padding-block: 76px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 22px;
  line-height: 1.15;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--soft);
  border-left: 5px solid var(--blue);
  border-radius: 6px;
}

.feature-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.wide-image {
  padding-block: 0;
}

.wide-image img {
  width: min(100%, 1320px);
  height: min(64vw, 720px);
  margin: 0 auto;
  object-fit: cover;
  border-radius: 6px;
}

.wide-image.half img {
  height: min(54vw, 650px);
}

.why-section,
.services-section,
.why-mexico,
.team-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding-block: 88px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.benefit-grid,
.service-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-grid article,
.reason-grid article,
.team-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.benefit-grid article {
  overflow: hidden;
}

.benefit-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.benefit-grid h3,
.benefit-grid p,
.reason-grid article {
  padding-inline: 22px;
}

.benefit-grid h3 {
  padding-top: 24px;
}

.benefit-grid p {
  padding-bottom: 24px;
  color: var(--muted);
}

.vision-band,
.cta-band {
  margin: 0 auto 86px;
  padding-block: clamp(58px, 8vw, 88px);
  color: #fff;
  background: #0b0f17;
  border-block: 1px solid var(--line);
}

.vision-band h2,
.cta-band h2 {
  max-width: 900px;
  color: #fff;
}

.vision-band p:not(.eyebrow),
.cta-band p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.vision-band.light {
  color: var(--ink);
  background: var(--soft);
}

.vision-band.light h2 {
  color: var(--red);
}

.vision-band.light p:not(.eyebrow) {
  color: var(--muted);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding-block: clamp(64px, 10vw, 126px);
}

.page-hero.compact h1 {
  font-size: clamp(48px, 8vw, 96px);
}

.two-column-text article {
  padding: 34px;
  background: var(--soft);
  border-radius: 8px;
}

.two-column-text p,
.why-mexico p,
.team-card p,
.contact-panel p {
  color: var(--muted);
}

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

.service-grid article {
  min-width: 0;
}

.service-grid img {
  height: 390px;
}

.service-grid h3 {
  margin-top: 16px;
  font-size: 18px;
}

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

.reason-grid article {
  padding-block: 24px;
}

.cta-band {
  text-align: center;
}

.cta-band h2,
.cta-band p {
  margin-inline: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  height: 410px;
  border-radius: 0;
}

.team-card p,
.team-card h2 {
  padding-inline: 18px;
}

.team-card > p:first-of-type {
  margin-top: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card h2 {
  font-size: 24px;
  text-transform: none;
}

.team-card > p:last-child {
  padding-bottom: 18px;
  font-size: 14px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-block: clamp(54px, 8vw, 96px);
}

.contact-hero img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input[type="email"] {
  width: 100%;
  color: var(--ink);
  background: #080b10;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(34px, 6vw, 80px);
  padding: 54px clamp(20px, 5vw, 70px) 28px;
  color: #fff;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 105px;
  margin-bottom: 18px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

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

.footer-grid h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.form-message {
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .intro-section,
  .about-split,
  .two-column-text,
  .contact-hero,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #090b10;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(6, 23, 66, 0.14);
  }

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

  .portrait-strip,
  .benefit-grid,
  .service-grid,
  .reason-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait-strip img,
  .portrait-strip img:nth-child(2) {
    height: 420px;
    margin-top: 0;
  }

  .contact-hero img {
    height: 520px;
  }
}
