:root {
  --terra: #a64b2a;
  --azul: #233a46;
  --verde: #5f6b45;
  --areia: #d9cdbf;
  --papel: #f4eee2;
  --marrom: #2b2b2b;
  --branco: #fffaf0;
  --sombra: 0 24px 70px rgba(35, 26, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--marrom);
  background:
    radial-gradient(circle at top left, rgba(166, 75, 42, 0.08), transparent 34rem),
    linear-gradient(180deg, #f7f0e4 0%, var(--papel) 56%, #e7dac8 100%);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(35, 58, 70, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 58, 70, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 82%, transparent);
}

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

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

h1,
h2,
h3,
.brand b,
.brand strong,
.section-kicker,
.tagline,
.scroll-cue {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--branco);
  background: linear-gradient(180deg, rgba(24, 31, 28, 0.84), rgba(24, 31, 28, 0.18));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 250, 240, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, var(--terra) 0 12%, transparent 13%),
    conic-gradient(from 28deg, var(--verde), var(--branco), var(--azul), var(--branco), var(--verde));
  box-shadow: 0 0 0 4px rgba(166, 75, 42, 0.35);
}

.brand span:last-child {
  display: grid;
  line-height: 0.95;
}

.brand strong {
  color: var(--terra);
  font-size: 0.92rem;
}

.brand b {
  color: var(--branco);
  font-size: 1.35rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a {
  opacity: 0.86;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--areia);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--branco);
  isolation: isolate;
  place-items: center start;
  padding: 8rem clamp(1rem, 6vw, 5.5rem) 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(18, 25, 24, 0.9) 0%, rgba(18, 25, 24, 0.72) 35%, rgba(18, 25, 24, 0.2) 70%),
    linear-gradient(180deg, rgba(18, 25, 24, 0.16), rgba(18, 25, 24, 0.76)),
    url("assets/manual-da-marca.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero::after {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2rem;
  width: min(28vw, 17rem);
  aspect-ratio: 1;
  content: "";
  opacity: 0.62;
  border: 1px solid rgba(244, 238, 226, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 33%, rgba(244, 238, 226, 0.18) 34% 35%, transparent 36%),
    conic-gradient(from 0deg, transparent 0 10%, rgba(244, 238, 226, 0.36) 10% 12%, transparent 12% 35%, rgba(166, 75, 42, 0.48) 35% 37%, transparent 37% 65%, rgba(95, 107, 69, 0.5) 65% 67%, transparent 67% 100%);
}

.hero-content {
  width: min(54rem, 100%);
}

.eyebrow,
.section-kicker {
  color: var(--terra);
  font-size: clamp(0.9rem, 1.3vw, 1.12rem);
}

.hero h1 {
  max-width: 11ch;
  margin-top: 0.5rem;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.82;
  text-shadow: 0 0.25rem 0 rgba(35, 58, 70, 0.36);
}

.tagline {
  margin-top: 1.3rem;
  color: var(--areia);
  font-size: clamp(1rem, 2vw, 1.75rem);
}

.hero-copy {
  max-width: 42rem;
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
  max-width: 100%;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(35, 26, 18, 0.2);
}

.btn.primary {
  color: var(--branco);
  border-color: var(--terra);
  background: var(--terra);
}

.btn.secondary {
  color: var(--branco);
  background: rgba(244, 238, 226, 0.12);
}

.btn.dark {
  color: var(--branco);
  border-color: var(--azul);
  background: var(--azul);
}

.scroll-cue {
  position: absolute;
  left: clamp(1rem, 6vw, 5.5rem);
  bottom: 1.5rem;
  color: rgba(244, 238, 226, 0.82);
  font-size: 0.88rem;
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-grid,
.split-band,
.newsletter,
.shop,
.season {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-grid h2,
.split-band h2,
.newsletter h2,
.shop h2,
.season h2,
.section-heading h2 {
  color: var(--azul);
  font-size: clamp(2.2rem, 5.2vw, 5.25rem);
  line-height: 0.92;
}

.text-flow {
  display: grid;
  gap: 1rem;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.about {
  background: linear-gradient(90deg, rgba(217, 205, 191, 0.42), rgba(255, 250, 240, 0));
}

.season {
  padding-top: 3rem;
  background: var(--azul);
  color: var(--branco);
}

.season h2,
.season .section-kicker {
  color: var(--branco);
}

.season-copy {
  display: grid;
  gap: 1.2rem;
}

.route-list,
.feature-list,
.solution-grid,
.shop-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  counter-reset: route;
}

.route-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.route-list li::before {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  color: var(--branco);
  content: counter(route);
  counter-increment: route;
  border-radius: 50%;
  background: var(--terra);
  font-size: 0.8rem;
  place-items: center;
}

.season-art,
.shop-art {
  margin: 0;
}

.season-art img,
.shop-art img {
  width: 100%;
  border: 8px solid rgba(244, 238, 226, 0.72);
  box-shadow: var(--sombra);
}

.episodes {
  background: var(--papel);
}

.section-heading {
  max-width: 58rem;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.episode-card {
  min-height: 18rem;
  padding: 1.25rem;
  color: var(--branco);
  background:
    linear-gradient(180deg, rgba(35, 58, 70, 0.12), rgba(35, 58, 70, 0.78)),
    url("assets/temporada1.png");
  background-position: center calc(30% + var(--shift, 0px));
  background-size: cover;
  border: 1px solid rgba(35, 58, 70, 0.22);
  box-shadow: var(--sombra);
}

.episode-card:nth-child(2) {
  --shift: -140px;
}

.episode-card:nth-child(3) {
  --shift: -260px;
}

.episode-card span {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--branco);
  background: var(--azul);
  font-weight: 900;
  place-items: center;
}

.episode-card h3 {
  margin-top: 5.7rem;
  color: var(--branco);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 0.95;
}

.episode-card p {
  margin-top: 0.7rem;
  color: rgba(255, 250, 240, 0.9);
}

.split-band {
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(95, 107, 69, 0.95), rgba(35, 58, 70, 0.92)),
    url("assets/versoes.png");
  background-position: center;
  background-size: cover;
}

.split-band h2,
.split-band .section-kicker {
  color: var(--branco);
}

.split-band p {
  max-width: 46rem;
  margin-top: 1rem;
}

.feature-list,
.solution-grid,
.shop-list {
  display: grid;
  gap: 0.75rem;
}

.feature-list li,
.solution-grid li,
.shop-list li {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--terra);
  background: rgba(255, 250, 240, 0.84);
  font-weight: 800;
}

.split-band .feature-list li {
  color: var(--marrom);
}

.business {
  align-items: start;
}

.business p {
  margin: 1rem 0 1.5rem;
}

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

.shop {
  background: linear-gradient(180deg, #fffaf0, #e5d6c2);
}

.shop-copy {
  display: grid;
  gap: 1rem;
}

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

.manifesto {
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(22, 28, 25, 0.88), rgba(35, 58, 70, 0.7)),
    url("assets/pack-logos.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.manifesto p,
.manifesto strong {
  display: block;
  max-width: 56rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 4.2rem);
  line-height: 1.08;
}

.manifesto p + p,
.manifesto strong {
  margin-top: 1.2rem;
}

.manifesto strong {
  color: var(--areia);
  font-weight: 500;
}

.newsletter {
  align-items: start;
}

.newsletter p {
  margin-top: 1rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(95, 107, 69, 0.25);
  box-shadow: var(--sombra);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--azul);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  color: var(--marrom);
  border: 1px solid rgba(35, 58, 70, 0.25);
  background: var(--branco);
  border-radius: 0;
  font: inherit;
}

input,
select {
  min-height: 3rem;
}

textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
  cursor: pointer;
}

.store-page .site-header {
  background: rgba(24, 31, 28, 0.9);
}

.routes-page .site-header {
  background: rgba(24, 31, 28, 0.9);
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: 88vh;
  padding-top: 8rem;
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(22, 28, 25, 0.96), rgba(35, 58, 70, 0.76)),
    url("assets/mockups.png");
  background-position: center;
  background-size: cover;
}

.store-hero h1 {
  max-width: 9ch;
  margin-top: 0.5rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.84;
}

.store-hero p:not(.eyebrow, .tagline) {
  max-width: 43rem;
  margin-top: 1.2rem;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.store-hero-art {
  margin: 0;
}

.store-hero-art img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  object-position: top center;
  border: 8px solid rgba(244, 238, 226, 0.7);
  box-shadow: var(--sombra);
}

.store-intro,
.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.store-intro h2,
.product-section h2,
.store-banner h2,
.order-section h2 {
  color: var(--azul);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
}

.store-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.store-values li {
  padding: 1rem;
  color: var(--branco);
  background: var(--verde);
  font-weight: 900;
  text-transform: uppercase;
}

.product-section {
  background: linear-gradient(180deg, #fffaf0, #eadbc8);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.product-card {
  display: grid;
  min-height: 100%;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(95, 107, 69, 0.22);
  box-shadow: 0 16px 42px rgba(35, 26, 18, 0.12);
}

.product-card.featured {
  grid-column: span 2;
}

.product-media {
  min-height: 16rem;
  background-image:
    linear-gradient(180deg, rgba(35, 58, 70, 0), rgba(35, 58, 70, 0.16)),
    var(--product-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.product-shirt {
  --product-image: url("assets/produto-camiseta.png");
}

.product-cap {
  --product-image: url("assets/produto-bone.png");
}

.product-mug {
  --product-image: url("assets/produto-caneca.png");
}

.product-bottle {
  --product-image: url("assets/produto-garrafa.png");
}

.product-notebook {
  --product-image: url("assets/produto-caderno.png");
}

.product-poster {
  --product-image: url("assets/produto-poster.png");
}

.product-sticker {
  --product-image: url("assets/produto-adesivo.png");
}

.product-kit {
  --product-image: url("assets/produto-kit.png");
}

.product-info {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1rem;
}

.product-tag {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  color: var(--branco);
  background: var(--verde);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  color: var(--azul);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 0.95;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.options span {
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(35, 58, 70, 0.2);
  color: var(--azul);
  background: rgba(217, 205, 191, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.store-banner {
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(35, 58, 70, 0.93), rgba(95, 107, 69, 0.86)),
    url("assets/manual-da-marca.png");
  background-position: center;
  background-size: cover;
}

.store-banner h2 {
  max-width: 58rem;
  color: var(--branco);
}

.store-banner p:not(.section-kicker) {
  max-width: 45rem;
  margin-top: 1rem;
}

.order-section {
  background: var(--papel);
}

.order-section p {
  margin-top: 1rem;
}

.store-form {
  background: #fffaf0;
}

.routes-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: 88vh;
  padding-top: 8rem;
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(22, 28, 25, 0.96), rgba(35, 58, 70, 0.76)),
    url("assets/temporada1.png");
  background-position: center;
  background-size: cover;
}

.routes-hero h1 {
  max-width: 11ch;
  margin-top: 0.5rem;
  font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  line-height: 0.86;
}

.routes-hero p:not(.eyebrow, .tagline) {
  max-width: 43rem;
  margin-top: 1.2rem;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.routes-hero-art {
  margin: 0;
}

.routes-hero-art img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  object-position: center 22%;
  border: 8px solid rgba(244, 238, 226, 0.7);
  box-shadow: var(--sombra);
}

.route-promise,
.signature-route,
.experience-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.route-promise h2,
.signature-route h2,
.tour-section h2,
.experience-menu h2,
.routes-banner h2 {
  color: var(--azul);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
}

.route-promise p {
  margin-top: 1rem;
}

.promise-list,
.route-stops,
.tour-includes,
.experience-menu-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.promise-list {
  display: grid;
  gap: 0.8rem;
}

.promise-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: var(--branco);
  background: var(--verde);
}

.promise-list strong {
  color: var(--areia);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.promise-list span {
  font-weight: 900;
  text-transform: uppercase;
}

.signature-route {
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(35, 58, 70, 0.96), rgba(95, 107, 69, 0.88)),
    url("assets/manual-da-marca.png");
  background-position: center;
  background-size: cover;
}

.signature-route h2,
.signature-route .section-kicker {
  color: var(--branco);
}

.signature-copy {
  display: grid;
  gap: 1rem;
}

.route-stops {
  display: grid;
  gap: 0.65rem;
  counter-reset: stop;
}

.route-stops li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem;
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.route-stops li::before {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--branco);
  content: counter(stop);
  counter-increment: stop;
  background: var(--terra);
  font-weight: 900;
  place-items: center;
}

.route-stops span,
.route-stops small {
  grid-column: 2;
}

.route-stops span {
  color: var(--areia);
  font-weight: 900;
  text-transform: uppercase;
}

.route-stops small {
  margin-top: -0.35rem;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.86rem;
}

.tour-section {
  background: linear-gradient(180deg, #fffaf0, #eadbc8);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.tour-card {
  display: grid;
  min-height: 100%;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(95, 107, 69, 0.22);
  box-shadow: 0 16px 42px rgba(35, 26, 18, 0.12);
}

.tour-card.wide {
  grid-column: span 2;
}

.tour-media {
  min-height: 15rem;
  background-image:
    linear-gradient(180deg, rgba(35, 58, 70, 0), rgba(35, 58, 70, 0.35)),
    url("assets/temporada1.png");
  background-position: var(--tour-position, center);
  background-size: cover;
}

.tour-complete {
  --tour-position: center 34%;
}

.tour-franca {
  --tour-position: 50% 57%;
}

.tour-pedregulho {
  --tour-position: 45% 47%;
}

.tour-sacramento {
  --tour-position: 72% 39%;
}

.tour-uberaba {
  --tour-position: 92% 57%;
}

.tour-photo {
  --tour-position: 82% 90%;
}

.tour-info {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1rem;
}

.tour-info h3 {
  color: var(--azul);
  font-size: clamp(1.6rem, 2.4vw, 2.55rem);
  line-height: 0.95;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tour-meta span {
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(35, 58, 70, 0.2);
  color: var(--azul);
  background: rgba(217, 205, 191, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
}

.tour-includes {
  display: grid;
  gap: 0.35rem;
}

.tour-includes li {
  padding-left: 1rem;
  border-left: 3px solid var(--terra);
}

.tour-card .btn {
  width: 100%;
}

.experience-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.experience-menu-grid li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.84);
  border-left: 4px solid var(--terra);
}

.experience-menu-grid strong {
  color: var(--azul);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.routes-banner {
  color: var(--branco);
  background:
    linear-gradient(90deg, rgba(22, 28, 25, 0.9), rgba(35, 58, 70, 0.78)),
    url("assets/versoes.png");
  background-position: center;
  background-size: cover;
}

.routes-banner h2 {
  max-width: 62rem;
  color: var(--branco);
}

.routes-banner p:not(.section-kicker) {
  max-width: 48rem;
  margin-top: 1rem;
}

.routes-form {
  background: #fffaf0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: var(--branco);
  background: #18201d;
}

.site-footer strong {
  display: block;
  color: var(--areia);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 250, 240, 0.74);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    max-width: 14rem;
  }

  .hero {
    min-height: 88vh;
  }

  .section-grid,
  .split-band,
  .newsletter,
  .shop,
  .season,
  .store-hero,
  .routes-hero,
  .store-intro,
  .route-promise,
  .signature-route,
  .experience-menu,
  .order-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .episode-card {
    min-height: 15rem;
  }

  .episode-card h3 {
    margin-top: 3.8rem;
  }

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

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

  .product-card.featured {
    grid-column: span 2;
  }

  .tour-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    display: grid;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand b {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 10.5rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 16vw, 4.2rem);
  }

  .hero::after {
    display: none;
  }

  .route-list,
  .solution-grid,
  .shop-list,
  .store-values,
  .product-grid,
  .tour-grid,
  .experience-menu-grid {
    grid-template-columns: 1fr;
  }

  .store-hero {
    padding-top: 10.5rem;
  }

  .store-hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.5rem);
  }

  .routes-hero {
    padding-top: 10.5rem;
  }

  .routes-hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.1rem);
  }

  .store-hero-art img {
    max-height: none;
  }

  .routes-hero-art img {
    max-height: none;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .tour-card.wide {
    grid-column: span 1;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .actions {
    display: grid;
  }

  .manifesto {
    background-attachment: scroll;
  }
}
