@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;
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(189, 190, 47, .16), transparent 34%),
    rgba(14, 31, 23, .18);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  opacity: 1;
  transition: opacity .35s ease, visibility .35s ease;
}

.welcome-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
  width: min(860px, calc(100% - 12px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
    linear-gradient(180deg, rgba(189, 190, 47, .12), rgba(127, 169, 201, .08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 24px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.welcome-card-media {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}

.welcome-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.welcome-card h2 {
  margin: 0 0 14px;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 47px);
  line-height: .94;
  font-weight: 700;
}

.welcome-title-top,
.welcome-title-brand {
  display: block;
}

.welcome-title-brand {
  white-space: nowrap;
}

.welcome-title-top {
  white-space: nowrap;
}

.welcome-card p {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.16;
}

.welcome-hint {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  width: fit-content;
  min-width: 0;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: var(--dark);
  background: rgba(255, 255, 255, .96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.welcome-hint::before {
  content: none;
}

.cookie-bubble {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 88;
  width: min(960px, calc(100% - 40px));
  padding: 28px 34px 30px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
    linear-gradient(180deg, rgba(189, 190, 47, .12), rgba(127, 169, 201, .08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 24px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transform: translateX(-50%);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.cookie-bubble.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

.cookie-bubble-tab {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 87;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
    linear-gradient(180deg, rgba(189, 190, 47, .12), rgba(127, 169, 201, .08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 16px 40px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity .24s ease, visibility .24s ease, transform .2s ease;
}

.cookie-bubble-tab.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-bubble-tab:hover,
.cookie-bubble-tab:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.cookie-bubble-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}

.cookie-bubble h3 {
  margin: 0;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .96;
  text-align: center;
}

.cookie-bubble-close {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  color: var(--white);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.cookie-bubble p {
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  text-wrap: balance;
}

.cookie-bubble-preferences {
  display: none;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.cookie-bubble-preferences.is-visible {
  display: block;
}

.cookie-pref-toggle {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 16px 64px 16px 18px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--white) !important;
  text-align: left;
  transform: none !important;
}

.cookie-pref-toggle::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-right: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: translateY(-60%) rotate(45deg);
  transition: transform .18s ease;
}

.cookie-pref-toggle[aria-expanded="true"]::after {
  transform: translateY(-18%) rotate(-135deg);
}

.cookie-pref-name {
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--white);
}

.cookie-pref-status {
  color: var(--white);
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  text-align: right;
}

.cookie-pref-panel {
  display: none;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .02);
}

.cookie-bubble-preferences.is-open .cookie-pref-panel {
  display: block;
}

.cookie-pref-panel p {
  margin: 0;
}

.cookie-bubble-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.cookie-bubble button,
.cookie-bubble .cookie-bubble-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  color: var(--dark);
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.cookie-bubble-close {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--white) !important;
  transition: none !important;
  transform: translateY(-50%) !important;
}

.cookie-bubble button:hover,
.cookie-bubble button:focus-visible,
.cookie-bubble button:active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-1px);
}

.cookie-bubble-close:hover,
.cookie-bubble-close:focus-visible,
.cookie-bubble-close:active {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--white) !important;
  transform: translateY(-50%) !important;
}

.cookie-bubble .cookie-bubble-link {
  width: fit-content;
  margin: 0 auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background:
    url("images/Whatsapp.svg") center / 62% no-repeat,
    linear-gradient(180deg, #56ec63 0%, #1ebe57 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float::before {
  content: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .32);
}

.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: 1px;
  border-color: rgba(255, 255, 255, .88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .14)),
    linear-gradient(180deg, rgba(182, 214, 228, .18), rgba(255, 255, 255, .08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .3),
    0 12px 30px rgba(18, 34, 26, .18);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  font-size: 24px;
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.cta-banner .outline-button:hover,
.cta-banner .outline-button:focus-visible,
.cta-banner .outline-button:active {
  color: var(--white);
  border-color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .2)),
    linear-gradient(180deg, rgba(189, 190, 47, .14), rgba(255, 255, 255, .12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    0 16px 34px rgba(18, 34, 26, .24);
  transform: translateY(-1px);
}

.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-showcase {
  width: 100%;
  height: clamp(300px, 32vw, 455px);
  padding: 0;
  background: #f5f4ef;
  overflow: hidden;
}

.redbus-packshot {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.red-band {
  padding: 58px 24px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.3;
}

.red-band p {
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
}

.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;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(84px, 13vw, 182px);
  font-weight: 400;
  line-height: .88;
  text-align: right;
  opacity: 0;
  animation: hero-logo-rise 1.1s ease .28s forwards;
}

.hero-brand .brand-title {
  right: 40px;
  bottom: 10px;
}

.brand-title em {
  display: block;
  font-style: italic;
  font-weight: 700;
}

.brand-title-mobile {
  display: none;
}

.brand-title em.brand-title-mobile {
  display: none;
}

.location-title {
  right: 40px;
  bottom: 10px;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(84px, 13vw, 182px);
  font-weight: 400;
  line-height: .88;
  text-align: right;
  opacity: 0;
  animation: hero-logo-rise 1.1s ease .28s forwards;
}

.location-title strong,
.location-title span {
  display: block;
}

.location-title strong {
  font-weight: 700;
}

.location-title span {
  font-weight: 400;
}

.contact-title {
  right: 40px;
  bottom: 10px;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(84px, 13vw, 182px);
  font-weight: 700;
  line-height: .88;
  text-align: right;
  opacity: 0;
  animation: hero-logo-rise 1.1s ease .28s forwards;
}

.contact-title em {
  display: block;
  font-style: italic;
  font-weight: 700;
}

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

.spoons img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(260px, 28vw, 420px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
}

.spoons-copy {
  padding: 4px 24px 58px;
  color: var(--text);
  background: var(--gray);
  text-align: center;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.24;
}

.spoons-copy p {
  width: min(1420px, calc(100% - 56px));
  margin: 0 auto;
}

.spoons-copy p:first-child {
  font-size: clamp(21px, 1.95vw, 32px);
  line-height: 1.16;
}

.spoons-copy p + p {
  margin-top: 28px;
  font-size: clamp(21px, 1.95vw, 32px);
  line-height: 1.18;
}

.format-heading {
  padding: 22px 0 38px;
  background: var(--gray);
}

.format-heading h2 {
  margin: 0;
  color: var(--muted);
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-size: clamp(38px, 6.8vw, 72px);
  line-height: .9;
  text-align: left;
  padding-left: 28px;
}

.format-heading h2 span {
  display: block;
}

.format-heading h2 span:first-child {
  font-weight: 700;
}

.format-heading h2 span:last-child {
  font-weight: 400;
}

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

.format-tabs a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  color: inherit;
}

.format-tabs a::before {
  content: "";
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--white);
  grid-area: 1 / 1;
  transition: transform .22s ease, background-color .22s ease;
}

.format-tabs img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  grid-area: 1 / 1;
  place-self: center;
  box-sizing: border-box;
  transition: transform .22s ease, filter .22s ease;
}

.format-tabs span {
  max-width: 9ch;
  line-height: .98;
  font-family: "Poppins", "Neue Montreal", "DM Sans", Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
}

@media (min-width: 561px) {
  .format-tabs[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .format-tabs[data-reveal] a {
    opacity: 0;
  }

  .format-tabs[data-reveal].is-visible a {
    opacity: 1;
    animation-duration: 1.15s;
    animation-timing-function: cubic-bezier(.2, .9, .18, 1.08);
    animation-fill-mode: both;
  }

  .format-tabs[data-reveal].is-visible a:nth-child(1) {
    animation-name: marble-left;
  }

  .format-tabs[data-reveal].is-visible a:nth-child(2) {
    animation-name: marble-center;
    animation-delay: .08s;
  }

  .format-tabs[data-reveal].is-visible a:nth-child(3) {
    animation-name: marble-right;
    animation-delay: .16s;
  }
}

@media (hover: hover) and (pointer: fine) {
  .format-tabs a:hover::before,
  .format-tabs a:focus-visible::before {
    transform: scale(1.08);
    background: var(--dark);
  }

  .format-tabs a:hover img,
  .format-tabs a:focus-visible img {
    transform: scale(1.08);
    filter: brightness(0) invert(1);
  }
}

@keyframes marble-left {
  0% {
    opacity: 0;
    transform: translateX(-170px) translateY(-12px) scale(.78);
  }

  38% {
    opacity: 1;
    transform: translateX(30px) translateY(0) scale(1.04);
  }

  58% {
    transform: translateX(-16px) scale(.98);
  }

  76% {
    transform: translateX(9px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes marble-center {
  0% {
    opacity: 0;
    transform: translateY(-150px) scale(.76);
  }

  40% {
    opacity: 1;
    transform: translateY(18px) scale(1.05);
  }

  60% {
    transform: translateY(-10px) scale(.99);
  }

  78% {
    transform: translateY(5px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marble-right {
  0% {
    opacity: 0;
    transform: translateX(170px) translateY(-12px) scale(.78);
  }

  38% {
    opacity: 1;
    transform: translateX(-30px) translateY(0) scale(1.04);
  }

  58% {
    transform: translateX(16px) scale(.98);
  }

  76% {
    transform: translateX(-9px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

#envasadas,
#graneles {
  scroll-margin-top: 120px;
}

.product-band > .container.narrow {
  width: min(var(--max), calc(100% - 56px));
  max-width: none;
}

.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: clamp(20px, 1.55vw, 28px);
  line-height: 1.2;
}

@media (min-width: 561px) {
  .spoons img {
    max-height: clamp(340px, 34vw, 520px);
  }

  .product-band > .container.narrow {
    width: 100%;
    max-width: none;
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1680px) {
  .spoons img {
    width: min(100%, 1760px);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }
}

.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;
}

.product-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.product-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.product-carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: clamp(220px, 22vw, 300px) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.product-slide img {
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border: 5px solid currentColor;
  border-radius: 18px;
}

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

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

.product-slide h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: .98;
}

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

.product-slide p {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.2;
}

.product-slide p strong {
  font-weight: 700;
}

.product-carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.product-carousel-control::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
}

.product-carousel-control.prev::before {
  transform: rotate(-135deg);
}

.product-carousel-control.next::before {
  transform: rotate(45deg);
}

.product-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.product-carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
}

.product-carousel-dots button.is-active {
  background: var(--white);
}

@media (max-width: 1200px) {
  .product-carousel {
    gap: 24px;
  }

  .product-slide p {
    font-size: clamp(17px, 1.7vw, 22px);
  }
}

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

.tea-choice .container {
  width: min(1500px, calc(100% - 24px));
}

#tes {
  scroll-margin-top: 118px;
}

.tea-choice h2 {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
}

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

.tea-choice p {
  max-width: 700px;
  margin: 0 auto 14px;
  font-size: 22px;
  line-height: 1.18;
}

.tea-grid-frame {
  --tea-frame-side-pad: clamp(42px, 5vw, 96px);
  --tea-frame-bottom-pad: 82px;
  position: relative;
  overflow: hidden;
  padding: 0 var(--tea-frame-side-pad) var(--tea-frame-bottom-pad);
  margin: 0 calc(var(--tea-frame-side-pad) * -1);
}

.tea-grid-frame::before,
.tea-grid-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(8px, 1.4vw, 18px);
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, .72),
    rgba(255, 255, 255, .22) 44%,
    rgba(255, 255, 255, .04) 72%,
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
}

.tea-grid-frame::before {
  left: 0;
}

.tea-grid-frame::after {
  right: 0;
  transform: scaleX(-1);
}

.tea-grid-hint {
  position: absolute;
  top: 46%;
  z-index: 4;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.tea-grid-hint::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top: 4px solid #c2de3d;
  border-right: 4px solid #c2de3d;
}

.tea-grid-hint.prev {
  left: 12px;
}

.tea-grid-hint.prev::before {
  transform: rotate(-135deg);
}

.tea-grid-hint.next {
  right: 12px;
}

.tea-grid-hint.next::before {
  transform: rotate(45deg);
}

.tea-grid {
  --tea-grid-gap: 20px;
  display: flex;
  gap: var(--tea-grid-gap);
  align-items: start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 0;
  margin: -10px 0 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tea-grid::-webkit-scrollbar {
  display: none;
}

.tea-grid figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0;
  flex: 0 0 calc((100% - (2 * var(--tea-grid-gap))) / 3);
  scroll-snap-align: center;
  transition: transform .22s ease;
}

.tea-grid img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center top;
  transition: transform .22s ease;
}

.tea-grid figcaption {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-top: -72px;
  padding: 0 0 0.24em;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.tea-grid-dots {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .tea-grid figure:hover {
    transform: scale(1.03);
  }

  .tea-grid figure:hover img {
    transform: scale(1.1);
  }
}

.map-route {
  margin-top: 0;
  position: relative;
  height: clamp(286px, 30vw, 438px);
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  background: #f5f4ef;
}

.map-route img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  opacity: .9;
  object-fit: cover;
  object-position: center;
}

.location-content {
  padding: 42px 24px 108px;
  text-align: center;
  background: var(--gray);
}

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

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

.address-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: fit-content;
  max-width: min(100%, 440px);
  padding: 8px 22px;
  margin: 0 auto 40px;
  border-radius: 14px;
  color: var(--purple);
  background: var(--white);
  font-size: 25px;
  font-weight: 400;
  transition: background-color .18s ease, color .18s ease;
}

.address-chip-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.address-chip-icon {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.address-chip-icon::before,
.address-chip-icon::after {
  content: "";
  position: absolute;
}

.address-chip-icon::before {
  inset: 0;
  border-radius: 50%;
  background: var(--purple);
  transition: background-color .18s ease;
}

.address-chip-icon::after {
  inset: 8px;
  background: var(--white);
  transition: background-color .18s ease;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1100,246.25c-325.11,0-588.55,263.44-588.55,588.55,0,438.43,529.96,968.96,552.52,991.3,20.01,19.8,51.65,19.8,71.66,0,22.57-22.34,552.52-552.87,552.52-991.3,0-325.11-263.44-588.55-588.55-588.55ZM1100,1133.95c-165.09,0-299-133.9-299-299s133.9-299,299-299,299,133.9,299,299-133.9,299-299,299Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1100,246.25c-325.11,0-588.55,263.44-588.55,588.55,0,438.43,529.96,968.96,552.52,991.3,20.01,19.8,51.65,19.8,71.66,0,22.57-22.34,552.52-552.87,552.52-991.3,0-325.11-263.44-588.55-588.55-588.55ZM1100,1133.95c-165.09,0-299-133.9-299-299s133.9-299,299-299,299,133.9,299,299-133.9,299-299,299Z"/></svg>');
}

.address-chip:active,
.address-chip:focus-visible {
  color: var(--white);
  background: var(--purple);
}

.address-chip:active .address-chip-icon::before,
.address-chip:focus-visible .address-chip-icon::before {
  background: var(--white);
}

.address-chip:active .address-chip-icon::after,
.address-chip:focus-visible .address-chip-icon::after {
  background: var(--purple);
}

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

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

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

.contact-page {
  padding-top: 64px;
}

.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-section > p {
  margin-bottom: 64px;
}

.contact-line {
  white-space: nowrap;
}

.contact-section .phone-prefix {
  font-style: italic;
  font-weight: 400;
}

.redbus-contact p {
  max-width: 780px;
}

.redbus-contact strong {
  white-space: nowrap;
}

.contact-form {
  width: min(100%, 1060px);
  margin: 0 auto 46px;
  padding: 28px 34px 26px;
  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;
  position: relative;
  font-size: 18px;
}

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

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text-soft);
  font: inherit;
  font-size: 17px;
}

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

.form-grid .message::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -16px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--white);
  pointer-events: none;
}

input::placeholder,
textarea::placeholder {
  color: #c2c2c2;
  font-size: 1.08em;
  font-style: italic;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 48px;
  margin: -54px 0 0 auto;
  border: 0;
  border-radius: 10px;
  color: #000;
  background: var(--white);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
}

.contact-form button::after {
  content: "➤";
  margin-left: 12px;
  font-size: 1.15em;
}

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

.contact-chips {
  --contact-chip-accent: var(--purple);
  display: grid;
  justify-items: center;
  gap: 13px;
}

.contact-section:not(.redbus-contact) .contact-chips {
  --contact-chip-accent: var(--purple);
}

.redbus-contact .contact-chips {
  --contact-chip-accent: var(--red);
}

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

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

.contact-chips a {
  display: inline-flex;
  gap: 18px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 440px);
  padding: 8px 22px;
  border-radius: 14px;
  color: var(--contact-chip-accent);
  background: var(--white);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  transition: background-color .18s ease, color .18s ease;
}

.contact-chip-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-chip-icon {
  --contact-chip-icon-size: 56px;
  --contact-chip-glyph-inset: 6px;
  position: relative;
  width: var(--contact-chip-icon-size);
  height: var(--contact-chip-icon-size);
  flex: 0 0 auto;
}

.contact-chip-icon::before,
.contact-chip-icon::after {
  content: "";
  position: absolute;
}

.contact-chip-icon::before {
  inset: 0;
  border-radius: 50%;
  background: var(--contact-chip-accent);
  transition: background-color .18s ease;
}

.contact-chip-icon::after {
  inset: var(--contact-chip-glyph-inset);
  background: var(--white);
  transition: background-color .18s ease;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.contact-chip-content.is-mail .contact-chip-icon::after {
  inset: 4px;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1442.28,710.83h-684.57c-38.06,0-68.91,30.85-68.91,68.91v519.04c0,38.06,30.85,68.91,68.91,68.91h356.55l159.79,137.57c18.69,16.1,47.65,2.81,47.65-21.86v-115.71h120.58c38.06,0,68.91-30.85,68.91-68.91v-519.04c0-38.06-30.85-68.91-68.91-68.91ZM891.71,1106.73c-37.25,0-67.47-30.22-67.47-67.47s30.22-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47ZM1101.09,1106.73c-37.25,0-67.47-30.22-67.47-67.47s30.22-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47ZM1310.47,1106.73c-37.27,0-67.47-30.22-67.47-67.47s30.2-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1442.28,710.83h-684.57c-38.06,0-68.91,30.85-68.91,68.91v519.04c0,38.06,30.85,68.91,68.91,68.91h356.55l159.79,137.57c18.69,16.1,47.65,2.81,47.65-21.86v-115.71h120.58c38.06,0,68.91-30.85,68.91-68.91v-519.04c0-38.06-30.85-68.91-68.91-68.91ZM891.71,1106.73c-37.25,0-67.47-30.22-67.47-67.47s30.22-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47ZM1101.09,1106.73c-37.25,0-67.47-30.22-67.47-67.47s30.22-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47ZM1310.47,1106.73c-37.27,0-67.47-30.22-67.47-67.47s30.2-67.47,67.47-67.47,67.47,30.2,67.47,67.47-30.2,67.47-67.47,67.47Z"/></svg>');
}

.contact-chip-content.is-phone .contact-chip-icon::after {
  inset: 2px;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1324.33,517.45h-448.65c-50.05,0-90.63,40.58-90.63,90.63v912.81c0,50.05,40.58,90.63,90.63,90.63h448.65c50.05,0,90.63-40.58,90.63-90.63v-912.81c0-50.05-40.58-90.63-90.63-90.63ZM966.31,581.55c2.99-2.99,7.13-4.85,11.67-4.85h244.05c9.1,0,16.5,7.38,16.5,16.5,0,4.54-1.85,8.66-4.83,11.65-2.99,2.98-7.13,4.83-11.67,4.83h-244.05c-9.1,0-16.5-7.38-16.5-16.48,0-4.56,1.85-8.67,4.83-11.65ZM1154.7,1553.7c-3.89,3.88-9.27,6.29-15.2,6.29h-78.98c-11.87,0-21.48-9.63-21.48-21.46,0-5.92,2.4-11.29,6.28-15.17,3.89-3.89,9.27-6.29,15.2-6.29h78.98c11.87,0,21.48,9.61,21.48,21.46,0,5.92-2.4,11.28-6.28,15.17ZM1371.38,1418.31c0,24.76-20.09,44.83-44.83,44.83h-453.11c-24.75,0-44.83-20.07-44.83-44.83v-707.64c0-24.76,20.09-44.83,44.83-44.83h453.11c24.75,0,44.83,20.07,44.83,44.83v707.64Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2200 2200"><path fill="%23000" d="M1324.33,517.45h-448.65c-50.05,0-90.63,40.58-90.63,90.63v912.81c0,50.05,40.58,90.63,90.63,90.63h448.65c50.05,0,90.63-40.58,90.63-90.63v-912.81c0-50.05-40.58-90.63-90.63-90.63ZM966.31,581.55c2.99-2.99,7.13-4.85,11.67-4.85h244.05c9.1,0,16.5,7.38,16.5,16.5,0,4.54-1.85,8.66-4.83,11.65-2.99,2.98-7.13,4.83-11.67,4.83h-244.05c-9.1,0-16.5-7.38-16.5-16.48,0-4.56,1.85-8.67,4.83-11.65ZM1154.7,1553.7c-3.89,3.88-9.27,6.29-15.2,6.29h-78.98c-11.87,0-21.48-9.63-21.48-21.46,0-5.92,2.4-11.29,6.28-15.17,3.89-3.89,9.27-6.29,15.2-6.29h78.98c11.87,0,21.48,9.61,21.48,21.46,0,5.92-2.4,11.28-6.28,15.17ZM1371.38,1418.31c0,24.76-20.09,44.83-44.83,44.83h-453.11c-24.75,0-44.83-20.07-44.83-44.83v-707.64c0-24.76,20.09-44.83,44.83-44.83h453.11c24.75,0,44.83,20.07,44.83,44.83v707.64Z"/></svg>');
}

.contact-chip-svg {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.contact-chips a:active,
.contact-chips a:focus-visible {
  color: var(--white);
  background: var(--contact-chip-accent);
}

.contact-chips a:active .contact-chip-icon::before,
.contact-chips a:focus-visible .contact-chip-icon::before {
  background: var(--white);
}

.contact-chips a:active .contact-chip-icon::after,
.contact-chips a:focus-visible .contact-chip-icon::after {
  background: var(--contact-chip-accent);
}

.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-start;
}

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

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

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

.policy-content h3 {
  margin: 14px 0 8px;
  font-size: 15px;
}

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

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

.policy-content em {
  font-style: italic;
}

.policy-content a {
  color: #cde486;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content ul {
  margin: 0 0 12px 20px;
  padding: 0;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content code {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .94em;
  color: #dceca3;
}

.policy-cookie-card {
  margin: 0 0 14px;
  padding: 0;
  border: 1px solid rgba(205, 228, 134, .28);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.policy-cookie-list {
  margin: 18px 0 18px;
}

.policy-cookie-card summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 64px 18px 22px;
  cursor: pointer;
  list-style: none;
}

.policy-cookie-card summary::-webkit-details-marker {
  display: none;
}

.policy-cookie-card summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 3px solid #cde486;
  border-bottom: 3px solid #cde486;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .18s ease;
}

.policy-cookie-card[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.policy-cookie-name {
  font-size: 18px;
  line-height: 1.1;
}

.policy-cookie-body {
  padding: 22px 22px 24px;
  border-top: 1px solid rgba(205, 228, 134, .18);
}

.policy-cookie-type {
  color: #cde486;
  font-weight: 700;
  text-align: right;
}

.policy-contact-chips {
  --contact-chip-accent: var(--green);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 72px;
  display: grid;
  gap: 14px;
}

.policy-contact-chips a {
  min-height: 72px;
  font-size: 22px;
}

.policy-contact-chips .contact-chip-icon {
  --contact-chip-icon-size: 56px;
}

.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: 1024px) {
  .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.page-home:not(.page-subpage) .site-header:not(.is-scrolled):not(.is-open) .brand {
    display: block;
    margin-right: auto;
  }

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

  body.page-home:not(.page-subpage) .site-header:not(.is-scrolled):not(.is-open) {
    justify-content: space-between;
  }

  .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: 720px;
  }

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

  .page-subpage .hero-copy .kicker {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(22px, 4.2vw, 30px);
    line-height: 1.04;
  }

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

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

  .hero .pill-button {
    margin-top: 88px;
    min-width: min(320px, calc(100vw - 96px));
    min-height: 48px;
    font-size: 22px;
  }

  .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 {
    grid-template-columns: 1fr;
  }

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

  .product-carousel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-carousel-control {
    display: none;
  }

  .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;
  }

  .hero-brand .brand-title {
    display: block;
    right: 18px;
    bottom: 18px;
    font-size: clamp(58px, 13vw, 112px);
    line-height: .92;
    text-align: right;
  }

  .hero-brand .brand-title .brand-title-desktop {
    display: none;
  }

  .hero-brand .brand-title .brand-title-mobile {
    display: block;
  }

  .hero-brand .brand-title .brand-title-mobile-top {
    white-space: nowrap;
  }

  .hero-location .location-title,
  .hero-contact .contact-title {
    display: block;
    right: 18px;
    bottom: 18px;
    font-size: clamp(54px, 11.5vw, 96px);
    line-height: .94;
    text-align: right;
  }

  .map-route {
    margin-top: 0;
  }

  .redbus-showcase,
  .map-route {
    height: clamp(212px, 52vw, 308px);
  }

  .spoons img {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }

  .red-band {
    padding: 42px 20px;
    font-size: clamp(18px, 4.8vw, 21px);
    line-height: 1.35;
  }

  .red-band p {
    width: min(34ch, 100%);
  }

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

  .tea-grid {
    max-width: min(100vw - 8px, 460px);
    margin: 0 auto;
  }

  .tea-grid-frame {
    --tea-frame-side-pad: 40px;
    --tea-frame-bottom-pad: 58px;
  }

  .tea-grid-frame::before,
  .tea-grid-frame::after {
    width: 8px;
    backdrop-filter: blur(6px) saturate(112%);
    -webkit-backdrop-filter: blur(6px) saturate(112%);
  }

  .tea-grid-hint {
    width: 18px;
    height: 18px;
    top: 44%;
  }

  .tea-grid-hint::before {
    border-top-width: 3px;
    border-right-width: 3px;
  }

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

  .tea-grid figcaption {
    margin-top: -48px;
  }

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

  .form-grid label:nth-child(1) {
    order: 1;
  }

  .form-grid label:nth-child(3) {
    order: 2;
  }

  .form-grid label:nth-child(4) {
    order: 3;
  }

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

@media (max-width: 560px) {
  .format-tabs[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .policy-hero {
    min-height: auto;
    padding: 82px 16px 10px;
    justify-content: flex-start;
  }

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

  .policy-content {
    padding-top: 54px;
  }

  .policy-contact-chips {
    width: min(100% - 32px, var(--max));
    margin-bottom: 54px;
  }

  .policy-cookie-card summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 56px 16px 16px;
  }

  .policy-cookie-name,
  .policy-cookie-type {
    text-align: left;
  }

  .policy-cookie-name {
    font-size: 18px;
  }

  .policy-contact-chips a {
    min-height: 76px;
    font-size: 18px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .welcome-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px 20px;
    border-radius: 28px;
  }

  .welcome-card-media {
    width: min(100%, 280px);
    margin: 0 auto;
    border-radius: 24px;
  }

  .welcome-card h2 {
    font-size: 34px;
  }

  .welcome-title-top {
    white-space: normal;
  }

  .welcome-title-brand {
    white-space: nowrap;
  }

  .welcome-card p {
    max-width: none;
    font-size: 18px;
  }

  .welcome-hint {
    margin-top: 18px;
    font-size: 13px;
  }

  .cookie-bubble {
    width: min(100% - 24px, 620px);
    padding: 22px 18px 22px;
    bottom: 12px;
    border-radius: 28px;
  }

  .cookie-bubble-tab {
    min-width: 188px;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 15px;
  }

  .cookie-bubble-header {
    margin-bottom: 16px;
  }

  .cookie-bubble h3 {
    padding-right: 42px;
    font-size: 26px;
    text-align: left;
  }

  .cookie-bubble-close {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 36px;
  }

  .cookie-bubble p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .cookie-pref-toggle {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 64px;
    padding: 14px 52px 14px 14px;
  }

  .cookie-pref-name,
  .cookie-pref-status {
    font-size: 18px;
  }

  .cookie-pref-status {
    text-align: left;
  }

  .cookie-bubble-actions {
    grid-template-columns: 1fr;
  }

  .cookie-bubble button,
  .cookie-bubble .cookie-bubble-link {
    min-height: 58px;
    font-size: 18px;
  }

  .contact-line {
    white-space: normal;
  }

  .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-brand .brand-title {
    display: block;
    right: 12px;
    bottom: 18px;
    font-size: clamp(46px, 17vw, 92px);
    line-height: .94;
    text-align: right;
  }

  .hero-brand .brand-title .brand-title-desktop {
    display: none;
  }

  .hero-brand .brand-title .brand-title-mobile {
    display: block;
  }

  .hero-brand .brand-title .brand-title-mobile-top {
    white-space: nowrap;
  }

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

  .hero-location .location-title {
    display: block;
    right: 12px;
    bottom: 18px;
    font-size: clamp(46px, 17vw, 92px);
    line-height: .94;
    text-align: right;
  }

  .hero-contact .contact-title {
    display: block;
    right: 12px;
    bottom: 18px;
    font-size: clamp(46px, 17vw, 92px);
    line-height: .94;
    text-align: right;
  }

  .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;
  }

  .format-heading h2 {
    font-size: 30px;
    line-height: .96;
    padding-left: 0;
    text-align: center;
  }

  .why-title h2 {
    font-size: 36px;
    line-height: .92;
    padding-left: 0;
    text-align: center;
  }

  .format-heading h2 span {
    white-space: nowrap;
  }

  .format-tabs {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 320px;
    overflow: hidden;
  }

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

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

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

  .format-tabs img {
    width: 134px;
    height: 134px;
    padding: 28px;
    box-sizing: content-box;
  }

  .format-tabs span {
    max-width: 11ch;
    font-size: 28px;
    line-height: 1.02;
  }

  .product-band h2,
  .product-band > .container > p,
  .product-slide,
  .product-slide h3,
  .product-slide p {
    text-align: center;
  }

  .product-slide {
    justify-items: center;
  }

  .product-slide > div {
    width: 100%;
  }

  .tea-grid {
    --tea-grid-gap: 12px;
  }

  .tea-grid-frame::before,
  .tea-grid-frame::after {
    width: 6px;
  }

  .tea-grid-frame {
    --tea-frame-side-pad: 32px;
    --tea-frame-bottom-pad: 56px;
  }

  .tea-grid-hint {
    width: 14px;
    height: 14px;
    top: 43%;
  }

  .tea-grid-hint.prev {
    left: 8px;
  }

  .tea-grid-hint.next {
    right: 8px;
  }

  .tea-grid-hint::before {
    border-top-width: 2.5px;
    border-right-width: 2.5px;
  }

  .tea-grid figure {
    flex-basis: 100%;
  }

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

  .tea-grid figcaption {
    margin-top: -6px;
  }

  .tea-grid-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .tea-grid-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(194, 222, 61, .38);
    cursor: pointer;
  }

  .tea-grid-dots button.is-active {
    background: #c2de3d;
  }

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

  .contact-form button {
    width: 100%;
    max-width: none;
    margin: 30px auto 0;
  }

  .contact-chips a {
    max-width: calc(100vw - 32px);
    min-height: 64px;
    gap: 14px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .contact-section .contact-chips a {
    width: min(100%, calc(100vw - 44px));
    max-width: 520px;
    min-height: 188px;
    padding: 20px 24px 26px;
  }

  .contact-section .contact-chip-content {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    transform: none;
    text-align: center;
  }

  .contact-section .contact-chip-content span {
    font-size: clamp(16px, 6vw, 25px);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .contact-chip-icon {
    --contact-chip-icon-size: 46px;
  }

  .contact-section .contact-chip-icon {
    --contact-chip-icon-size: 74px;
  }

  .address-chip {
    width: min(100%, calc(100vw - 44px));
    max-width: 520px;
    min-height: 76px;
    padding: 16px 20px;
    font-size: 18px;
  }

  .address-chip-content {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .address-chip-icon {
    width: 46px;
    height: 46px;
  }

  .location-content {
    padding-bottom: 36px;
  }

  .map-frame {
    margin-bottom: 0;
  }

}
