:root {
  --header-offset: 96px;
  --color-accent: #3000b4;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: rgba(0, 0, 0, 0.75);
  --color-surface: rgba(255, 255, 255, 0.78);
  --color-surface-strong: rgba(255, 255, 255, 0.92);
  --color-border: rgba(48, 0, 180, 0.16);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.6rem;
  --container: 72rem;
  --section-rad: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  margin-inline: auto;
}

/* Header */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;

}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-block: var(--space-4);
  background: none;
  transition: padding 200ms ease, background-color 200ms ease, backdrop-filter 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  padding-block: var(--space-3);
}

.site-header.is-scrolled .site-header__inner {
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(48, 0, 180, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px solid transparent;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__logo {
  width: auto;
  height: 3.5rem;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  padding: var(--space-4);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-block: 0.15rem;
  font: 600 0.95rem/1.2 "Manrope", sans-serif;
  color: var(--color-black);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-accent);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font: 700 0.95rem/1 "Instrument Sans", sans-serif;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.26rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.nav-toggle__line {
  width: 1rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--color-black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(0.33rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-0.33rem) rotate(-45deg);
}

@media (min-width: 48rem) {
  .site-header__inner {
    padding-inline: var(--space-5);
  }
}

@media (min-width: 64rem) {
  .site-header__inner {
    gap: var(--space-8);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }

  .header-cta {
    display: inline-flex;
  }
}


.bottle-hero {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 4rem);
  padding-top: 0; 
}

.bottle-hero__shell {
  overflow: hidden;
  border-radius: 0;
}

.bottle-hero__media {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.bottle-hero__media img {
  cursor: pointer;
  padding-inline: 1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bottle-hero__content {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
}

.bottle-hero__title {
  margin: 0;
  color: var(--color-black);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.bottle-hero__subtitle {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.45;
}

.bottle-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(48, 0, 180, 0.35);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.96));
  color: var(--color-accent);
  font: 600 0.95rem/1 "Manrope", sans-serif;
  box-shadow: 0 6px 16px rgba(48, 0, 180, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bottle-hero__button:hover,
.bottle-hero__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(48, 0, 180, 0.55);
  box-shadow: 0 10px 22px rgba(48, 0, 180, 0.18);
}

@media (min-width: 48rem) {
  .bottle-hero__shell {
    border-radius: 0;
  }

  .bottle-hero__media {
    aspect-ratio: 16 / 5;
  }

  .bottle-hero__content {
    padding-inline: 2rem;
  }
}

@media (min-width: 64rem) {
  .bottle-hero {
    padding-top: 1.5rem;
  }

  .bottle-hero__media {
    aspect-ratio: 16 / 4.5;
  }

  .bottle-hero__title {
    font-size: clamp(2.1rem, 3vw, 3.1rem);
  }
}

/* About */

.drive-about {
  padding: clamp(1rem, 2.8vw, 2.5rem) 0 clamp(2rem, 4vw, 4rem);
}

.drive-about__inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  max-width: 66rem;
}

.drive-about__heading-wrap {
  display: flex;
  justify-content: center;
}

.drive-about__heading {
  margin: 0;
  color: var(--color-accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
}

.drive-about__content {
  color: rgba(0, 0, 0, 0.86);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  padding-inline: 1rem;
  text-align: justify;
}

.drive-about__content p {
  margin: 0 0 0.25rem;
}

.drive-about__list {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.25rem;
}

.drive-about__list li {
  margin-bottom: 0.15rem;
}

@media (min-width: 56rem) {
  .drive-about__inner {
    grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.95fr);
    gap: 2.5rem;
  }

  .drive-about__heading-wrap {
    justify-content: flex-end;
    padding-top: 0.15rem;
  }

  .drive-about__heading {
    text-align: right;
  }
}

/* How it works */

.drive-steps {
  padding: clamp(1rem, 2.8vw, 2.5rem) 0 clamp(2rem, 4vw, 4rem);
}

.drive-steps__inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  max-width: 66rem;
}

.drive-steps__heading-wrap {
  display: flex;
  justify-content: center;
}

.drive-steps__heading {
  margin: 0;
  color: var(--color-accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
}

.drive-steps__content {
  padding-inline: 1rem;
}

.drive-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drive-steps__item {
  margin-bottom: 0.9rem;
}

.drive-steps__item:last-child {
  margin-bottom: 0;
}

.drive-steps__item-title {
  margin: 0;
  color: var(--color-black);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 1vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.drive-steps__item-title span {
  margin-right: 0.25rem;
}

.drive-steps__item p {
  margin: 0.05rem 0 0;
  color: rgba(0, 0, 0, 0.86);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.4;
}

@media (min-width: 56rem) {
  .drive-steps__inner {
    grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.95fr);
    gap: 2.5rem;
  }

  .drive-steps__heading-wrap {
    justify-content: flex-end;
    padding-top: 0.15rem;
  }

  .drive-steps__heading {
    text-align: right;
  }
}

/* Event details */

.drive-event {
  padding: clamp(1rem, 2.8vw, 2.5rem) 0 clamp(2rem, 4vw, 4rem);
}

.drive-event__inner {
  max-width: 46rem;
  padding-inline: 1rem;
  text-align: center;
}

.drive-event__title {
  margin: 0 0 0.6rem;
  color: var(--color-accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.drive-event__line {
  margin: 0.1rem 0;
  color: rgba(0, 0, 0, 0.86);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  line-height: 1.35;
}

.drive-event__line#extra{
    padding-top: 1rem;
}

.drive-event__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.5rem auto 1.35rem;
  max-width: 30rem;
}

.drive-event__btn {
  min-height: 3rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-white);
  font: 700 1rem/1 "Manrope", sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.drive-event__btn:hover,
.drive-event__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(48, 0, 180, 0.2);
}

.drive-event__accept {
  max-width: 34rem;
  margin-inline: auto;
  text-align: left;
}

.drive-event__accept-title {
  margin: 0;
  color: var(--color-black);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 800;
}

.drive-event__list {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  color: rgba(0, 0, 0, 0.86);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (min-width: 40rem) {
  .drive-event__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* Pickup form */

.pickup-form-section {
  padding: clamp(1rem, 2.8vw, 2.5rem) 0 clamp(2.5rem, 5vw, 5rem);
}

.pickup-form-section__inner {
  max-width: 34rem;
  padding-inline: 1rem;
  text-align: center;
}

.pickup-form-section__title {
  margin: 0 0 1.15rem;
  color: var(--color-accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.pickup-form {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.pickup-form__field {
  width: 100%;
  min-height: 2.3rem;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(48, 0, 180, 0.45);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 4px 10px rgba(48, 0, 180, 0.08);
  color: rgba(0, 0, 0, 0.9);
  font: 400 0.92rem/1.2 "Instrument Sans", sans-serif;
  outline: none;
}

.pickup-form__field::placeholder {
  color: rgba(0, 0, 0, 0.65);
}

.pickup-form__field:focus {
  border-color: rgba(48, 0, 180, 0.8);
  box-shadow: 0 0 0 3px rgba(48, 0, 180, 0.12);
}

.pickup-form__field--select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-accent) 50%), linear-gradient(135deg, var(--color-accent) 50%, transparent 50%);
  background-position: calc(100% - 1rem) 50%, calc(100% - 0.75rem) 50%;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.pickup-form__select-wrap {
  width: 100%;
}

.pickup-form__submit {
  min-width: 9.5rem;
  min-height: 2.4rem;
  margin-top: 0.35rem;
  padding: 0.45rem 1.5rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--color-accent);
  color: var(--color-white);
  font: 700 0.9rem/1 "Manrope", sans-serif;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(48, 0, 180, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.pickup-form__submit:hover,
.pickup-form__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(48, 0, 180, 0.28);
}

/* Footer CTA section */
.site-footer {
  background: #bdbcbc;
  padding: 3rem 0 1.2rem;
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.15rem;
}

.site-footer__title {
  margin: 0;
  color: #111111;
  font: 800 clamp(2.35rem, 5vw, 4.2rem)/0.98 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1.5px solid #2e00c5;
  background: #ffffff;
  color: #2e00c5;
  font: 700 clamp(1.3rem, 2.8vw, 2rem)/1 "Manrope", sans-serif;
  box-shadow: 0 10px 20px rgba(46,0,197,0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(46,0,197,0.18);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
  margin-top: 0.6rem;
  color: #111111;
  font: 500 0.92rem/1.2 "Instrument Sans", sans-serif;
}

.site-footer__nav a {
  color: #111111;
}

.site-footer__nav a:hover{
  color: var(--color-accent);
  transition: all ease 200ms;
}

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 0;
  color: #111111;
  font: 500 0.9rem/1.2 "Instrument Sans", sans-serif;
}

.site-footer__bar p {
  margin: 0;
}

@media (max-width: 47.999rem) {
  .site-footer__bar {
    flex-direction: column;
    text-align: center;
  }
}