/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #f5f5f5;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

  --black: #080808;
  --black-soft: #101010;
  --graphite: #181818;

  --white: #ffffff;
  --off-white: #eaeaea;

  --gray: #9b9b9b;
  --gray-light: #c9c9c9;

  --red: #e10600;
  --red-dark: #a90000;

  --container: 1180px;

}


/* =====================================================
   GENERIC
===================================================== */

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section {
  padding: 120px 0;
}

.section-dark {
  background: #050505;
}

.section-muted {
  background: #111;
}

.eyebrow,
.section-eyebrow {

  margin-bottom: 24px;

  font-size:
    clamp(
      0.95rem,
      1.25vw,
      1.1rem
    );

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: #bdbdbd;
}

.eyebrow.red,
.section-eyebrow.red {
  color: var(--red);
}


h1,
h2,
h3,
h4 {
  line-height: 1.06;
}

h1,
h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
}

h1 {

  font-size:
    clamp(
      4rem,
      10vw,
      8.5rem
    );

  font-weight: 400;

}

h2 {

  margin-bottom: 30px;

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.8rem
    );

  font-weight: 400;

  letter-spacing: -0.03em;
}

h1 span,
h2 span {
  color: var(--red);
}

h3 {
  font-size: 1.7rem;
}

p {
  color: var(--gray-light);
}

.lead {

  font-size: 1.3rem;

  color: var(--white);
}

.section-heading {

  max-width: 820px;

  margin-bottom: 70px;
}

.section-heading.center {
  margin-inline: auto;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 58px;

  padding: 0 30px;

  border: 1px solid var(--red);

  background: var(--red);

  color: #fff;

  font-size: 0.83rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.09em;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {

  background: var(--red-dark);

  border-color: var(--red-dark);

  transform: translateY(-2px);
}

.btn:focus-visible,
.faq-question:focus-visible {

  outline: 3px solid #fff;

  outline-offset: 4px;
}

.btn-outline {

  background: transparent;

  border-color: #555;
}

.btn-outline:hover {

  border-color: #fff;

  background: #fff;

  color: #000;
}

.btn-outline-light {

  background: transparent;

  border-color: #555;
}

.btn-small {

  min-height: 44px;

  padding: 0 20px;

  font-size: 0.72rem;
}

.btn.full {
  width: 100%;
}


/* =====================================================
   HEADER
===================================================== */

.header {

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  background:
    rgba(0, 0, 0, 0.82);

  backdrop-filter:
    blur(16px);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.header-inner {

  min-height: 76px;

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 40px;
}

.brand {

  display: flex;

  align-items: baseline;

  gap: 8px;

  font-weight: 800;

  letter-spacing: 0.14em;
}

.brand small {
  color: var(--red);
}

.desktop-nav {

  display: flex;

  gap: 27px;

  font-size: 0.82rem;

  color: #bbb;
}

.desktop-nav a:hover {
  color: #fff;
}


/* =====================================================
   HERO
===================================================== */

.hero {

  min-height: 100vh;

  position: relative;

  display: flex;

  align-items: flex-end;

  padding:
    170px
    0
    100px;

  background:
    url("../assets/images/hero-santiago.jpg")
    center / cover
    no-repeat;
}

.hero-overlay {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      90deg,
      rgba(0,0,0,.94) 0%,
      rgba(0,0,0,.73) 42%,
      rgba(0,0,0,.14) 100%
    ),

    linear-gradient(
      0deg,
      rgba(0,0,0,.82),
      transparent 65%
    );
}

.hero-content {

  position: relative;

  z-index: 2;
}

.hero h1 {
  max-width: 900px;
}

.hero-description {

  max-width: 650px;

  margin-top: 30px;

  font-size: 1.16rem;
}

.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 40px;
}


/* =====================================================
   MANIFESTO
===================================================== */

.manifesto p {
  margin-bottom: 22px;
}


/* =====================================================
   POR QUE SANTIAGO
===================================================== */

.why-santiago {

  background: #080808;

  color: #fff;

  padding: 130px 0;
}

.why-santiago__grid {

  display: grid;

  grid-template-columns:
    minmax(0, .9fr)
    minmax(420px, 1.1fr);

  gap: 90px;

  align-items: center;
}

.why-santiago__content {
  max-width: 650px;
}

.why-santiago h2 {

  margin: 0;

  font-size:
    clamp(
      3rem,
      5vw,
      5.7rem
    );

  line-height: .98;
}

.why-santiago__intro {

  margin:
    42px
    0
    30px;

  color: #eaeaea;

  font-size: 1.2rem;

  line-height: 1.6;
}

.why-santiago__actions {

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 35px;
}

.why-santiago__actions span {

  position: relative;

  padding-left: 22px;

  color: #fff;

  font-size: 1.05rem;

  line-height: 1.5;
}

.why-santiago__actions span::before {

  content: "";

  position: absolute;

  left: 0;

  top: .72em;

  width: 8px;

  height: 2px;

  background:
    var(--red);
}

.why-santiago__text {

  max-width: 540px;

  margin:
    0
    0
    38px;

  color: #a9a9a9;

  font-size: 1.02rem;

  line-height: 1.75;
}

.why-santiago__final {

  padding-top: 28px;

  border-top:
    1px solid
    rgba(255,255,255,.12);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      1.65rem,
      2.4vw,
      2.4rem
    );

  line-height: 1.25;
}

.why-santiago__final strong {

  display: block;

  margin-top: 8px;

  color: var(--red);

  font-weight: 400;
}


/* =====================================================
   SLIDESHOW
===================================================== */

.why-santiago__slideshow {

  position: relative;

  min-height: 680px;

  margin: 0;

  overflow: hidden;

  background: #111;
}

.why-santiago__slideshow::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 3;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.02),
      rgba(0,0,0,.35)
    );

  pointer-events: none;
}

.why-santiago__slide {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform:
    scale(1.025);

  filter:
    saturate(.82)
    contrast(1.06);

  transition:
    opacity 1.15s ease,
    transform 6s ease;
}

.why-santiago__slide.active {

  opacity: 1;

  transform:
    scale(1);
}

.slideshow-status {

  position: absolute;

  left: 30px;

  right: 30px;

  bottom: 28px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 13px;

  color: #fff;

  font-size: .68rem;

  font-weight: 800;

  letter-spacing: .12em;
}

.slideshow-progress {

  position: relative;

  flex: 1;

  height: 1px;

  overflow: hidden;

  background:
    rgba(255,255,255,.35);
}

.slideshow-progress__bar {

  display: block;

  width: 0;

  height: 100%;

  background:
    var(--red);
}

.slideshow-progress__bar.animate {

  animation:
    slideshowProgress
    5s
    linear;
}

@keyframes slideshowProgress {

  from {
    width: 0;
  }

  to {
    width: 100%;
  }

}


/* =====================================================
   JOURNEY CARDS
===================================================== */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;

  align-items: stretch;
}

.journey-card {
  position: relative;

  padding: 50px;

  background: #111;

  border: 1px solid #282828;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.journey-card.featured {
  border-color: var(--red);
}

.journey-tag {

  position: absolute;

  top: 0;
  right: 0;

  background:
    var(--red);

  padding:
    9px
    16px;

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: .1em;
}

.journey-duration {

  color: var(--red);

  font-size: 1rem;

  font-weight: 800;

  letter-spacing: .15em;

  margin-bottom: 12px;

  text-transform: uppercase;
}

.journey-card h3 {

  font-family:
    Georgia,
    serif;

  font-size: 2.2rem;
}

.trail-period {

  display: flex;

  flex-direction: column;

  gap: 2px;

  margin:
    17px
    0
    28px;

  padding:
    16px
    0;

  border-top:
    1px solid #2b2b2b;

  border-bottom:
    1px solid #2b2b2b;
}

.trail-period span {

  color: #888;

  font-size: .76rem;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.trail-period strong {

  color: #fff;

  font-size: 1rem;
}

.included-title {

  margin-top: 35px;

  color: #fff;

  font-size: 1rem;
}

.check-list {

  list-style: none;

  margin:
    18px
    0
    32px;
}

.check-list li {

  padding:
    15px
    0;

  border-bottom:
    1px solid #282828;

  color: #ddd;

  line-height: 1.65;
}

.check-list li::before {

  content: "—";

  color: var(--red);

  margin-right: 10px;
}

.journey-price {
  margin-top: auto;
  padding-top: 42px;
  margin-bottom: 38px;
}

.journey-price > span {

  display: block;

  color: #999;

  font-size: .78rem;

  text-transform: uppercase;

  letter-spacing: .08em;
}

.journey-price strong {

  display: block;

  margin-top: 5px;

  font-size: 1.2rem;
}

.journey-price em {

  color: var(--red);

  font-size: 1.7rem;

  font-style: normal;
}

.journey-price p {

  margin-top: 3px;

  margin-bottom: 20px;

  font-size: .8rem;

  color: #777;
}

.installment-label {
  margin-top: 18px;
}

.contract-note {

  max-width: 800px;

  margin:
    30px
    auto
    0;

  text-align: center;

  font-size: .87rem;

  color: #888;
}


/* =====================================================
   PROCESS
===================================================== */

.journey-process {
  background: var(--red);
}

.journey-process h2 span,
.journey-process .eyebrow {
  color: #000;
}

.process-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 1px;

  background:
    rgba(0,0,0,.25);
}

.process-item {

  min-height: 380px;

  padding: 45px;

  background:
    var(--red);

  color: #fff;
}

.process-item p {

  color:
    rgba(255,255,255,.88);

  margin-top: 15px;
}

.process-number {

  display: block;

  margin-bottom: 48px;

  font-family:
    Georgia,
    serif;

  font-size: 3rem;

  color:
    rgba(0,0,0,.42);
}

.process-item h3 {

  margin-bottom: 18px;

  font-size: 2rem;
}


/* =====================================================
   GALERIA DINÂMICA
===================================================== */

.gallery-section {

  position: relative;

  width: 100%;

  overflow: hidden;

  background: #050505;

  border-top:
    5px solid
    var(--red);
}


.gallery-grid {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  grid-template-rows:
    280px 280px;

  gap: 5px;

  background: #050505;
}


/* =====================================================
   ITEM DA GALERIA
===================================================== */

.gallery-item {

  position: relative;

  margin: 0;

  overflow: hidden;

  background: #0a0a0a;

  isolation: isolate;
}


.gallery-item--large {

  grid-row:
    1 / span 2;
}


/* =====================================================
   FOTOS
===================================================== */

.gallery-photo {

  position: absolute;

  inset: 0;

  display: block;

  width: 100%;

  height: 100%;

  max-width: none;

  object-fit: cover;

  object-position: center;

  backface-visibility: hidden;

  will-change:
    opacity,
    transform;

  transition:

    opacity
    .45s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    ),

    transform
    1.8s
    ease;
}


.gallery-photo--active {

  z-index: 1;

  opacity: 1;

  transform:
    scale(1);
}


.gallery-photo--next {

  z-index: 2;

  opacity: 0;

  transform:
    scale(1.008);
}


.gallery-item.is-changing
.gallery-photo--next {

  opacity: 1;

  transform:
    scale(1);
}


.gallery-item.is-changing
.gallery-photo--active {

  transform:
    scale(1.006);
}


/* =====================================================
   TRATAMENTO VISUAL DA GALERIA
===================================================== */

.gallery-item::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 4;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,.08) 100%
    );
}


@media (hover: hover) and (pointer: fine) {

  .gallery-item:not(.is-changing):hover
  .gallery-photo--active {

    transform:
      scale(1.02);
  }

}


/* =====================================================
   COLUMNS
===================================================== */

.two-columns {

  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 80px;
}

.simple-list {

  list-style: none;
}

.simple-list li {

  padding:
    18px
    0;

  border-bottom:
    1px solid #292929;

  color: #ddd;
}

.simple-list li::before {

  content: "—";

  margin-right: 15px;

  color: #777;
}


/* =====================================================
   EQUIPMENT HIGHLIGHT
===================================================== */

.included-detail > p {

  margin-bottom: 30px;

  font-size: 1.06rem;

  line-height: 1.8;
}

.equipment-highlight {

  padding: 38px;

  border:
    1px solid #292929;

  background:
    #0d0d0d;
}

.equipment-highlight > span {

  display: block;

  margin-bottom: 14px;

  color: var(--red);

  font-size: .78rem;

  font-weight: 800;

  letter-spacing: .14em;
}

.equipment-highlight h3 {

  max-width: 520px;

  margin-bottom: 24px;

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(
      1.8rem,
      3vw,
      2.6rem
    );

  font-weight: 400;
}

.equipment-highlight p + p {
  margin-top: 14px;
}


/* =====================================================
   DAILY BUDGET
===================================================== */

.daily-budget-line strong {
  color: var(--red);
  font-weight: 700;
}


/* =====================================================
   GRAZI PROFILE
===================================================== */

.grazi-profile {

  display: grid;

  grid-template-columns:
    minmax(340px, .8fr)
    minmax(0, 1.2fr);

  gap: 80px;

  align-items: start;
}

.grazi-profile__image {

  position: sticky;

  top: 110px;

  min-height: 680px;

  overflow: hidden;

  background: #111;
}

.grazi-profile__image img {

  width: 100%;

  height: 100%;

  min-height: 680px;

  object-fit: cover;
}

.grazi-profile__content {

  max-width: 700px;
}

.grazi-profile__handle {

  color: var(--red);

  font-size: .84rem;

  font-weight: 700;

  letter-spacing: .08em;
}

.grazi-profile__content h3 {

  margin:
    8px
    0
    30px;

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(
      2.6rem,
      5vw,
      4.5rem
    );

  font-weight: 400;
}

.grazi-profile__content p {

  margin-bottom: 20px;

  font-size: 1.02rem;

  line-height: 1.8;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.testimonial {

  min-height: 350px;

  display: flex;

  flex-direction: column;

  justify-content:
    space-between;

  padding: 35px;

  border:
    1px solid #282828;

  background:
    #0d0d0d;
}

.testimonial p {

  color: #eee;

  font-family:
    Georgia,
    serif;

  font-size: 1.25rem;

  line-height: 1.45;
}

.testimonial footer {

  display: flex;

  flex-direction: column;

  margin-top: 40px;
}

.testimonial footer span {

  color: #777;

  font-size: .82rem;
}


/* =====================================================
   CHECKOUT
===================================================== */

.investment-section {

  background:

    radial-gradient(
      circle at 50% 0%,
      rgba(225,6,0,.18),
      transparent 40%
    ),

    #050505;
}

.checkout-grid {

  max-width: 950px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}

.checkout-card {

  padding: 45px;

  border:
    1px solid #292929;

  background:
    #101010;
}

.checkout-card.featured {
  border-color: var(--red);
}

.checkout-tag {

  color: var(--red);

  font-size: 1rem;

  font-weight: 800;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.checkout-card h3 {

  margin:
    12px
    0;

  font-family:
    Georgia,
    serif;

  font-size: 2.1rem;
}

.checkout-card > p strong {

  display: block;

  margin-top: 5px;

  color: #fff;
}

.checkout-entry {

  margin:
    38px
    0
    22px;

  padding-bottom: 25px;

  border-bottom:
    1px solid #292929;
}

.checkout-entry span {

  display: block;

  color: #999;

  font-size: .8rem;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.checkout-entry strong {

  display: block;

  margin-top: 4px;

  color: var(--red);

  font-family:
    Georgia,
    serif;

  font-size: 2.3rem;

  font-weight: 400;
}

.checkout-entry small {

  display: block;

  margin-top: 8px;

  color: #999;

  line-height: 1.55;
}

.checkout-price {

  margin-bottom: 35px;
}

.checkout-price small {

  display: block;

  color: #888;
}

.checkout-price strong {

  display: block;

  margin-top: 5px;

  font-family:
    Georgia,
    serif;

  font-size: 2rem;
}


/* =====================================================
   FAQ
===================================================== */

.faq-item {

  border-bottom:
    1px solid #292929;
}

.faq-question {

  width: 100%;

  padding:
    27px
    0;

  display: flex;

  justify-content:
    space-between;

  gap: 20px;

  background:
    transparent;

  border: none;

  color: #fff;

  text-align: left;

  font-size: 1.12rem;

  font-weight: 600;

  cursor: pointer;
}

.faq-question::after {

  content: "+";

  flex-shrink: 0;

  color: var(--red);

  font-size: 1.5rem;
}

.faq-item.active
.faq-question::after {

  content: "−";
}

.faq-answer {

  display: none;

  padding:
    0
    0
    30px;
}

.faq-answer p {

  margin-top: 12px;

  line-height: 1.8;
}

.faq-item.active
.faq-answer {

  display: block;
}


/* =====================================================
   DIRECT CONTACT
===================================================== */

.direct-contact {

  padding:
    120px
    0;

  background:
    #050505;
}

.direct-contact__card {

  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  min-height: 620px;

  border:
    1px solid #262626;

  background:
    #0d0d0d;
}

.direct-contact__photo {

  min-height: 620px;

  overflow: hidden;
}

.direct-contact__photo img {

  width: 100%;

  height: 100%;

  min-height: 620px;

  object-fit: cover;
}

.direct-contact__content {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    70px;
}

.direct-contact__content h2 {

  max-width: 650px;
}

.direct-contact__content > p {

  max-width: 610px;

  margin-bottom: 15px;

  font-size: 1.05rem;

  line-height: 1.75;
}

.direct-contact__signature {

  display: flex;

  flex-direction: column;

  margin-top: 24px;
}

.direct-contact__signature strong {

  font-family:
    Georgia,
    serif;

  font-size: 1.7rem;

  font-weight: 400;
}

.direct-contact__signature span {

  color: #777;

  font-size: .85rem;
}

.direct-contact__actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 38px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

  padding:
    140px
    0;

  background:
    var(--red);
}

.final-cta .eyebrow {
  color: #000;
}

.final-cta h2 span {
  color: #000;
}

.final-cta .btn {

  margin-top: 20px;

  background: #000;

  border-color: #000;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

  padding:
    35px
    0;

  border-top:
    1px solid #202020;
}

.footer-inner {

  display: flex;

  justify-content:
    space-between;

  gap: 30px;

  font-size: .75rem;
}

.footer-inner div {

  display: flex;

  gap: 20px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-floating {

  position: fixed;

  right: 22px;

  bottom: 22px;

  z-index: 900;

  background: #25d366;

  color: #000;

  padding:
    12px
    18px;

  border-radius: 100px;

  font-size: .75rem;

  font-weight: 800;

  box-shadow:
    0
    8px
    30px
    rgba(0,0,0,.35);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .section {
    padding: 90px 0;
  }

  .desktop-nav,
  .header .btn {
    display: none;
  }


  .hero {

    min-height: 92vh;

    padding-bottom: 60px;
  }


  .journey-grid,
  .checkout-grid,
  .testimonial-grid,
  .two-columns,
  .process-grid {

    grid-template-columns:
      1fr;

  }


  .two-columns {
    gap: 45px;
  }


  .gallery-grid {

    grid-template-columns:
      repeat(2, 1fr);

    grid-template-rows:
      420px
      280px
      280px;
  }


  .gallery-item--large {

    grid-column:
      1 / -1;

    grid-row:
      auto;
  }


  .why-santiago {

    padding:
      100px
      0;
  }


  .why-santiago__grid {

    grid-template-columns:
      1fr;

    gap: 60px;
  }


  .why-santiago__content {

    max-width: 760px;
  }


  .why-santiago__slideshow {

    min-height: 540px;
  }


  .grazi-profile {

    grid-template-columns:
      1fr;

    gap: 45px;
  }


  .grazi-profile__image {

    position: relative;

    top: auto;

    min-height: 600px;
  }


  .grazi-profile__image img {

    min-height: 600px;
  }


  .direct-contact__card {

    grid-template-columns:
      1fr;
  }


  .direct-contact__photo,
  .direct-contact__photo img {

    min-height: 560px;
  }


  .direct-contact__content {

    padding:
      55px
      40px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .container {
    width: min(90%, var(--container));
  }


  .section {
    padding:
      75px
      0;
  }


  .eyebrow,
  .section-eyebrow {

    font-size: .9rem;

    letter-spacing: .14em;

    margin-bottom: 20px;
  }


  h1 {
    font-size: 3.7rem;
  }


  h2 {

    font-size:
      clamp(
        2.4rem,
        11vw,
        3.4rem
      );
  }


  .hero-actions {

    flex-direction: column;
  }


  .hero-actions .btn {
    width: 100%;
  }


  .journey-card,
  .checkout-card {

    padding:
      34px
      25px;
  }


  .journey-tag {

    position: static;

    display: inline-block;

    margin-bottom: 25px;
  }


  .gallery-grid {

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows:
      390px
      210px
      210px;

    gap: 3px;
  }


  .gallery-item {

    min-width: 0;

    height: auto;

    margin: 0;
  }


  .gallery-item--large {

    grid-column:
      1 / -1;

    grid-row:
      auto;
  }


  .why-santiago {

    padding:
      80px
      0;
  }


  .why-santiago h2 {

    font-size:
      clamp(
        2.65rem,
        12vw,
        4rem
      );
  }


  .why-santiago__intro {

    margin-top: 32px;

    font-size: 1.05rem;
  }


  .why-santiago__slideshow {

    min-height: 470px;
  }


  .equipment-highlight {

    padding:
      30px
      24px;
  }


  .grazi-profile__image,
  .grazi-profile__image img {

    min-height: 500px;
  }


  .grazi-profile__content h3 {

    font-size: 3rem;
  }


  .direct-contact {

    padding:
      75px
      0;
  }


  .direct-contact__photo,
  .direct-contact__photo img {

    min-height: 440px;
  }


  .direct-contact__content {

    padding:
      42px
      25px;
  }


  .direct-contact__actions {

    flex-direction: column;
  }


  .direct-contact__actions .btn {

    width: 100%;
  }


  .footer-inner {

    flex-direction: column;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (
  prefers-reduced-motion: reduce
) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;
  }


  .gallery-photo {

    transform:
      none !important;
  }

}