@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Bold.woff2") format("woff2");
  font-weight: 700;
}

:root {
  --green: #bdbe2f;
  --green-hover-icon: #afc51d;
  --dark: #22372b;
  --purple: #622357;
  --red: #9a1819;
  --sky: #7fa9c9;
  --pink: #df6dca;
  --gray: #dbe0e3;
  --surface: #f9f9f9;
  --text: #22372b;
  --text-soft: #6e6e6e;
  --muted: #9f9f9f;
  --white: #fff;
  --max: 1120px;
  --hero-edge: clamp(24px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Neue Montreal", "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  min-height: 68px;
  padding: 18px 40px;
  color: var(--white);
  text-transform: uppercase;
  transition: background .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(19, 45, 34, .9);
  backdrop-filter: blur(10px);
}

.brand {
  width: 102px;
  margin-right: 18px;
  display: none;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  display: block;
  margin-right: auto;
}

.brand img {
  width: 100%;
  display: block;
}

.brand-redbus {
  position: relative;
  display: flex;
  align-items: center;
}

.brand-redbus .brand-red {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease;
}

.brand-redbus .brand-default {
  transition: opacity .2s ease;
}

.page-subpage .site-header {
  justify-content: space-between;
}

.page-subpage .brand {
  display: block;
  margin-right: auto;
}

.page-redbus .site-header.is-scrolled,
.page-redbus .site-header.is-open {
  background: rgba(154, 24, 25, .92);
}

.page-redbus .site-header.is-scrolled .brand-redbus .brand-default,
.page-redbus .site-header.is-open .brand-redbus .brand-default {
  opacity: 0;
}

.page-redbus .site-header.is-scrolled .brand-redbus .brand-red,
.page-redbus .site-header.is-open .brand-redbus .brand-red {
  opacity: 1;
}

.page-subpage .hero-logo-corner {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 15pt;
  font-weight: 400;
}

.main-nav a {
  opacity: .76;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav .active {
  opacity: 1;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 106%;
  left: -3%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 40, 20, .82), rgba(12, 40, 20, .34) 48%, rgba(12, 40, 20, .18));
}

.hero-shade-soft {
  background: linear-gradient(180deg, rgba(20, 35, 26, .36), rgba(20, 35, 26, .08));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 420px;
  margin-left: 64px;
  padding-top: 150px;
}

.hero-copy p {
  opacity: 0;
  animation: hero-fade-in .9s ease forwards;
}

.hero-copy p:nth-of-type(1) {
  animation-delay: .12s;
}

.hero-copy p:nth-of-type(2) {
  animation-delay: .32s;
}

.hero-copy .kicker {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: .98;
}

.hero-copy .kicker span {
  display: block;
  white-space: nowrap;
}

.hero .pill-button {
  color: var(--hero-button-color, var(--green));
  background: var(--white);
  margin-top: 150px;
  min-width: 360px;
  min-height: 52px;
  font-size: 25px;
  font-weight: 700;
}

.hero-home,
.hero-contact {
  --hero-button-color: var(--green);
}

.hero-redbus {
  --hero-button-color: var(--red);
}

.hero-brand {
  --hero-button-color: var(--purple);
}

.hero-location {
  --hero-button-color: var(--sky);
}

.hero-home .hero-copy .kicker {
  font-size: 45px;
}

.hero-redbus .hero-copy,
.hero-brand .hero-copy,
.hero-location .hero-copy,
.hero-contact .hero-copy {
  width: 420px;
  margin-left: 64px;
  padding-top: 150px;
}

.hero-redbus .hero-copy .kicker,
.hero-brand .hero-copy .kicker,
.hero-location .hero-copy .kicker,
.hero-contact .hero-copy .kicker {
  font-size: 45px;
}

.hero .pill-button:focus-visible,
.hero .pill-button:active {
  color: var(--white);
  background: var(--hero-button-color, var(--green));
  text-shadow: none;
}

@media (hover: none) and (pointer: coarse) {
  .hero .pill-button:active {
    color: var(--white);
    background: var(--hero-button-color, var(--green));
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero .pill-button:hover {
    color: var(--hero-button-color, var(--green));
    font-weight: 700;
    text-shadow: 0 0 .01px currentColor, 0 0 .01px currentColor;
  }

  .hero .pill-button:active,
  .hero .pill-button:focus-visible:active {
    color: var(--white);
    background: var(--hero-button-color, var(--green));
    text-shadow: none;
  }
}

.hero-copy p {
  margin: 0 0 34px;
  font-size: 25px;
  line-height: 1.22;
}

.pill-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  min-height: 38px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pill-button {
  color: var(--text);
  background: var(--white);
}

.outline-button {
  color: var(--white);
  border: 2px solid currentColor;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-logo-rise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-banner .outline-button {
  min-width: 496px;
  min-height: 60px;
  padding: 14px 44px;
  border-width: 2px;
  background: rgba(255, 255, 255, .3);
  font-size: 24px;
}

.cta-banner .outline-button:hover,
.cta-banner .outline-button:focus-visible,
.cta-banner .outline-button:active {
  color: var(--green);
  border-color: var(--white);
  background: var(--white);
}

.hero-logo-large {
  position: absolute;
  z-index: 2;
  right: var(--hero-edge);
  bottom: 54px;
  width: min(820px, 60vw);
  opacity: 0;
  animation: hero-logo-rise 1.1s ease .28s forwards;
}

.hero-logo-large-redbus {
  width: min(820px, 58vw);
}

@keyframes quick-link-mobile-cycle {
  0% {
    opacity: 0;
    transform: translateX(14px);
  }

  8%,
  25% {
    opacity: 1;
    transform: translateX(0);
  }

  33%,
  100% {
    opacity: 0;
    transform: translateX(-14px);
  }
}

.hero-logo-corner {
  position: absolute;
  z-index: 2;
  top: 146px;
  right: max(52px, calc((100vw - var(--max)) / 2));
  width: 180px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 145px;
  padding: 26px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 20.3px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.quick-links img {
  width: 100px;
  height: 88px;
  object-fit: contain;
  transition: transform .22s ease;
  transform-origin: center;
}

.quick-links a:hover,
.quick-links a:hover span {
  color: var(--green-hover-icon);
}

.quick-links a:hover img {
  transform: scale(1.12);
  filter: brightness(0) saturate(100%) invert(79%) sepia(64%) saturate(1027%) hue-rotate(17deg) brightness(91%) contrast(91%);
}

.cta-banner {
  width: 100%;
  min-height: 412px;
  margin: 0 auto 40px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background-image: linear-gradient(rgba(20, 95, 90, .05), rgba(20, 95, 90, .1)), var(--banner-image);
  background-size: cover;
  background-position: center;
  border-radius: 36px;
}

.cta-banner h2 {
  margin: 0 0 22px;
  font-size: clamp(22px, 3.8vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.cta-type-line {
  display: block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: cta-type-in 1.5s steps(36, end) forwards;
}

.cta-type-line:nth-child(2) {
  animation-delay: 1.65s;
}

.cta-banner h2 strong {
  font-weight: 700;
}

@keyframes cta-type-in {
  from {
    width: 0;
    opacity: .65;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

.intro-band,
.why-title,
.reason-accent {
  background: var(--green);
}

.intro-band {
  padding: 54px 0 74px;
  scroll-margin-top: 96px;
}

.hero-target {
  scroll-margin-top: 96px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
}

.intro-band h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.02;
}

.intro-band h1 span {
  font-weight: 400;
}

.intro-band p {
  margin: 0 0 18px;
  font-size: 18.4px;
  line-height: 1.25;
}

.why-title {
  padding: 34px 0;
  color: var(--white);
}

.why-title h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reason {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.reason-light {
  background: var(--surface);
}

.reason-dark {
  color: var(--white);
  background: var(--dark);
}

.reason-text {
  padding: 64px max(36px, calc((100vw - var(--max)) / 2)) 56px;
}

.reason-first .reason-text {
  padding-top: 52px;
  padding-bottom: 46px;
  padding-right: clamp(32px, 4vw, 72px);
}

.reason-third .reason-text {
  padding-top: 52px;
  padding-bottom: 46px;
  padding-right: clamp(12px, 2vw, 36px);
}

.reason-second .reason-text {
  padding-top: 52px;
  padding-bottom: 46px;
  padding-left: clamp(56px, 6vw, 112px);
  padding-right: clamp(24px, 3vw, 48px);
}

.reason-fourth .reason-text {
  padding-top: 52px;
  padding-bottom: 46px;
  padding-left: clamp(56px, 6vw, 112px);
  padding-right: clamp(24px, 3vw, 48px);
}

.reason-first {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 0;
  align-items: center;
}

.reason-third {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  column-gap: clamp(40px, 5vw, 104px);
  min-height: 0;
  align-items: center;
}

.reason-second {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  column-gap: clamp(36px, 4vw, 72px);
  min-height: 0;
  align-items: center;
}

.reason-fourth {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  column-gap: clamp(36px, 4vw, 72px);
  min-height: 0;
  align-items: center;
}

.reason-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 28px;
  max-width: 720px;
  margin-bottom: 64px;
}

.reason-text h3 {
  max-width: 470px;
  margin: -48px 0 82px 82px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.02;
}

.reason-intro h3 {
  max-width: 560px;
  margin: 0;
}

.reason-first .reason-intro {
  max-width: 760px;
}

.reason-first .reason-intro h3 {
  max-width: none;
  font-size: clamp(28.75px, 3.45vw, 43.7px);
}

.reason-first .reason-number {
  font-size: clamp(48.3px, 5.75vw, 78.2px);
}

.reason-third .reason-intro {
  max-width: 760px;
}

.reason-third .reason-intro h3 {
  max-width: none;
  font-size: clamp(28.75px, 3.45vw, 43.7px);
}

.reason-third-desktop-line {
  display: block;
  white-space: nowrap;
}

.reason-third-mobile-line {
  display: none !important;
}

.reason-third .reason-number {
  font-size: clamp(48.3px, 5.75vw, 78.2px);
}

.reason-second .reason-intro {
  max-width: 900px;
}

.reason-second .reason-intro h3 {
  max-width: 16ch;
  font-size: clamp(28.75px, 3.45vw, 43.7px);
  color: var(--green);
}

.reason-second .reason-number {
  font-size: clamp(48.3px, 5.75vw, 78.2px);
  color: var(--green);
}

.reason-fourth .reason-intro {
  max-width: 900px;
}

.reason-fourth .reason-intro h3 {
  max-width: 16ch;
  font-size: clamp(28.75px, 3.45vw, 43.7px);
  color: var(--white);
}

.reason-fourth .reason-number {
  font-size: clamp(48.3px, 5.75vw, 78.2px);
  color: var(--white);
}

.reason-number {
  color: var(--green);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: .9;
}

.reason-light .reason-number {
  color: var(--dark);
}

.reason-text p {
  max-width: 440px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.15;
}

.reason-first .reason-text p {
  max-width: 560px;
  font-size: 22.08px;
  line-height: 1.08;
}

.reason-third .reason-text p {
  max-width: 560px;
  font-size: 22.08px;
  line-height: 1.08;
}

.reason-second .reason-text p {
  max-width: 560px;
  font-size: 22.08px;
  line-height: 1.08;
}

.reason-fourth .reason-text p {
  max-width: 560px;
  font-size: 22.08px;
  line-height: 1.08;
  color: var(--dark);
}

.reason-second .reason-text p:nth-of-type(2) {
  color: var(--white);
  font-weight: 400;
}

.reason-second .reason-text p:last-of-type,
.reason-second .reason-text p:last-of-type strong {
  color: var(--green);
}

.reason-fourth .reason-text p strong {
  color: var(--dark);
}

.reason-fourth .reason-text p:last-of-type,
.reason-fourth .reason-text p:last-of-type strong {
  color: var(--white);
}

.reason-first figure {
  min-height: 0;
  align-self: stretch;
}

.reason-first figure img {
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  padding: 24px 36px;
  object-fit: contain;
}

.reason-third figure {
  min-height: 0;
  align-self: stretch;
}

.reason-third figure img {
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  padding: 24px 36px;
  object-fit: contain;
}

.reason-second figure {
  min-height: 0;
  align-self: stretch;
  padding: 24px 24px 24px 36px;
}

.reason-second figure img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border-radius: 34px;
  object-fit: cover;
}

.reason-fourth figure {
  min-height: 0;
  align-self: stretch;
  padding: 24px 24px 24px 36px;
}

.reason-fourth figure img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border-radius: 34px;
  object-fit: cover;
}

.reason figure {
  margin: 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.reason figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-light figure img,
.reason-accent:not(.reason-fourth) figure img {
  object-fit: contain;
  padding: 52px;
}

.redbus-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 260px;
  transform: translateX(-34%);
  font-size: clamp(72px, 12vw, 152px);
  font-weight: 700;
  line-height: .75;
  text-transform: uppercase;
}

.redbus-title span {
  display: block;
  margin-left: 34%;
  font-size: .5em;
}

.redbus-packshot {
  display: block;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.redbus-showcase {
  width: 100%;
  padding: 0;
  background: #f5f4ef;
  overflow: hidden;
}

.red-band {
  padding: 60px 24px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-title,
.location-title,
.contact-title {
  position: absolute;
  z-index: 2;
  color: var(--white);
  margin: 0;
  font-size: clamp(76px, 12vw, 148px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: 0;
}

.brand-title {
  right: max(34px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
}

.brand-title em {
  font-style: italic;
}

.location-title {
  right: max(72px, calc((100vw - var(--max)) / 2));
  bottom: 44px;
}

.contact-title {
  right: max(40px, calc((100vw - var(--max)) / 2));
  bottom: 72px;
  text-transform: uppercase;
}

.spoons {
  background: var(--gray);
  text-align: center;
}

.spoons img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
}

.spoons p {
  width: min(780px, calc(100% - 48px));
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.2;
}

.spoons p:last-child {
  margin-bottom: 42px;
}

.format-heading {
  padding: 22px max(24px, calc((100vw - var(--max)) / 2)) 38px;
  background: var(--gray);
}

.format-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(38px, 6.8vw, 72px);
  line-height: .9;
}

.format-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 46px max(24px, calc((100vw - 760px) / 2));
  background: var(--green);
  text-align: center;
  text-transform: uppercase;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.format-tabs a {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.format-tabs img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.product-band {
  padding: 70px 0 80px;
}

.product-purple {
  color: var(--white);
  background: var(--purple);
}

.product-gray {
  background: var(--gray);
}

.product-band h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: clamp(44px, 6vw, 72px);
  line-height: .9;
  text-transform: uppercase;
}

.product-purple h2 {
  color: var(--pink);
}

.product-band > .container > p {
  margin: 0 0 34px;
  font-size: 15px;
}

.product-row {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 28px;
  align-items: center;
  margin: 18px 0;
}

.product-row img {
  width: 178px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border: 5px solid currentColor;
  border-radius: 14px;
}

.product-purple .product-row img {
  color: var(--pink);
}

.product-gray .product-row img {
  color: var(--green);
}

.product-row h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.product-purple .product-row h3 {
  color: var(--pink);
}

.product-row p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.22;
}

.tea-choice {
  padding: 58px 0 68px;
  background: var(--white);
  text-align: center;
}

.tea-choice h2 {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 400;
}

.tea-choice strong {
  color: var(--pink);
}

.tea-choice p {
  max-width: 700px;
  margin: 0 auto 34px;
}

.tea-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tea-grid figure {
  margin: 0;
}

.tea-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.tea-grid figcaption {
  margin-top: 18px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-route {
  margin-top: -170px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.map-route img {
  width: 100%;
  opacity: .9;
}

.location-content {
  padding: 26px 24px 84px;
  text-align: center;
}

.location-content h1 {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(44px, 7vw, 76px);
  line-height: .9;
  font-weight: 400;
}

.location-content p {
  max-width: 920px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.22;
}

.address-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 24px;
  margin: 0 0 36px;
  border-radius: 8px;
  color: var(--purple);
  background: var(--white);
  font-size: 20px;
}

.map-frame {
  width: min(1120px, 100%);
  height: 410px;
  border: 0;
}

.contact-section {
  padding: 64px 24px 78px;
  background: var(--gray);
  text-align: center;
}

.contact-section.compact {
  padding-top: 48px;
}

.contact-page {
  padding-top: 0;
}

.contact-section h1,
.contact-section h2 {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-section strong {
  color: var(--purple);
}

.form-red strong,
.red-band + .contact-section strong {
  color: var(--red);
}

.contact-section p {
  margin: 0 auto 24px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.2;
}

.contact-form {
  width: min(100%, 1060px);
  margin: 0 auto 46px;
  padding: 28px 34px 34px;
  border-radius: 7px;
  background: var(--purple);
  color: var(--white);
  text-align: left;
}

.form-red {
  background: var(--red);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 54px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.form-grid .message {
  grid-row: span 2;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 7px;
  padding: 13px 15px;
  color: var(--text-soft);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 37px;
  margin: 16px 0 0 auto;
  border: 0;
  border-radius: 6px;
  color: var(--text-soft);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button::after {
  content: ">";
  margin-left: 9px;
}

.form-note {
  color: var(--white);
  font-weight: 700;
}

.contact-chips {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.contact-chips.top {
  padding: 0 0 58px;
  transform: translateY(-18px);
}

.contact-chips h2 {
  margin: 0 0 4px;
  text-transform: uppercase;
}

.contact-chips a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 8px 18px;
  border-radius: 7px;
  color: var(--purple);
  background: var(--white);
  font-size: 20px;
}

.policy-page {
  background: var(--dark);
  color: var(--white);
}

.policy-hero {
  min-height: 210px;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  display: flex;
  justify-content: flex-end;
}

.policy-hero img {
  width: 190px;
}

.policy-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 70px;
  font-size: 14px;
  line-height: 1.32;
}

.policy-content h1 {
  margin: 0 0 22px;
  font-size: 19px;
  text-transform: uppercase;
}

.policy-content h2 {
  margin: 18px 0 6px;
  font-size: 15px;
}

.policy-content p {
  margin: 0 0 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(170px, 1fr)) minmax(170px, .9fr);
  gap: 56px;
  align-items: start;
  padding: 68px max(36px, calc((100vw - var(--max)) / 2)) 72px;
  color: var(--white);
  background: #000;
  font-family: "DM Sans", Arial, sans-serif;
}

.footer-logo img {
  width: 205px;
}

.site-footer h2,
.policy-link {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.policy-link:hover,
.policy-link:focus-visible {
  color: var(--green);
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-header {
    justify-content: space-between;
    padding: 14px 22px;
  }

  .brand {
    display: block;
  }

  body:not(.page-subpage) .site-header:not(.is-scrolled):not(.is-open) .brand {
    display: none;
  }

  body:not(.page-subpage) .site-header:not(.is-scrolled):not(.is-open) {
    justify-content: flex-end;
  }

  .nav-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    gap: 5px;
    width: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    gap: 0;
    padding: 86px 24px 24px;
    background: rgba(19, 45, 34, .96);
    transform: translateY(-100%);
    transition: transform .25s ease;
  }

  .page-redbus .main-nav {
    background: rgba(154, 24, 25, .96);
  }

  .site-header.is-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 0;
    font-size: 14px;
  }

  .hero,
  .hero-redbus,
  .hero-brand,
  .hero-location,
  .hero-contact {
    min-height: 660px;
  }

  .page-subpage .hero-copy {
    width: min(560px, calc(100vw - 28px));
    margin-left: auto;
    margin-right: auto;
    padding-top: 170px;
    text-align: center;
  }

  .page-subpage .hero-copy .kicker {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(24px, 5.1vw, 32px);
    line-height: 1.02;
  }

  .page-subpage .hero-copy p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.14;
  }

  .hero-logo-large {
    display: none;
  }

  .hero-redbus .hero-logo-large-redbus {
    display: block;
    left: 0;
    right: 0;
    bottom: 34px;
    width: min(82vw, 520px);
    margin: 0 auto;
  }

  .hero-logo-corner {
    top: 118px;
    right: 24px;
    width: 128px;
  }

  .quick-links,
  .format-tabs,
  .tea-grid {
    grid-template-columns: 1fr;
  }

  .two-col,
  .reason,
  .product-row,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 28px;
  }

  .reason-text {
    padding: 44px 24px;
  }

  .reason-first .reason-text {
    padding-right: 24px;
  }

  .reason-third .reason-text {
    padding-right: 24px;
  }

  .reason-second .reason-text {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reason-fourth .reason-text {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reason-text h3 {
    margin-bottom: 38px;
  }

  .reason-intro {
    margin-bottom: 38px;
  }

  .reason-third .reason-intro h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .reason-third-desktop-line {
    display: none !important;
  }

  .reason-third-mobile-line {
    display: block !important;
    white-space: normal;
  }

  .reason figure {
    min-height: 340px;
  }

  .reason-first figure {
    min-height: 0;
    padding: 0 12px 28px;
  }

  .reason-first figure img {
    width: min(100%, 520px);
    padding: 0;
  }

  .reason-third figure {
    min-height: 0;
    padding: 0 12px 28px;
  }

  .reason-third figure img {
    width: min(100%, 520px);
    padding: 0;
  }

  .reason-second figure img {
    width: min(100%, 520px);
    padding: 0;
  }

  .reason-fourth figure img {
    width: min(100%, 520px);
    padding: 0;
  }

  .reason-dark figure {
    order: 2;
  }

  .redbus-title {
    top: 300px;
    transform: translateX(-50%);
  }

  .brand-title,
  .location-title,
  .contact-title {
    right: 24px;
    bottom: 42px;
  }

  .map-route {
    margin-top: -80px;
  }

  .product-row {
    justify-items: start;
  }

  .tea-grid {
    max-width: 300px;
    margin: 0 auto;
  }

  .tea-grid img {
    height: 240px;
  }

  .form-grid .message {
    grid-row: auto;
  }

  .site-footer {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .policy-content {
    width: min(100% - 32px, var(--max));
  }

  .hero,
  .hero-redbus,
  .hero-brand,
  .hero-location,
  .hero-contact {
    min-height: 760px;
  }

  .hero-copy {
    width: min(420px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
    text-align: center;
    justify-items: center;
    transform: none;
  }

  .hero-copy .kicker {
    font-size: clamp(15px, 4.8vw, 19px);
    line-height: 1.02;
  }

  .hero-home .hero-copy .kicker {
    font-size: clamp(24px, 6.4vw, 28px);
  }

  .hero-home .hero-copy p:not(.kicker) {
    font-size: 19px;
    line-height: 1.18;
  }

  .hero-copy .kicker span {
    white-space: normal;
  }

  .hero-copy p {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.16;
    text-align: center;
  }

  .page-subpage .hero-copy {
    width: min(420px, calc(100vw - 24px));
    padding-top: 168px;
  }

  .page-subpage .hero-copy .kicker {
    max-width: 18ch;
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.04;
  }

  .page-subpage .hero-copy p {
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.15;
  }

  .hero .pill-button {
    margin-top: 72px;
    min-width: min(300px, calc(100vw - 64px));
    min-height: 46px;
    font-size: 22px;
  }

  .hero-home .hero-logo-large {
    display: block;
    left: 0;
    right: 0;
    bottom: 26px;
    width: min(92vw, 430px);
    margin: 0 auto;
  }

  .hero-redbus .hero-logo-large-redbus {
    display: block;
    left: 0;
    right: 0;
    bottom: 26px;
    width: min(88vw, 390px);
    margin: 0 auto;
  }

  .hero-logo-corner,
  .brand-title,
  .location-title,
  .contact-title {
    display: none;
  }

  .cta-type-line {
    width: auto;
    white-space: normal;
    overflow: visible;
    animation: none;
    opacity: 1;
  }

  .cta-banner .outline-button {
    min-width: 0;
    width: calc(100vw - 48px);
    max-width: 496px;
    min-height: 48px;
    padding: 10px 28px;
    font-size: 18px;
    white-space: nowrap;
  }

  .quick-links {
    position: relative;
    min-height: 176px;
    overflow: hidden;
  }

  .quick-links a {
    position: absolute;
    inset: 0;
    justify-content: center;
    padding: 0 24px;
    opacity: 0;
    animation: quick-link-mobile-cycle 9s ease-in-out infinite;
  }

  .quick-links a:nth-child(2) {
    animation-delay: 3s;
  }

  .quick-links a:nth-child(3) {
    animation-delay: 6s;
  }

  .intro-band,
  .product-band,
  .contact-section {
    padding-left: 0;
    padding-right: 0;
  }

  .why-title h2,
  .format-heading h2 {
    font-size: 42px;
  }

  .contact-form {
    padding: 22px 18px 26px;
  }

  .contact-chips a {
    max-width: calc(100vw - 32px);
    font-size: 17px;
    overflow-wrap: anywhere;
  }
}
