/*
 * Intipallana Release Visual 1 · Home architecture pilot.
 * V1 establishes structure and hierarchy. V2 refinements are scoped below.
 * Local environment only.
 */

.inti-home-pilot {
  --inti-home-shell: 1200px;
  --inti-home-gutter: clamp(18px, 4vw, 32px);
  --inti-home-section: clamp(64px, 8vw, 112px);
  --inti-home-radius: 22px;
  --inti-home-shadow: 0 18px 50px rgba(48, 35, 31, .09);
}

.inti-home-pilot #content > .ast-container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.inti-home-pilot #primary {
  width: 100%;
  margin: 0;
  padding: 0;
}

.inti-home-pilot .inti-home,
.inti-home-pilot .inti-home *,
.inti-home-pilot .inti-home *::before,
.inti-home-pilot .inti-home *::after {
  box-sizing: border-box;
}

.inti-home-pilot .inti-home {
  overflow: clip;
  color: var(--inti-ink);
  background: var(--inti-paper);
  font-family: "Karla", "Segoe UI", Arial, sans-serif;
}

.inti-home-pilot .inti-home-shell {
  width: min(100%, calc(var(--inti-home-shell) + (2 * var(--inti-home-gutter))));
  margin-inline: auto;
  padding-inline: var(--inti-home-gutter);
}

.inti-home-pilot .inti-home h1,
.inti-home-pilot .inti-home h2,
.inti-home-pilot .inti-home h3,
.inti-home-pilot .inti-home p,
.inti-home-pilot .inti-home figure {
  margin-top: 0;
}

.inti-home-pilot .inti-home h1,
.inti-home-pilot .inti-home h2,
.inti-home-pilot .inti-home h3 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-wrap: balance;
}

.inti-home-pilot .inti-home p {
  color: inherit;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.72;
}

.inti-home-pilot .inti-home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inti-home-pilot .inti-home-media-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.inti-home-pilot .inti-home-eyebrow {
  margin-bottom: 16px;
  color: var(--inti-wine);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inti-home-pilot .inti-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.inti-home-pilot .inti-home-tools-actions {
  margin-block-start: clamp(24px, 3vw, 40px);
}

.inti-home-pilot .inti-home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.inti-home-pilot .inti-home-button:hover,
.inti-home-pilot .inti-home-button:focus-visible {
  transform: translateY(-2px);
}

.inti-home-pilot .inti-home-button--primary,
.inti-home-pilot .inti-home-button--wine {
  border-color: var(--inti-wine);
  background: var(--inti-wine);
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-button--primary:hover,
.inti-home-pilot .inti-home-button--primary:focus-visible,
.inti-home-pilot .inti-home-button--wine:hover,
.inti-home-pilot .inti-home-button--wine:focus-visible {
  border-color: var(--inti-wine-dark);
  background: var(--inti-wine-dark);
  color: #fff;
}

.inti-home-pilot .inti-home-button--paper {
  border-color: var(--inti-paper);
  background: var(--inti-paper);
  color: var(--inti-wine-dark);
}

.inti-home-pilot .inti-home-button--paper:hover,
.inti-home-pilot .inti-home-button--paper:focus-visible {
  background: var(--inti-cream);
  color: var(--inti-ink);
}

.inti-home-pilot .inti-home-button--whatsapp {
  border-color: var(--inti-whatsapp);
  background: var(--inti-whatsapp);
  color: #fff;
}

.inti-home-pilot .inti-home-button--whatsapp:hover,
.inti-home-pilot .inti-home-button--whatsapp:focus-visible {
  border-color: #0e6d40;
  background: #0e6d40;
  color: #fff;
}

.inti-home-pilot .inti-home-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--inti-wine);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
  text-underline-offset: 5px;
}

.inti-home-pilot .inti-home-link:hover,
.inti-home-pilot .inti-home-link:focus-visible {
  color: var(--inti-wine-dark);
}

/* 01 · Stable identity hero */
.inti-home-pilot .inti-home-hero {
  padding-block: clamp(44px, 5vw, 76px);
  border-bottom: 1px solid var(--inti-border);
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 50, 131, .07), transparent 24rem),
    var(--inti-paper);
}

.inti-home-pilot .inti-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.inti-home-pilot .inti-home-hero__content {
  padding-block: 16px;
}

.inti-home-pilot .inti-home-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.25vw, 5.75rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.inti-home-pilot .inti-home-hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--inti-muted);
}

.inti-home-pilot .inti-home-hero__media {
  position: relative;
  min-height: 590px;
  margin-bottom: 0;
}

.inti-home-pilot .inti-home-hero__image {
  border-radius: var(--inti-home-radius);
  box-shadow: var(--inti-home-shadow);
  object-position: 50% 48%;
}

.inti-home-pilot .inti-home-hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 270px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 250, 242, .55);
  border-radius: 12px;
  background: rgba(255, 250, 242, .92);
  color: var(--inti-muted);
  font-size: .78rem;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

/* 02 · Primer Brote */
.inti-home-pilot .inti-home-brote {
  padding-block: var(--inti-home-section);
  background: var(--inti-cream);
}

.inti-home-pilot .inti-home-brote__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.inti-home-pilot .inti-home-brote__media {
  min-height: 500px;
}

.inti-home-pilot .inti-home-brote__image {
  border-radius: var(--inti-home-radius);
  box-shadow: var(--inti-home-shadow);
  object-position: 50% 45%;
}

.inti-home-pilot .inti-home-brote h2,
.inti-home-pilot .inti-home-section-heading h2,
.inti-home-pilot .inti-home-people h2,
.inti-home-pilot .inti-home-closing h2 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 4vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.inti-home-pilot .inti-home-brote__intro {
  margin-bottom: 24px;
  color: var(--inti-muted);
}

.inti-home-pilot .inti-home-brote__signals {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.inti-home-pilot .inti-home-brote__signals li {
  position: relative;
  padding-left: 28px;
  color: var(--inti-ink);
  font-weight: 700;
  line-height: 1.45;
}

.inti-home-pilot .inti-home-brote__signals li::before {
  position: absolute;
  top: .55em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--inti-magenta);
  content: "";
}

/* 03 · One current proposal */
.inti-home-pilot .inti-home-now {
  padding-block: var(--inti-home-section);
  background: var(--inti-paper);
}

.inti-home-pilot .inti-home-now__card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 530px;
  overflow: hidden;
  border-radius: calc(var(--inti-home-radius) + 2px);
  background: var(--inti-wine-dark);
  box-shadow: var(--inti-home-shadow);
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-now__media {
  min-height: 530px;
}

.inti-home-pilot .inti-home-now__image {
  object-position: 48% 48%;
}

.inti-home-pilot .inti-home-now__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
}

.inti-home-pilot .inti-home-now .inti-home-eyebrow {
  color: #efb5c8;
}

.inti-home-pilot .inti-home-now h2 {
  margin-bottom: 22px;
  color: var(--inti-paper);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.inti-home-pilot .inti-home-now__content > p:not(.inti-home-eyebrow) {
  margin-bottom: 20px;
  color: rgba(255, 250, 242, .82);
}

.inti-home-pilot .inti-home-now__price {
  margin-bottom: 26px;
  color: var(--inti-paper);
  font-size: 1.15rem;
  font-weight: 800;
}

.inti-home-pilot .inti-home-now__price :is(.amount, .woocommerce-Price-amount) {
  color: inherit;
}

/* 04 · Paths */
.inti-home-pilot .inti-home-paths {
  padding-block: var(--inti-home-section);
  border-block: 1px solid var(--inti-border);
  background: #f8efe3;
}

.inti-home-pilot .inti-home-section-heading {
  width: min(100%, 760px);
  margin: 0 auto clamp(40px, 6vw, 70px);
  text-align: center;
}

.inti-home-pilot .inti-home-section-heading > p:last-child {
  color: var(--inti-muted);
}

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

.inti-home-pilot .inti-home-path {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--inti-border);
  border-radius: var(--inti-home-radius);
  background: var(--inti-paper);
  box-shadow: 0 10px 30px rgba(48, 35, 31, .05);
}

.inti-home-pilot .inti-home-path__media {
  min-height: 285px;
  overflow: hidden;
}

.inti-home-pilot .inti-home-path__image {
  transition: transform .5s ease;
}

.inti-home-pilot .inti-home-path:hover .inti-home-path__image {
  transform: scale(1.025);
}

.inti-home-pilot .inti-home-path__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
}

.inti-home-pilot .inti-home-path h3 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
  line-height: 1;
}

.inti-home-pilot .inti-home-path p {
  margin-bottom: 16px;
  color: var(--inti-muted);
  font-size: .95rem;
  line-height: 1.55;
}

/* 05 · People */
.inti-home-pilot .inti-home-people {
  padding-block: var(--inti-home-section);
  background: var(--inti-paper);
}

.inti-home-pilot .inti-home-people__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.inti-home-pilot .inti-home-people__profiles {
  display: grid;
  gap: 24px;
  margin: 30px 0 22px;
}

.inti-home-pilot .inti-home-people__profiles > div {
  padding-top: 20px;
  border-top: 1px solid var(--inti-border);
}

.inti-home-pilot .inti-home-people__profiles h3 {
  margin-bottom: 7px;
  color: var(--inti-wine-dark);
  font-family: "Karla", "Segoe UI", Arial, sans-serif;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.inti-home-pilot .inti-home-people__profiles p {
  margin-bottom: 0;
  color: var(--inti-muted);
  font-size: .98rem;
  line-height: 1.62;
}

.inti-home-pilot .inti-home-people__media {
  margin-bottom: 0;
}

.inti-home-pilot .inti-home-people__image {
  min-height: 560px;
  border-radius: var(--inti-home-radius);
  box-shadow: var(--inti-home-shadow);
  object-position: 50% 44%;
}

.inti-home-pilot .inti-home-people__media figcaption {
  max-width: 560px;
  margin: 12px 6px 0;
  color: var(--inti-muted);
  font-size: .78rem;
  line-height: 1.45;
}

/* 06 · Alive */
.inti-home-pilot .inti-home-alive {
  padding-block: var(--inti-home-section);
  background: var(--inti-ink);
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-alive .inti-home-section-heading {
  margin-inline: 0;
  text-align: left;
}

.inti-home-pilot .inti-home-alive .inti-home-eyebrow {
  color: #efb5c8;
}

.inti-home-pilot .inti-home-alive .inti-home-section-heading > p:last-child {
  color: rgba(255, 250, 242, .72);
}

.inti-home-pilot .inti-home-alive__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}

.inti-home-pilot .inti-home-alive__item {
  position: relative;
  min-height: 430px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, .15);
  border-radius: var(--inti-home-radius);
}

.inti-home-pilot .inti-home-alive__image {
  position: absolute;
  inset: 0;
}

.inti-home-pilot .inti-home-alive__item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(32, 20, 17, .9));
  content: "";
}

.inti-home-pilot .inti-home-alive__item figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 5px;
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-alive__item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.inti-home-pilot .inti-home-alive__item span {
  color: rgba(255, 250, 242, .78);
  font-size: .86rem;
}

/* 07 · Closing */
.inti-home-pilot .inti-home-closing {
  padding-block: clamp(58px, 7vw, 94px);
  background: var(--inti-wine-dark);
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-closing__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px 64px;
}

.inti-home-pilot .inti-home-closing .inti-home-eyebrow {
  color: #efb5c8;
}

.inti-home-pilot .inti-home-closing h2 {
  margin-bottom: 12px;
  color: var(--inti-paper);
}

.inti-home-pilot .inti-home-closing p:not(.inti-home-eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, .76);
}

@media (max-width: 1100px) {
  .inti-home-pilot .inti-home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
    gap: 46px;
  }

  .inti-home-pilot .inti-home-hero h1 {
    font-size: clamp(3rem, 5.5vw, 4.6rem);
  }

  .inti-home-pilot .inti-home-hero__media {
    min-height: 520px;
  }

  .inti-home-pilot .inti-home-path {
    grid-template-columns: 40% minmax(0, 1fr);
  }

  .inti-home-pilot .inti-home-path__content {
    padding: 26px;
  }

  .inti-home-pilot .inti-home-path .inti-home-link {
    font-size: .82rem;
  }
}

@media (max-width: 921px) {
  .inti-home-pilot {
    --inti-home-section: clamp(58px, 8vw, 82px);
  }

  .inti-home-pilot .inti-home-hero__grid,
  .inti-home-pilot .inti-home-brote__grid,
  .inti-home-pilot .inti-home-now__card,
  .inti-home-pilot .inti-home-people__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .inti-home-pilot .inti-home-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

  .inti-home-pilot .inti-home-hero__media,
  .inti-home-pilot .inti-home-brote__media,
  .inti-home-pilot .inti-home-now__media,
  .inti-home-pilot .inti-home-people__image {
    min-height: 460px;
  }

  .inti-home-pilot .inti-home-now__card {
    gap: 0;
  }

  .inti-home-pilot .inti-home-paths__grid {
    gap: 18px;
  }

  .inti-home-pilot .inti-home-path {
    grid-template-columns: 1fr;
  }

  .inti-home-pilot .inti-home-path__media {
    min-height: 220px;
  }

  .inti-home-pilot .inti-home-alive__grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .inti-home-pilot .inti-home-alive__item:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .inti-home-pilot .inti-home-closing__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .inti-home-pilot {
    --inti-home-gutter: 18px;
    --inti-home-radius: 18px;
  }

  .inti-home-pilot .inti-home p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .inti-home-pilot .inti-home-hero {
    padding-block: 38px 50px;
  }

  .inti-home-pilot .inti-home-hero__grid,
  .inti-home-pilot .inti-home-brote__grid,
  .inti-home-pilot .inti-home-now__card,
  .inti-home-pilot .inti-home-people__grid {
    grid-template-columns: 1fr;
  }

  .inti-home-pilot .inti-home-hero__grid {
    gap: 30px;
  }

  .inti-home-pilot .inti-home-hero__content {
    padding-block: 0;
  }

  .inti-home-pilot .inti-home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.58rem, 12vw, 3.55rem);
    line-height: .98;
  }

  .inti-home-pilot .inti-home-hero__lead {
    margin-bottom: 22px;
  }

  .inti-home-pilot .inti-home-hero__media {
    min-height: 275px;
  }

  .inti-home-pilot .inti-home-hero__media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .inti-home-pilot .inti-home-brote__grid,
  .inti-home-pilot .inti-home-people__grid {
    gap: 32px;
  }

  .inti-home-pilot .inti-home-brote__media {
    min-height: 270px;
  }

  .inti-home-pilot .inti-home-brote h2,
  .inti-home-pilot .inti-home-section-heading h2,
  .inti-home-pilot .inti-home-people h2,
  .inti-home-pilot .inti-home-closing h2 {
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .inti-home-pilot .inti-home-now {
    padding-inline: 0;
  }

  .inti-home-pilot .inti-home-now .inti-home-shell {
    padding-inline: 0;
  }

  .inti-home-pilot .inti-home-now__card {
    border-radius: 0;
  }

  .inti-home-pilot .inti-home-now__media {
    min-height: 330px;
  }

  .inti-home-pilot .inti-home-now__content {
    padding: 38px var(--inti-home-gutter) 46px;
  }

  .inti-home-pilot .inti-home-now h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .inti-home-pilot .inti-home-section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .inti-home-pilot .inti-home-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .inti-home-pilot .inti-home-path {
    min-height: 0;
    border-radius: 16px;
  }

  .inti-home-pilot .inti-home-path__media {
    min-height: 150px;
  }

  .inti-home-pilot .inti-home-path__content {
    justify-content: flex-start;
    padding: 18px 16px 20px;
  }

  .inti-home-pilot .inti-home-path h3 {
    font-size: 1.62rem;
  }

  .inti-home-pilot .inti-home-path p {
    margin-bottom: 8px;
    font-size: .82rem;
  }

  .inti-home-pilot .inti-home-path .inti-home-link {
    min-height: 40px;
    font-size: .78rem;
  }

  .inti-home-pilot .inti-home-people__content {
    order: 1;
  }

  .inti-home-pilot .inti-home-people__media {
    order: 0;
  }

  .inti-home-pilot .inti-home-people__image {
    min-height: 340px;
  }

  .inti-home-pilot .inti-home-alive__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .inti-home-pilot .inti-home-alive__item,
  .inti-home-pilot .inti-home-alive__item:last-child {
    min-height: 310px;
  }

  .inti-home-pilot .inti-home-alive__item--large {
    grid-column: 1 / -1;
  }

  .inti-home-pilot .inti-home-alive__item:last-child {
    grid-column: auto;
  }

  .inti-home-pilot .inti-home-alive__item figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .inti-home-pilot .inti-home-alive__item strong {
    font-size: 1.6rem;
  }

  .inti-home-pilot .inti-home-actions {
    align-items: stretch;
  }

  .inti-home-pilot .inti-home-closing .inti-home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .inti-home-pilot .inti-home-hero h1 {
    font-size: 2.4rem;
  }

  .inti-home-pilot .inti-home-button {
    width: 100%;
  }

  .inti-home-pilot .inti-home-paths__grid,
  .inti-home-pilot .inti-home-alive__grid {
    grid-template-columns: 1fr;
  }

  .inti-home-pilot .inti-home-alive__item--large,
  .inti-home-pilot .inti-home-alive__item:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inti-home-pilot .inti-home-button,
  .inti-home-pilot .inti-home-path__image {
    transition-duration: .01ms;
  }
}

/*
 * V2 · tighter first encounter, earlier Primer Brote and calmer section
 * rhythm. The content architecture remains identical to V1.
 */
.inti-home-v2 {
  --inti-home-section: clamp(60px, 7vw, 94px);
}

.inti-home-v2 .inti-home-hero {
  padding-block: clamp(42px, 4.5vw, 64px);
}

.inti-home-v2 .inti-home-hero__grid {
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: clamp(40px, 5.5vw, 76px);
}

.inti-home-v2 .inti-home-hero h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 5.25vw, 5.35rem);
  line-height: .98;
}

.inti-home-v2 .inti-home-hero__lead {
  max-width: 610px;
  margin-bottom: 26px;
}

.inti-home-v2 .inti-home-hero__media {
  min-height: 530px;
}

.inti-home-v2 .inti-home-brote__media {
  min-height: 470px;
}

.inti-home-v2 .inti-home-now__card,
.inti-home-v2 .inti-home-now__media {
  min-height: 500px;
}

.inti-home-v2 .inti-home-paths__grid {
  gap: 20px;
}

.inti-home-v2 .inti-home-path {
  min-height: 264px;
}

.inti-home-v2 .inti-home-path__media {
  min-height: 264px;
}

.inti-home-v2 .inti-home-people__image {
  min-height: 520px;
}

.inti-home-v2 .inti-home-alive__item {
  min-height: 400px;
}

@media (max-width: 1100px) {
  .inti-home-v2 .inti-home-hero h1 {
    font-size: clamp(3.35rem, 5.5vw, 4.75rem);
  }
}

@media (max-width: 921px) and (min-width: 701px) {
  .inti-home-v2 .inti-home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
  }

  .inti-home-v2 .inti-home-hero h1 {
    font-size: clamp(3rem, 6.2vw, 4rem);
  }

  .inti-home-v2 .inti-home-hero__media,
  .inti-home-v2 .inti-home-brote__media,
  .inti-home-v2 .inti-home-now__media,
  .inti-home-v2 .inti-home-people__image {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .inti-home-v2 {
    --inti-home-section: 54px;
  }

  .inti-home-v2 .inti-home-hero {
    padding-block: 30px 38px;
  }

  .inti-home-v2 .inti-home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .inti-home-v2 .inti-home-hero__content,
  .inti-home-v2 .inti-home-hero__media {
    min-width: 0;
  }

  .inti-home-v2 .inti-home-hero h1 {
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 11.3vw, 3.15rem);
    line-height: .99;
  }

  .inti-home-v2 .inti-home-hero__lead {
    margin-bottom: 18px;
    line-height: 1.56;
  }

  .inti-home-v2 .inti-home-hero__media {
    min-height: 225px;
  }

  .inti-home-v2 .inti-home-hero__media figcaption {
    padding: 9px 12px;
    font-size: .72rem;
  }

  .inti-home-v2 .inti-home-brote__content {
    order: 0;
  }

  .inti-home-v2 .inti-home-brote__media {
    order: 1;
    min-height: 230px;
  }

  .inti-home-v2 .inti-home-brote__intro {
    margin-bottom: 18px;
  }

  .inti-home-v2 .inti-home-brote__signals {
    margin-bottom: 24px;
  }

  .inti-home-v2 .inti-home-now__media {
    min-height: 280px;
  }

  .inti-home-v2 .inti-home-now__content {
    padding-block: 32px 40px;
  }

  .inti-home-v2 .inti-home-path__media {
    min-height: 132px;
  }

  .inti-home-v2 .inti-home-path__content {
    padding: 16px 14px 18px;
  }

  .inti-home-v2 .inti-home-people__image {
    min-height: 300px;
  }

  .inti-home-v2 .inti-home-people__profiles {
    gap: 19px;
    margin-block: 24px 18px;
  }

  .inti-home-v2 .inti-home-alive__item,
  .inti-home-v2 .inti-home-alive__item:last-child {
    min-height: 260px;
  }

  .inti-home-v2 .inti-home-closing {
    padding-block: 54px;
  }
}

@media (max-width: 380px) {
  .inti-home-v2 .inti-home-hero h1 {
    font-size: 2.35rem;
  }

  .inti-home-v2 .inti-home-hero__media {
    min-height: 210px;
  }
}


/* Release R1 final mobile adjustments. */
.inti-home-pilot #inti-home-brote { scroll-margin-top: 96px; }
.inti-home-pilot .inti-home-now h2 small { color: inherit; font: inherit; }
@media (max-width: 700px) {
  .inti-home-pilot .inti-home-hero__eyebrow span { display: block; }
  .inti-home-pilot .inti-home-hero__eyebrow span.inti-home-hero__eyebrow-separator { display: none; }
  .inti-home-pilot .inti-home-now h2 > span,
  .inti-home-pilot .inti-home-now h2 > small { display: block; }
  .inti-home-pilot .inti-home-now h2 { font-size: clamp(1.875rem, 7.7vw, 2.1rem); line-height: 1.05; }
  .inti-home-pilot .inti-home-now h2 small { margin-top: .2rem; font-size: clamp(1.5rem, 6.4vw, 1.625rem); }
  .inti-home-pilot .inti-home-now__separator { display: none; }
  .inti-home-pilot #inti-home-tools .inti-home-path__media { min-height: 225px; height: 225px; }
  .inti-home-pilot #inti-home-tools .inti-home-path__image { width: 100%; height: 100%; object-fit: cover; }
  .inti-home-pilot #inti-home-tools .inti-home-path:first-child .inti-home-path__image { object-position: 50% 48%; }
}
@media (max-width: 380px) {
  .inti-home-pilot .inti-home-hero__eyebrow span { display: block; }
  .inti-home-pilot .inti-home-hero__eyebrow span.inti-home-hero__eyebrow-separator { display: none; }
}
