/* =============================================
   SUR IMMERSION EXPERIENCE — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- TOKENS --- */
:root {
  --deep-blue:   #0C1E2D;
  --terracotta:  #BE5A2E;
  --gold:        #C9913D;
  --cream:       #F7F2EB;
  --cream-dark:  #EDE7DC;
  --white:       #FFFFFF;
  --text-body:   #2a3e4e;
  --text-muted:  #6b7f8c;
  --border: rgba(12,30,45,0.15);
  --text-dark: var(--deep-blue);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
  --max-w: 1200px;
  --radius: 4px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--cream);
  color: var(--deep-blue);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(12,30,45,0.035) 0px,
      rgba(12,30,45,0.035) 1px,
      transparent 1px,
      transparent 18px
    );
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- TYPOGRAPHY UTILITIES --- */
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); line-height: 1.25; }
p { color: var(--text-body); font-size: 1rem; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section {
  padding-block: var(--section-pad);
}
.section--dark {
  background-color: var(--deep-blue);
  color: var(--cream);
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 18px
    );
}
.section--dark p { color: rgba(247,242,235,0.75); }
.section--cream-dark { background-color: var(--cream-dark); }
.divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin-block: 24px;
}
.page-hero .label { color: var(--gold); }
.page-hero .divider { margin-top: 16px; margin-bottom: 0; }
.section-intro { max-width: 80ch; margin-bottom: 40px; }
.section-intro p + p,
.section-header p + p,
.footer-brand p + p { margin-top: 12px; }
.panel-inner { padding-top: 56px; }
.label--tight { margin-bottom: 4px; }
.closing-statement { margin-top: 48px; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,242,235,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12,30,45,0.08);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(12,30,45,0.1); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--deep-blue);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav-logo span { color: var(--terracotta); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-blue);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terracotta); }

/* Dropdown */
.nav-dropdown,
.has-drop { position: relative; }

.nav-dropdown-menu,
.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
}

.drop__panel {
  background: var(--white);
  border: 1px solid rgba(12,30,45,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(12,30,45,0.12);
  min-width: 220px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.has-drop:hover .drop,
.has-drop:focus-within .drop,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.drop a {
  display: block;
  padding: 12px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-blue);
  border-bottom: 1px solid rgba(12,30,45,0.06);
  transition: background var(--transition), color var(--transition);
}
.drop a:last-child { border-bottom: none; }
.drop a:hover { background: var(--cream); color: var(--terracotta); }
.nav-dropdown > a::after,
.has-drop > a::after { content: ' ↓'; font-size: 0.65rem; opacity: 0.6; }

/* Scroll margin para que la navbar fija no tape los anclajes */
.audience-tabs, 
.audience-panel {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* =============================================
   ORGANIZATIONS PAGE SPECIFIC STYLES
   ============================================= */

/* PAGE HERO */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--deep-blue);
  background-image:
    repeating-linear-gradient(-45deg,rgba(255,255,255,0.025) 0px,rgba(255,255,255,0.025) 1px,transparent 1px,transparent 18px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.07;
}
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(247,242,235,0.7); max-width: 60ch; margin-top: 20px; font-size: 1.05rem; }

/* TABS NAVIGATION */
.audience-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid rgba(12,30,45,0.1);
}
.audience-tab {
  padding: 18px 32px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  cursor: pointer;
}
.audience-tab.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.audience-panel { display: none; padding-top: 0; }
.audience-panel.active { display: block; }

/* HOST ORG */
.gains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.gain-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(12,30,45,0.06);
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gain-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(12,30,45,0.1); }
.gain-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.gain-content h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--deep-blue); margin-bottom: 4px; }
.gain-content p { font-size: 0.82rem; color: var(--text-muted); }

/* CLOSING STATEMENT */
.closing-statement {
  background: var(--deep-blue);
  border-radius: 12px;
  padding: 48px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.closing-statement::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 300px; height: 300px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.1;
}
.closing-statement p {
  color: rgba(247,242,235,0.75);
  max-width: 65ch;
  font-size: 1rem;
  line-height: 1.75;
}
.closing-statement .emphasis {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  margin-top: 20px;
}
.closing-statement .emphasis em { color: var(--terracotta); font-style: normal; }
.cta-group { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* UNIVERSITIES */
.uni-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.uni-feature {
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(12,30,45,0.06);
}
.uni-feature h4 { font-size: 0.85rem; font-weight: 600; color: var(--deep-blue); margin-bottom: 6px; }
.uni-feature p { font-size: 0.82rem; color: var(--text-muted); }

/* CTA STRIP */
.page-cta {
  background: var(--terracotta);
  padding: 60px 0;
}
.page-cta h2 { color: var(--white); }
.page-cta p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.page-cta .inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .gains-grid { grid-template-columns: 1fr; }
  .uni-features { grid-template-columns: 1fr; }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: 1.5px solid var(--cream);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Nav Contact button (desktop) */
.nav-links .nav-contact,
a.nav-contact.btn.btn-ghost-light {
  padding: 10px 22px;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  background: var(--cream);
  color: var(--terracotta) !important;
  border: 1.5px solid var(--terracotta);
}
.nav-links .nav-contact:hover,
a.nav-contact.btn.btn-ghost-light:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--deep-blue); border-radius: 2px; transition: all var(--transition); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: #a34a23; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(190,90,46,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--deep-blue);
  border: 1.5px solid var(--deep-blue);
}
.btn-secondary:hover { background: var(--deep-blue); color: var(--cream); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247,242,235,0.5);
}
.btn-ghost-light:hover { background: rgba(247,242,235,0.1); border-color: var(--cream); }

/* --- HERO --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--terracotta);
}
.hero h1 { max-width: 100%; }
.hero .sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 80ch;
  line-height: 1.75;
  margin-top: 20px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.hero-deco {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45vw;
  max-width: 600px;
  height: 80%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--deep-blue) 100%);
  opacity: 0.06;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  pointer-events: none;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
}
.hero-image-wrapper .photo-grad {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(12,30,45,0.05) 0%, rgba(12,30,45,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.hero-image-wrapper .photo-grad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}

.hero-image-wrapper .photo-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.floating-badge {
  position: absolute;
  bottom: -24px;
  left: -48px;
  background: var(--cream);
  color: var(--deep-blue);
  padding: 24px 32px;
  max-width: 280px;
  box-shadow: 0 12px 32px rgba(12,30,45,0.1);
  border-radius: 2px;
}
.floating-badge .badge-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 500;
}

/* HOME-SPECIFIC */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: var(--terracotta);
  right: -100px; top: 50px;
}
.hero-circle-2 {
  width: 300px; height: 300px;
  background: var(--gold);
  right: 200px; bottom: 80px;
}
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 40%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(12,30,45,0.08), transparent);
}

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-visual {
  position: relative;
  height: 480px;
}
.ov-block {
  position: absolute;
  border-radius: 8px;
}
.ov-block-1 {
  width: 65%;
  height: 72%;
  background: var(--deep-blue);
  top: 0; left: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.ov-block-1 p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.4;
}
.ov-block-2 {
  width: 55%;
  height: 45%;
  background: var(--terracotta);
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ov-block-2 .inner { text-align: center; padding: 20px; }
.ov-block-2 .big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.ov-block-2 .small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.ov-block-3 {
  width: 38%;
  height: 30%;
  background: var(--gold);
  bottom: 47%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ov-block-3 p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}
.ov-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  top: 73%;
  left: 63%;
}

/* Benefits */
.benefit-card { border-top: 3px solid transparent; }
.benefit-card:nth-child(1) { border-top-color: var(--terracotta); }
.benefit-card:nth-child(2) { border-top-color: var(--gold); }
.benefit-card:nth-child(3) { border-top-color: var(--deep-blue); }
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12,30,45,0.08);
}
.benefit-list { list-style: none; }
.benefit-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(12,30,45,0.06);
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before { content: '→'; color: var(--terracotta); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.benefit-list li strong { color: var(--deep-blue); }

/* CTA strip */
.cta-strip {
  background: var(--terracotta);
  padding: 60px 0;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-strip .sub { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--terracotta); }
.btn-white:hover { background: var(--cream); }

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(12,30,45,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(12,30,45,0.1); }
.card--accent-bottom { border-bottom: 3px solid var(--terracotta); }
.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
}
.card--dark p { color: rgba(247,242,235,0.7); }
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(190,90,46,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--terracotta);
}

/* --- GRID LAYOUTS --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --- SECTION HEADER --- */
.section-header { margin-bottom: 56px; }
.section-header h2 { max-width: 21ch; }
.section-header p { max-width: 55ch; margin-top: 16px; font-size: 1.05rem; }

/* --- STEP / STEPPER --- */
.stepper { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-block: 32px;
  border-bottom: 1px solid rgba(12,30,45,0.08);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 { margin-bottom: 8px; font-size: 1.3rem; }
.step-content p { color: var(--text-muted); }

/* --- PRICING TABS --- */
.tabs { display: flex; gap: 4px; margin-bottom: 32px; }
.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(12,30,45,0.15);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(12,30,45,0.08);
  font-size: 0.9rem;
}

.price-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(190,90,46,0.05);
}
.price-table td:last-child { font-weight: 600; color: var(--deep-blue); }

@media (max-width: 680px) {
  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tab-btn {
    padding: 9px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .price-table {
    width: 100%;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 10px 6px;
    font-size: 0.68rem;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .price-table th {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .price-table td:last-child {
    font-size: 0.72rem;
  }

  #tab-onsite .price-table th:nth-child(1),
  #tab-onsite .price-table td:nth-child(1),
  #tab-blended .price-table th:nth-child(1),
  #tab-blended .price-table td:nth-child(1) {
    width: 34%;
  }

  #tab-onsite .price-table th:nth-child(2),
  #tab-onsite .price-table td:nth-child(2),
  #tab-onsite .price-table th:nth-child(3),
  #tab-onsite .price-table td:nth-child(3),
  #tab-onsite .price-table th:nth-child(4),
  #tab-onsite .price-table td:nth-child(4),
  #tab-blended .price-table th:nth-child(2),
  #tab-blended .price-table td:nth-child(2),
  #tab-blended .price-table th:nth-child(3),
  #tab-blended .price-table td:nth-child(3),
  #tab-blended .price-table th:nth-child(4),
  #tab-blended .price-table td:nth-child(4) {
    width: 22%;
  }
}
/* --- INCLUDES GRID --- */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.include-item h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.include-item ul { list-style: none; }
.include-item ul li {
  padding: 5px 0 5px 16px;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(12,30,45,0.05);
}
.include-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.75rem;
}

/* --- TAG CLOUD --- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid rgba(12,30,45,0.15);
  border-radius: 100px;
  color: var(--text-body);
  transition: all var(--transition);
}
.tag:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* --- VIDEO GRID --- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.video-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep-blue);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FORM --- */
.form-section { background: var(--white); border-radius: 12px; padding: clamp(32px, 5vw, 60px); box-shadow: 0 4px 24px rgba(12,30,45,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(12,30,45,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep-blue);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-legend {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(190,90,46,0.2);
}
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 7px 14px;
  border: 1.5px solid rgba(12,30,45,0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.checkbox-label:has(input:checked) { border-color: var(--terracotta); background: rgba(190,90,46,0.06); }
.checkbox-label input { accent-color: var(--terracotta); }

/* --- ACCORDION --- */
.accordion { border-top: 1px solid rgba(12,30,45,0.1); }
.accordion-item { border-bottom: 1px solid rgba(12,30,45,0.1); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep-blue);
  text-align: left;
  gap: 16px;
}
.accordion-trigger .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 20px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p, .accordion-body ul { color: var(--text-muted); font-size: 0.92rem; }
.accordion-body ul { list-style: none; margin-top: 8px; }
.accordion-body ul li { padding: 4px 0 4px 16px; position: relative; }
.accordion-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--terracotta); font-size: 0.7rem; }

/* --- BLOCKQUOTE --- */
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  position: relative;
  padding-left: 32px;
}
blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.5;
  font-style: normal;
}
blockquote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
  margin-top: 16px;
}

/* --- FOOTER --- */
footer {
  background: var(--deep-blue);
  color: rgba(247,242,235,0.6);
  padding-block: 60px 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-weight: 700; font-size: 1.3rem; color: var(--cream); letter-spacing: 0.04em; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--terracotta); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(247,242,235,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
}
.footer-bottom span:last-child {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.35s; opacity: 0; }
.delay-4 { animation-delay: 0.5s; opacity: 0; }

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,30,45,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 520px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(12,30,45,0.2);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 8px;
}
.modal h3 { margin-bottom: 4px; }
.modal .sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }

/* --- MARQUEE --- */
.marquee-section {
  background: var(--deep-blue);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 20px 0;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 48px;
  padding-right: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  animation: scroll-marquee 40s linear infinite;
}
.marquee-star {
  opacity: 0.5;
}
@keyframes scroll-marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
  .marquee-content {
    font-size: 1.4rem;
    gap: 32px;
    padding-right: 32px;
  }
}

/* INCLUDES GRID — collapsible cards */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.include-item {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(12,30,45,0.07);
  border-top: 3px solid var(--terracotta);
}

.include-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.include-item ul {
  list-style: none;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease;
  margin-top: 0;
}

.include-item ul > * {
  overflow: hidden;
}

.include-item.is-open ul {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.include-item ul li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid rgba(12,30,45,0.06);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.include-item ul li:last-child {
  border-bottom: none;
}

.include-item ul li {
  padding-left: 1.2em;
  position: relative;
}

.include-item ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Toggle button + note */
.includes-toggle-wrap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.includes-asterisk-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
}

.add-ons-note {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- FIELDS & PROJECTS SPECIFIC STYLES --- */

.label--gold {
  color: var(--gold);
}

.title--cream {
  color: var(--cream);
}

.fields-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
}

.fields-col-title--terracotta {
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
}

.fields-col-title--gold {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.fields-col-desc {
  color: rgba(247, 242, 235, 0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.tag--light {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(247, 242, 235, 0.7);
}

.tag--gold {
  border-color: rgba(201, 145, 61, 0.3);
  color: rgba(247, 242, 235, 0.7);
}

.fields-footer {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fields-footer-text {
  color: rgba(247, 242, 235, 0.65);
  max-width: 72ch;
}

/* PAGE HEADER */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--deep-blue);
  background-image:
    repeating-linear-gradient(-45deg,rgba(255,255,255,0.025) 0px,rgba(255,255,255,0.025) 1px,transparent 1px,transparent 18px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: -20%;
  width: 500px; height: 500px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.08;
}

.page-hero h1 {
  color: var(--cream);
}

.page-hero p {
  color: rgba(247,242,235,0.7);
  max-width: 55ch;
  margin-top: 20px;
  font-size: 1.05rem;
}

.page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 55ch) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  margin-top: 0;
}

.page-hero-text p:first-child {
  margin-top: 20px;
}

.page-hero-text p + p {
  margin-top: 20px;
}

.page-hero-image {
  align-self: start;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

/* ELIGIBILITY */
.eligibility-box {
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--terracotta);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 4px 24px rgba(12,30,45,0.08);
}
.eligibility-box ul { list-style: none; }
.eligibility-box ul li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(12,30,45,0.06);
  font-size: 0.9rem;
  color: var(--text-body);
  align-items: flex-start;
}
.eligibility-box ul li:last-child { border-bottom: none; }
.eligibility-box ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* FORMAT CARDS */
.format-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12,30,45,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.format-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(12,30,45,0.12); }
.format-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(12,30,45,0.07);
}
.format-card:nth-child(1) .format-card-header { background: var(--deep-blue); }
.format-card:nth-child(2) .format-card-header { background: var(--terracotta); }
.format-card:nth-child(3) .format-card-header { background: var(--gold); }
.format-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.format-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}
.format-card-body { padding: 24px 28px; }
.format-card-body p { font-size: 0.9rem; color: var(--text-body); }

/* MODE CARDS */
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mode-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(12,30,45,0.06);
  border-top: 3px solid var(--terracotta);
}
.mode-card:last-child { border-top-color: var(--gold); }
.mode-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mode-card .tag-line {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(12,30,45,0.07);
}

/* LOGISTICS */
.logistics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.logistics-box {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(12,30,45,0.06);
  text-align: center;
}
.logistics-box .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--terracotta);
  line-height: 1;
}
.logistics-box .unit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.logistics-box p { margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); }

/* DEPOSIT NOTE */
.deposit-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(190,90,46,0.06);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--text-body);
}

/* FIELDS */
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fields-col h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--terracotta);
}

/* ARGENTINA SECTION */
.argentina-hero {
  background: var(--deep-blue);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.argentina-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(190,90,46,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 80%, rgba(201,145,61,0.1) 0%, transparent 60%);
}
.argentina-hero .container { position: relative; }
.argentina-hero h2 { color: var(--cream); }
.argentina-hero .lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(247,242,235,0.8);
  font-style: italic;
  max-width: 65ch;
  margin-top: 20px;
  line-height: 1.5;
}
.argentina-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.arg-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
}
.arg-feature-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.arg-feature p { font-size: 0.88rem; color: rgba(247,242,235,0.7); }

/* --- NUEVA ESTRUCTURA DE BUENOS AIRES FULL WIDTH --- */

.ba-full-container {
  margin-top: 56px;
}

.ba-visual-full {
  width: 100%;
  background: linear-gradient(135deg, rgba(12, 30, 45, 0.72), rgba(190, 90, 46, 0.16));
  border-radius: 18px;
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  text-align: left;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 145, 61, 0.22);
  border-left: 4px solid var(--gold);
}

.resources-full-container {
  width: 100%;
}


.ba-visual-full h3 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.ba-subtitle-intro {
  color: rgba(247, 242, 235, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 62ch;
  margin: 0;
}

.ba-list-columns {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
  text-align: left;
}

.ba-list-columns li {
  color: rgba(247, 242, 235, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 242, 235, 0.12);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ba-list-columns li:first-child {
  border-top: 1px solid rgba(247, 242, 235, 0.12);
}

.ba-list-columns li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.ba-pride-remate {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--gold);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 30, 45, 0.12);
  line-height: 1.4;
}

.ba-resources-section {
  margin-top: 64px;
  padding-top: 48px;
}

@media (max-width: 768px) {
  .ba-visual-full {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  
  .ba-list-columns {
    grid-template-columns: 1fr;
  }
  
  .ba-pride-remate {
    font-size: 1.25rem;
  }
}

/* VIDEOS */

.ba-resources-section {
  margin-top: 64px;
  padding: 0;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding-bottom: 22px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(247, 242, 235, 0.12);
}
.resources-header .label {
    color: var(--gold);
}
.resources-header p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1;
    color: var(--gold);
    margin: 0;
}

.resource-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  background: rgba(247, 242, 235, 0.07);
  border: 1px solid rgba(247, 242, 235, 0.11);
  min-height: 100%;
  color: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(12, 30, 45, 0.12);
  border-color: rgba(190, 90, 46, 0.35);
}

.resource-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(12, 30, 45, 0.98), rgba(29, 75, 108, 0.86) 55%, rgba(190, 90, 46, 0.35)),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.035) 0px,
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 14px
    );
  overflow: hidden;
}

.resource-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.resource-type {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 30, 45, 0.58);
  padding: 8px 12px;
}

.resource-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(247, 242, 235, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--terracotta);
  margin-left: 3px;
}

.resource-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  flex: 1;
}

.resource-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.resource-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--cream);
  font-weight: 400;
}

.resource-card-footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 242, 235, 0.1);
  display: flex;
  justify-content: flex-end;
  color: var(--terracotta);
}

@media (max-width: 1100px) {
  .resource-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .resources-header {
    flex-direction: column;
    gap: 12px;
  }

  .resource-card-grid {
    grid-template-columns: 1fr;
  }
}

/* APPLY */
.apply-section { background: var(--cream-dark); }
.apply-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.apply-info h2 { margin-bottom: 16px; }
.apply-info p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }
.apply-notes { list-style: none; margin-top: 24px; }
.apply-notes li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(12,30,45,0.07);
  display: flex;
  gap: 10px;
}
.apply-notes li::before { content: '·'; color: var(--terracotta); font-size: 1.2rem; line-height: 1; }

/* PROGRAM STRUCTURE (unified mode + format) */
.structure-block { margin-bottom: 0; }
.structure-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.structure-step {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}
.structure-block-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.structure-block-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.structure-connector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}
.structure-connector-line {
  flex: 1;
  height: 1px;
  background: rgba(12,30,45,0.12);
}
.structure-connector-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-dark);
  border: 1px solid rgba(12,30,45,0.12);
  border-radius: 20px;
  padding: 6px 16px;
  white-space: nowrap;
}

.structure-header {
  margin-bottom: 56px;
}

.structure-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 55ch) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  margin-top: 24px;
}

.structure-header-copy h2 {
  max-width: 21ch;
}

.structure-header-copy p {
  max-width: 55ch;
  margin-top: 22px;
}

.structure-header-image {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.structure-header-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(12, 30, 45, 0.16);
}

@media (max-width: 900px) {
  .structure-header-grid {
    grid-template-columns: 1fr;
  }

  .structure-header-image {
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  .eligibility-box { grid-template-columns: 1fr; }
  .mode-grid { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr; }
  .fields-grid { grid-template-columns: 1fr; }
  .argentina-features { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .structure-step { font-size: 2rem; }
}

@media (max-width: 900px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .floating-badge {
    left: -16px;
    bottom: -16px;
    padding: 20px 24px;
  }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    background: var(--cream);
    padding: 18px 20px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(12, 30, 45, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(12, 30, 45, 0.06);
  }

  .nav-links .btn,
  .nav-links .btn-cta {
    width: fit-content;
    margin: 18px auto 0;
    padding: 12px 28px;
    border-bottom: none;
  }

  .nav-links .nav-contact {
    border: 1.5px solid var(--terracotta);
    border-radius: var(--radius);
    padding: 10px 22px;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    color: var(--terracotta);
    background: var(--cream);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  }

  .nav-links .nav-contact:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }

  .nav-toggle {
    display: flex;
  }

  .drop {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 10px;
  }

  .drop__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    background: rgba(12, 30, 45, 0.035);
    border: none;
    border-radius: 6px;
    box-shadow: none;
    padding: 0;
  }

  .drop a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 12px;
    font-size: 0.78rem;
    color: var(--deep-blue);
    border-bottom: 1px solid rgba(12, 30, 45, 0.06);
  }

  .drop a:last-child {
    border-bottom: none;
  }
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Balanced hero-to-section transition */
.section--flush-top { padding-top: 80px; }

/* QUOTE HERO */
.quote-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}
.quote-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(190,90,46,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(201,145,61,0.08) 0%, transparent 60%);
}
.quote-hero .container { position: relative; }
.quote-hero blockquote { max-width: 70ch; }

/* WHY SECTION */

.why-grid {
  display: grid; 
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}



.team-since-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--deep-blue);
}

/* STORY */
.story-body p { margin-bottom: 20px; font-size: 1rem; color: var(--text-body); line-height: 1.8; }
.story-pull {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terracotta);
  border-left: 3px solid var(--terracotta);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.4;
}

/* WHAT TO EXPECT */
.expect-section { background: var(--deep-blue); }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.expect-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px;
  transition: background var(--transition), border-color var(--transition);
}
.expect-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(190,90,46,0.4); }
.expect-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 12px; }
.expect-card p { color: rgba(247,242,235,0.65); font-size: 0.88rem; line-height: 1.75; }
.expect-card .icon-line {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* FINAL CTA */
.final-cta { text-align: center; padding-block: var(--section-pad); }
.final-cta h2 { max-width: 20ch; margin-inline: auto; }
.final-cta p { max-width: 50ch; margin-inline: auto; margin-top: 16px; color: var(--text-muted); }
.final-cta .btns { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

.expect-header h2 {
  max-width: 24ch;
}

.expect-header h2 span {
  display: block;
  color: inherit;
}

.expect-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.expect-grid--two .expect-card {
  padding: 40px;
}

.expect-intro {
  max-width: 760px;
  margin: -16px 0 48px;
}

.expect-intro p {
  color: rgba(247, 242, 235, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.expect-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .expect-grid,
  .expect-grid--two {
    grid-template-columns: 1fr;
  }
}

.final-cta-contact {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(12, 30, 45, 0.1);
}

.final-cta-contact p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-align: center;
}

@media (max-width: 680px) {
  html,
  body {
    min-height: 100%;
    background-color: var(--cream);
  }

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
}
/* Apply step tabs */
.apply-intro { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 32px; }
.apply-step-tabs { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 0; }
.apply-step-btn { flex: 1; min-width: 120px; padding: 14px 16px; border: 1.5px solid var(--border); border-right: none; background: transparent; color: var(--text-muted); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; cursor: pointer; transition: all 0.2s; text-align: left; line-height: 1.4; }
.apply-step-btn:last-child { border-right: 1.5px solid var(--border); }
.apply-step-btn.active { border-bottom-color: var(--cream-dark); background: var(--cream-dark); color: var(--text-dark); }
.apply-step-btn:not(.active):hover { background: var(--cream); color: var(--text-dark); }
.apply-step-panel { display: none; padding: 36px 40px; border: 1.5px solid var(--border); border-top: none; background: var(--cream-dark); }
.apply-step-panel.active { display: block; }
.apply-step-panel h3 { margin-bottom: 12px; font-size: 1.3rem; }
.apply-step-panel p { color: var(--text-muted); font-size: 0.92rem; max-width: 640px; }
@media (max-width: 768px) {
  .apply-step-tabs { flex-direction: column; }
  .apply-step-btn { border-right: 1.5px solid var(--border); border-bottom: none; }
  .apply-step-btn:last-child { border-bottom: 1.5px solid var(--border); }
  .apply-step-btn.active { border-bottom-color: var(--border); border-right-color: var(--border); }
  .apply-step-panel { padding: 24px; }
}

@media (max-width: 900px) {
  .page-hero-content {
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    margin-top: 12px;
  }
}

/* Apply accordion step numbers */
.acc-trigger-label { display: flex; align-items: center; gap: 20px; }
.acc-step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta); opacity: 0.5; line-height: 1; flex-shrink: 0; }

.apply-bottom--stacked {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(12,30,45,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.apply-bottom--stacked .apply-notes {
  margin-top: 0;
  width: 100%;
  max-width: 760px;
}

.apply-journey-btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.apply-bottom--stacked .apply-notes {
  margin-top: 0;
  width: 100%;
  max-width: 760px;
}

.apply-journey-btn:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(190,90,46,0.18);
}

@media (max-width: 768px) {
  .apply-journey-btn {
    width: 100%;
  }
}

.organizations-intro-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 52ch) minmax(360px, 520px);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin-bottom: 56px;
}

.organizations-intro-text {
  max-width: 52ch;
}

.organizations-intro-visual {
  width: 100%;
  max-width: 520px;
}

.organizations-intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .organizations-intro-with-photo {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .organizations-intro-text {
    max-width: 100%;
    width: 100%;
  }

  .organizations-intro-text p {
    max-width: 100%;
  }

  .organizations-intro-visual {
    width: 100%;
    max-width: 100%;
  }

  .organizations-intro-visual img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    gap: 0;
    border-bottom: 1px solid rgba(12, 30, 45, 0.1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    padding: 18px 20px 36px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(12, 30, 45, 0.06);
  }

  .drop {
    position: static;
    display: flex !important;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .drop__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    background: rgba(12, 30, 45, 0.035);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 0;
  }

  .drop a {
    padding: 14px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(12, 30, 45, 0.08);
    font-size: 0.9rem;
  }

  .drop a:last-child {
    border-bottom: none;
  }

  .nav-contact,
  .btn-cta {
    width: fit-content;
    margin: 0 auto;
  }

  .nav-links .btn-cta {
    margin-bottom: 36px;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .overview-content,
  .program-overview-content,
  .overview-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .overview-visual,
  .program-overview-visual {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    margin: 0 auto;
  }

  .overview-text,
  .program-overview-text {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .overview-text p,
  .program-overview-text p {
    max-width: 100%;
  }
}

/* =============================================
   SUR — Photo Treatment
   Main editorial images
   ============================================= */

/* Base común */
.sur-photo {
  position: relative;
  overflow: hidden;
}

.sur-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay general */
.sur-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Index badge arriba de foto + overlay */
.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper .photo-grad {
  position: relative;
  z-index: 1;
}

.floating-badge {
  z-index: 5;
}

.floating-badge-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}

/* 01 — Home hero photo: /fotohome.jpg */
.photo-grad.sur-photo--home {
  box-shadow: 0 28px 70px rgba(12, 30, 45, 0.16);
}

.photo-grad.sur-photo--home > img {
  filter: brightness(0.90) contrast(1.14) saturate(0.88) sepia(0.10) !important;
}

.photo-grad.sur-photo--home::after {
  background: linear-gradient(
    145deg,
    rgba(12, 30, 45, 0.12) 0%,
    rgba(190, 90, 46, 0.10) 48%,
    rgba(201, 145, 61, 0.11) 100%
  );
}

/* 02 — Organizations photo: /fotoorganizations.png */
.organizations-intro-visual.sur-photo--organizations {
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(12, 30, 45, 0.14);
}

.organizations-intro-visual.sur-photo--organizations > img {
  border-radius: 18px;
  filter: brightness(0.92) contrast(1.12) saturate(0.87) sepia(0.09) !important;
}

.organizations-intro-visual.sur-photo--organizations::after {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(12, 30, 45, 0.10) 0%,
    rgba(190, 90, 46, 0.08) 52%,
    rgba(201, 145, 61, 0.08) 100%
  );
}

/* 03 — Program hero photo: /primerfotoprograma.png */
.page-hero-image.sur-photo--program-hero {
  border-radius: 18px;
  overflow: hidden;
}

.page-hero-image.sur-photo--program-hero > img {
  filter: brightness(0.90) contrast(1.16) saturate(0.82) sepia(0.13) !important;
}

.page-hero-image.sur-photo--program-hero::after {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(168, 111, 70, 0.15) 0%,
    rgba(12, 30, 45, 0.10) 55%,
    rgba(12, 30, 45, 0.14) 100%
  );
}

/* 04 — Program structure photo: /segundafotoprograma.png */
.structure-header-image.sur-photo--structure {
  border-radius: 18px;
  overflow: hidden;
}

.structure-header-image.sur-photo--structure > img {
  filter: brightness(0.90) contrast(1.13) saturate(0.86) sepia(0.10) !important;
}

.structure-header-image.sur-photo--structure::after {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(12, 30, 45, 0.11) 0%,
    rgba(190, 90, 46, 0.08) 52%,
    rgba(201, 145, 61, 0.09) 100%
  );
}

/* =============================================
   ABOUT — Team Photo Final
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(56px, 7vw, 88px);
  align-items: center;
}

.why-visual {
  align-self: center;
}

.team-photo-card--image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: none;
  box-shadow: 0 22px 52px rgba(12, 30, 45, 0.12);
}

.team-photo-card--image::before {
  display: none !important;
  content: none !important;
}

.team-photo-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
  border-radius: 18px;
  filter: none !important;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-photo-card--image {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}.team-photo-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  border-radius: 18px;
}