:root {
  --navy: #23262a;
  --navy-soft: #2f3338;
  --green: #c8a96b;
  --green-deep: #8c6b35;
  --red: #8fa79b;
  --ice: #f1eee7;
  --white: #fcfbf8;
  --muted: #b8b2aa;
  --line: rgba(241, 238, 231, 0.16);
  --background: #eeece7;
  --foreground: #26282b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(100% - 64px, 1400px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 26%, rgba(200, 169, 107, 0.13), transparent 25%),
    radial-gradient(circle at 77% 68%, rgba(143, 167, 155, 0.1), transparent 28%),
    var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(35, 38, 42, 0.12) 22%, rgba(35, 38, 42, 0.78) 54%, rgba(35, 38, 42, 0.99) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(217, 238, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 238, 242, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.brand-symbol {
  width: 290px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.brand-name strong {
  overflow: hidden;
  max-width: 250px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name strong span {
  color: var(--red);
}

.brand-name small {
  margin-top: 8px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  color: #edf7f7;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--navy);
  background: var(--green);
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(620px, 1.15fr);
  align-items: center;
  min-height: 694px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  grid-column: 2;
  width: min(100%, 720px);
  justify-self: end;
  padding: 70px 0 96px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #d7c08b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(64px, 6.3vw, 98px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--white);
}

.hero-description {
  max-width: 620px;
  margin: 30px 0 0;
  color: #ddd9d1;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
}

.button-primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(200, 169, 107, 0.22);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary span,
.text-link span {
  font-size: 22px;
  transition: transform 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d6bb82;
  box-shadow: 0 22px 48px rgba(200, 169, 107, 0.32);
  transform: translateY(-2px);
}

.button-primary:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 2px solid var(--green);
  font-weight: 750;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 54px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.location-chip strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.location-dot {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 50%;
}

.location-dot::after {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 104px;
  right: auto;
  bottom: 102px;
  left: -4%;
  width: 66%;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.9) contrast(1.03);
  transform: scaleX(-1);
  mask-image: linear-gradient(90deg, black 0%, black 58%, rgba(0,0,0,0.55) 83%, transparent 100%);
}

.trust-strip {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(200, 169, 107, 0.55);
  background: rgba(30, 32, 35, 0.96);
  backdrop-filter: blur(18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 102px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item > span:last-child {
  display: grid;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.5);
  border-radius: 11px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 11px 14px;
  border: 1px solid var(--green);
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  display: grid;
  width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 24, 38, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.mobile-menu nav a {
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: var(--navy);
  background: var(--green);
}

.section {
  padding: 130px 0;
}

.section-heading {
  margin-bottom: 60px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #d7c08b;
}

.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2,
.faq-heading h2,
.safety-card h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.experience-heading > p,
.faq-heading > p {
  margin: 0;
  color: #536a76;
  font-size: 17px;
  line-height: 1.7;
}

.opportunities {
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.1), transparent 34%),
    #e9e5de;
}

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

.opportunity-card {
  --card-accent: var(--green);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 304px;
  padding: 30px 34px 32px 38px;
  overflow: hidden;
  border: 1px solid rgba(35, 38, 42, 0.11);
  border-radius: 14px;
  background: #f8f6f1;
  box-shadow: 0 20px 55px rgba(35, 38, 42, 0.07);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.opportunity-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--card-accent);
  content: "";
}

.opportunity-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 58%, #f8f6f1);
  box-shadow: 0 28px 66px rgba(35, 38, 42, 0.12);
  transform: translateY(-4px);
}

.accent-red {
  --card-accent: var(--red);
}

.accent-blue {
  --card-accent: #8a9096;
}

.accent-amber {
  --card-accent: #b8774f;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 900;
}

.card-topline i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 45%, white);
  border-radius: 10px;
  font-size: 15px;
  font-style: normal;
}

.opportunity-card h3 {
  max-width: 420px;
  margin: 32px 0 12px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.opportunity-card > p {
  max-width: 520px;
  min-height: 46px;
  margin: 0;
  color: #60727c;
  font-size: 14px;
  line-height: 1.65;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.role-list span {
  padding: 7px 9px;
  border-radius: 6px;
  color: #4c4f52;
  background: #e7e2da;
  font-size: 10px;
  font-weight: 750;
}

.opportunity-card > a {
  position: static;
  align-self: flex-end;
  margin-top: auto;
  padding: 22px 0 5px;
  border-bottom: 2px solid var(--card-accent);
  font-size: 12px;
  font-weight: 850;
}

.opportunity-card:nth-child(1),
.opportunity-card:nth-child(4) {
  color: #f8f6f1;
  border-color: #303338;
  background: #303338;
}

.opportunity-card:nth-child(1) > p,
.opportunity-card:nth-child(4) > p {
  color: #c9c4bb;
}

.opportunity-card:nth-child(1) .role-list span,
.opportunity-card:nth-child(4) .role-list span {
  color: #eee9df;
  background: rgba(255, 255, 255, 0.08);
}

.opportunity-card:nth-child(1):hover,
.opportunity-card:nth-child(4):hover {
  border-color: var(--card-accent);
  box-shadow: 0 28px 66px rgba(35, 38, 42, 0.2);
}

.availability-note {
  margin: 28px 0 0;
  color: #738791;
  font-size: 12px;
  text-align: right;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(200, 169, 107, 0.09), transparent 38%),
    var(--navy);
}

.process-routes {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(30deg, transparent 42%, rgba(200, 169, 107, 0.42) 43%, transparent 44%),
    linear-gradient(145deg, transparent 70%, rgba(143, 167, 155, 0.42) 71%, transparent 72%);
  background-size: 720px 720px, 900px 900px;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1fr);
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-intro > p:not(.section-kicker) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #b8cbd3;
  font-size: 17px;
  line-height: 1.75;
}

.button-light {
  color: var(--navy);
  background: white;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-light:hover {
  background: var(--ice);
  transform: translateY(-2px);
}

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

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 530px;
  margin: 10px 0 0;
  color: #9eb4bf;
  font-size: 14px;
  line-height: 1.7;
}

.experiences {
  background:
    linear-gradient(180deg, #e4e0d8 0%, #f5f2ec 100%);
}

.experience-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.7fr;
  align-items: end;
  gap: 54px;
}

.experience-heading .section-kicker {
  align-self: start;
}

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

.testimonial-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #d4e2e4;
  border-radius: 20px;
  background: white;
  box-shadow: 0 25px 75px rgba(7, 24, 38, 0.08);
}

.testimonial-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.testimonial-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--navy);
}

.testimonial-photo::after {
  position: absolute;
  inset: auto -24% -24% 24%;
  height: 44%;
  border: 2px solid var(--green);
  content: "";
  transform: rotate(-18deg);
}

.testimonial-card.reverse .testimonial-photo::after {
  border-color: var(--red);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-photo span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: white;
  background: rgba(7, 24, 38, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.quote-mark {
  height: 58px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.testimonial-card.reverse .quote-mark {
  color: var(--red);
}

.testimonial-copy blockquote {
  margin: 14px 0 44px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.person {
  display: grid;
  gap: 5px;
  padding-top: 19px;
  border-top: 1px solid #dbe5e7;
}

.person strong {
  font-size: 14px;
}

.person span {
  color: #788c95;
  font-size: 10px;
}

.about {
  overflow: hidden;
  color: white;
  background: #2a2d31;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.about-image-frame {
  position: absolute;
  inset: 0 10% 0 -22%;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, 0.55);
  clip-path: polygon(16% 0, 100% 8%, 86% 100%, 0 88%);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.tijuana-badge {
  position: absolute;
  right: 0;
  bottom: 36px;
  display: grid;
  min-width: 225px;
  padding: 24px;
  border: 1px solid rgba(217, 238, 242, 0.25);
  border-radius: 16px;
  background: rgba(7, 24, 38, 0.86);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.tijuana-badge span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tijuana-badge strong {
  margin-top: 6px;
  font-size: 31px;
}

.tijuana-badge small {
  margin-top: 5px;
  color: #9fb4be;
  font-size: 11px;
}

.about-copy .section-kicker {
  color: #d7c08b;
}

.about-copy .lead {
  margin: 30px 0 42px;
  color: #b6cbd3;
  font-size: 18px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.value-grid article {
  padding: 24px;
  background: #2a2d31;
}

.value-grid span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
}

.value-grid h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.value-grid p {
  margin: 0;
  color: #90a7b1;
  font-size: 12px;
  line-height: 1.55;
}

.safety-section {
  padding: 48px 0;
  background: var(--green);
}

.safety-card {
  display: grid;
  grid-template-columns: 90px 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
  color: var(--navy);
}

.safety-symbol {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-size: 38px;
  font-weight: 900;
}

.safety-card .section-kicker {
  margin-bottom: 8px;
  color: var(--navy);
  opacity: 0.72;
}

.safety-card h2 {
  font-size: clamp(32px, 3vw, 48px);
}

.safety-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-card li {
  position: relative;
  padding-left: 27px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.safety-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "✓";
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at 8% 82%, rgba(200, 169, 107, 0.14), transparent 25%),
    var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 100px;
}

.contact-copy {
  position: sticky;
  top: 36px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 28px 0 38px;
  color: #a7bdc6;
  font-size: 17px;
  line-height: 1.7;
}

.contact-points {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.contact-points article {
  display: grid;
  padding: 22px 0;
  background: var(--navy);
}

.contact-points span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-points strong {
  margin-top: 7px;
  font-size: 17px;
}

.contact-points small {
  margin-top: 5px;
  color: #8fa7b2;
  font-size: 11px;
}

.contact-warning {
  margin-top: 32px;
  padding: 20px;
  border-left: 3px solid var(--red);
  color: #c5d5db;
  background: rgba(143, 167, 155, 0.1);
  font-size: 12px;
  line-height: 1.65;
}

.contact-form {
  padding: 42px;
  border: 1px solid rgba(217, 238, 242, 0.18);
  border-radius: 22px;
  color: var(--navy);
  background: white;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
}

.form-heading {
  display: grid;
  margin-bottom: 30px;
}

.form-heading span {
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 7px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #243b48;
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad9dd;
  border-radius: 9px;
  outline: none;
  color: var(--navy);
  background: #f8fbfb;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 15px 0 0;
  color: #778b94;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-success {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(143, 167, 155, 0.55);
  border-radius: 8px;
  color: #405d51;
  background: rgba(143, 167, 155, 0.14);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.form-alert {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(184, 119, 79, 0.48);
  border-radius: 8px;
  color: #7a452e;
  background: rgba(184, 119, 79, 0.1);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.whatsapp-button {
  width: fit-content;
  margin-top: 28px;
  color: var(--navy);
  background: var(--green);
}

.faq-section {
  background: #e9e5de;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading > p {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid #cedcdf;
}

.faq-list details {
  border-bottom: 1px solid #cedcdf;
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #a9bdc4;
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  color: white;
  border-color: var(--green);
  background: var(--green);
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 50px 28px 0;
  color: #5c727c;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 72px 0 22px;
  color: white;
  background: #181a1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.75fr;
  gap: 90px;
}

.footer-brand img {
  width: 150px;
  height: 135px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  max-width: 370px;
  margin: 20px 0 0;
  color: #8ea5af;
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  padding-top: 20px;
}

.footer-grid nav strong,
.footer-contact strong {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact span,
.footer-contact a {
  color: #9fb3bc;
  font-size: 12px;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-contact a {
  margin-top: 12px;
  color: white;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #718894;
  font-size: 9px;
  letter-spacing: 0.04em;
}

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

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 590px;
    grid-column: 1;
    margin-left: auto;
  }

  .hero-visual {
    right: auto;
    left: -24%;
    width: 86%;
    opacity: 0.72;
  }

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

  .process-layout,
  .about-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .testimonial-card {
    min-height: 420px;
  }

  .experience-heading {
    grid-template-columns: 0.45fr 1fr;
  }

  .experience-heading > p {
    grid-column: 2;
  }

  .safety-card {
    grid-template-columns: 74px 1fr;
  }

  .safety-card ul {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 36px, 1400px);
  }

  .hero {
    min-height: 850px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(35, 38, 42, 0.7) 0%, rgba(35, 38, 42, 0.92) 78%, rgba(35, 38, 42, 0.98) 100%);
  }

  .site-header {
    min-height: 86px;
  }

  .brand-symbol {
    width: 210px;
    height: 64px;
  }

  .brand-name strong {
    font-size: 20px;
  }

  .hero-content {
    min-height: 662px;
  }

  .hero-copy {
    padding: 72px 0 130px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-description {
    max-width: 94%;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .location-chip {
    margin-top: 28px;
  }

  .hero-visual {
    top: 86px;
    right: auto;
    bottom: 94px;
    left: -62%;
    width: 150%;
    opacity: 0.38;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    min-height: 94px;
  }

  .trust-item {
    gap: 0;
    padding: 10px 8px;
    text-align: center;
  }

  .trust-icon,
  .trust-item small {
    display: none;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .process-intro h2,
  .about-copy h2,
  .contact-copy h2,
  .faq-heading h2,
  .safety-card h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .split-heading,
  .process-layout,
  .experience-heading,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    align-items: start;
  }

  .experience-heading > p {
    grid-column: auto;
  }

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

  .opportunity-card {
    min-height: 320px;
  }

  .availability-note {
    text-align: left;
  }

  .process-intro,
  .contact-copy {
    position: static;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
  }

  .testimonial-card,
  .testimonial-card.reverse {
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    min-height: 360px;
    max-height: 420px;
  }

  .testimonial-copy {
    padding: 30px;
  }

  .testimonial-copy blockquote {
    font-size: 18px;
  }

  .about-visual {
    min-height: 480px;
  }

  .about-image-frame {
    inset: 0 -20% 0 -35%;
  }

  .tijuana-badge {
    right: 0;
    min-width: 190px;
  }

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

  .safety-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .safety-card ul {
    grid-column: auto;
  }

  .safety-symbol {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.simulator-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(200, 169, 107, 0.13), transparent 23%),
    #e8e4dc;
}

.simulator-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.simulator-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.simulator-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #607984;
  font-size: 17px;
  line-height: 1.75;
}

.simulator-copy ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.simulator-copy li {
  position: relative;
  padding-left: 30px;
  color: #385765;
  font-weight: 650;
}

.simulator-copy li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  content: "✓";
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.calculator-card {
  padding: 46px;
  border: 1px solid #d9e7e3;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(9, 34, 52, 0.1);
}

.calculator-heading {
  display: flex;
  flex-direction: column;
}

.calculator-heading span {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-heading strong {
  margin-top: 7px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  gap: 16px;
}

.calculator-fields label {
  display: flex;
  flex-direction: column;
  color: #395563;
  font-size: 12px;
  font-weight: 800;
}

.calculator-fields input {
  min-width: 0;
  min-height: 52px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid #d8e4e2;
  border-radius: 11px;
  outline: none;
}

.calculator-fields input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.15);
}

.calculator-fields input[type="range"] {
  min-height: 24px;
  padding: 0;
  accent-color: var(--green-deep);
}

.calculator-fields label > span {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 13px;
}

.projection {
  display: flex;
  margin-top: 34px;
  padding: 26px;
  border-radius: 18px;
  flex-direction: column;
  color: var(--white);
  background: var(--navy);
}

.projection span {
  color: #a9c2ca;
  font-size: 12px;
}

.projection strong {
  margin-top: 6px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
}

.projection small {
  margin-top: 6px;
  color: #91abb5;
  line-height: 1.5;
}

.calculator-note {
  margin: 16px 0 0;
  color: #71868f;
  font-size: 11px;
  line-height: 1.55;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 11px !important;
  line-height: 1.5;
}

.contact-form .consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--green-deep);
}

.consent-row a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page {
  min-height: 100vh;
  padding: 50px 18px;
  background: #edf4f2;
}

.legal-shell {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 52px;
  border: 1px solid #d8e5e2;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(9, 34, 52, 0.09);
}

.legal-back {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--green-deep);
  font-weight: 800;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-shell section {
  margin-top: 34px;
}

.legal-shell h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-shell p {
  color: #526b76;
  line-height: 1.75;
}

.legal-warning {
  margin-top: 30px;
  padding: 18px;
  border-left: 4px solid var(--red);
  color: var(--navy);
  background: #fff8e3;
  line-height: 1.6;
}

.legal-date {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #d8e5e2;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .simulator-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .calculator-card {
    padding: 28px 22px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    padding: 34px 24px;
  }
}
