@font-face {
  font-family: "Barlow";
  src: url("assets/barlow-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/barlow-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/barlow-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/barlow-bold-italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-condensed-bold-italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --red: #e00000;
  --black: #000;
  --ink: #1e1e1e;
  --muted: #737373;
  --line: #d9d9d9;
  --page-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Barlow", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  height: 83px;
  background: #fff;
  position: relative;
  z-index: 10;
}

.header-inner {
  width: min(var(--page-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 198px;
  height: 50px;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-cta {
  width: 233px;
}

.header-cta:hover,
.primary-button:hover,
.newsletter button:hover {
  background: #bd0000;
}

.header-cta:active,
.primary-button:active,
.newsletter button:active {
  transform: translateY(1px);
}

.hero {
  min-height: 856px;
  overflow: hidden;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url("assets/reception.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  width: min(var(--page-width), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 94px;
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  display: table;
  margin: 0 auto 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

h1,
.app-promo h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: 72px;
  line-height: 1;
}

.hero-intro {
  margin: 14px auto 0;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
}

.waitlist-form {
  width: 560px;
  margin: 79px auto 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  min-width: 0;
}

.field label,
.newsletter label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.field input,
.newsletter input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder,
.newsletter input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.field input:focus,
.newsletter input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 0, 0, .12);
}

.field input[aria-invalid="true"],
.newsletter input[aria-invalid="true"] {
  border: 2px solid var(--red);
  background: #fff7f7;
}

.field.has-error label {
  color: var(--red);
}

.field-error {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.field-error:empty {
  display: none;
}

html[dir="rtl"] .field-error {
  text-align: right;
}

.primary-button {
  width: 100%;
  margin-top: 2px;
}

.primary-button:disabled {
  background: #d3d3d3;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

.form-note,
.form-status,
.newsletter-status {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.form-status:empty,
.newsletter-status:empty {
  display: none;
}

.form-status,
.newsletter-status {
  min-height: 0;
  color: var(--red);
  font-weight: 500;
}

.form-status:not(:empty),
.newsletter-status:not(:empty) {
  min-height: 15px;
}

.success-overlay {
  position: fixed;
  z-index: 50;
  inset: 83px 0 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .76);
}

.success-overlay[hidden] {
  display: none;
}

.success-card {
  width: min(590px, 100%);
  padding: 38px 46px 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

.success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.success-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}

.success-card p {
  max-width: 520px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.success-home {
  width: 100%;
  height: 54px;
  border: 2px solid var(--red);
  border-radius: 4px;
  background: #fff;
  color: var(--red);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.success-home:hover,
.success-home:focus-visible {
  background: var(--red);
  color: #fff;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: -106px;
  color: #fff;
}

.footer-surface {
  padding-top: 106px;
  background: linear-gradient(to bottom, transparent 0 106px, var(--black) 106px 100%);
}

.footer-grid {
  width: min(var(--page-width), calc(100% - 48px));
  min-height: 525px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 329px repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(52px, 4.45vw, 64px);
  align-items: start;
  position: relative;
}

.app-promo {
  margin-top: -106px;
}

.app-preview {
  display: block;
  width: 292px;
  height: 259px;
  object-fit: contain;
}

.app-promo h2 {
  margin-top: 41px;
  font-size: 36px;
  line-height: 1;
}

.app-promo h2 span {
  white-space: nowrap;
}

.store-links {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.store-links a,
.store-links img {
  display: block;
}

.store-links img {
  width: 148px;
  height: 43px;
  object-fit: contain;
}

.footer-column {
  padding-top: 33px;
  font-size: 14px;
}

.footer-column h3,
.newsletter label {
  margin: 0 0 25px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
}

.footer-column .spaced-heading {
  margin-top: 88px;
}

.portal-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.portal-column h3 {
  margin-bottom: 0;
}

.portal-column a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.portal-column a:hover,
.language a:hover,
.language button:hover {
  color: #fff;
}

.language,
.socials {
  align-self: end;
  margin-bottom: 51px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.language a,
.language button {
  color: var(--red);
  font-weight: 400;
  text-transform: lowercase;
}

.language button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

html[dir="rtl"] body {
  font-family: Arial, Tahoma, sans-serif;
}

html[dir="rtl"] .socials strong {
  margin-right: 0;
  margin-left: 10px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials strong {
  margin-right: 10px;
}

.socials a,
.socials img {
  display: block;
  width: 27px;
  height: 27px;
}

.newsletter {
  grid-column: 3 / 5;
  width: 100%;
  justify-self: end;
  align-self: end;
  margin-bottom: 48px;
}

.newsletter label {
  margin-bottom: 13px;
}

.newsletter-row {
  height: 54px;
  padding: 3px;
  display: flex;
  border-radius: 8px;
  background: #fff;
}

.newsletter input {
  height: 48px;
  flex: 1;
  min-width: 0;
  border: 0;
}

.newsletter button {
  width: 149px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.newsletter-status {
  margin-top: 6px;
  color: #fff;
  text-align: left;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 292px repeat(2, 1fr);
    column-gap: 44px;
  }

  .portal-column {
    display: none;
  }

  .newsletter {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
  }

  .success-overlay {
    inset: 72px 0 0;
    padding: 16px;
  }

  .success-card {
    padding: 32px 22px 24px;
  }

  .success-check {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    font-size: 36px;
  }

  .success-card h2 {
    font-size: 26px;
  }

  .success-card p {
    margin: 16px auto 26px;
    font-size: 16px;
  }

  .header-inner,
  .hero-inner,
  .footer-grid {
    width: min(100% - 32px, var(--page-width));
  }

  .brand {
    width: 144px;
    height: 40px;
  }

  .header-cta {
    width: auto;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
    padding-bottom: 32px;
  }

  .hero-inner {
    padding: 64px 0 100px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .hero-intro {
    max-width: 500px;
    font-size: 17px;
  }

  .waitlist-form {
    width: min(100%, 560px);
    margin-top: 72px;
    padding: 28px 22px;
    text-align: center;
  }

  .field input,
  .newsletter input {
    text-align: center;
  }

  .name-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    margin-top: -106px;
  }

  .footer-surface {
    padding-top: 106px;
    background: linear-gradient(to bottom, transparent 0 106px, #000 106px 100%);
  }

  .footer-grid {
    min-height: auto;
    padding: 0 0 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    column-gap: 28px;
    row-gap: 42px;
    align-items: stretch;
    text-align: center;
  }

  .app-promo {
    grid-column: 1 / -1;
    width: min(292px, 80vw);
    margin: -106px auto 0;
  }

  .app-preview {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .app-promo h2 {
    margin-top: 28px;
    font-size: clamp(27px, 8.2vw, 32px);
    text-align: left;
  }

  .store-links {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .footer-column {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column,
  .portal-column {
    align-items: center;
  }

  .location-column,
  .hours-column,
  .portal-column {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-column .spaced-heading {
    margin-top: 54px;
  }

  .portal-column {
    display: flex;
    grid-column: 1 / -1;
  }

  .language,
  .socials,
  .newsletter {
    align-self: auto;
    margin: 0;
  }

  .socials {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .newsletter label,
  .newsletter-status {
    text-align: center;
  }

  .language {
    grid-column: 1 / -1;
  }

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand {
    width: 125px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-inner,
  .footer-grid {
    width: calc(100% - 28px);
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    line-height: .92;
  }

  .hero-intro {
    margin-top: 18px;
  }

  .waitlist-form {
    margin-top: 54px;
  }

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

  .location-column,
  .hours-column,
  .portal-column,
  .language,
  .socials,
  .newsletter {
    grid-column: 1;
  }

  .newsletter button {
    width: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* Terms and conditions */
.legal-page {
  background: #f5f5f5;
}

.legal-main {
  min-height: calc(100vh - 83px);
}

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

.legal-hero {
  padding: 76px 0 72px;
  background: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .78)), url("assets/reception.png") center/cover;
  color: #fff;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(48px, 7vw, 72px);
}

.legal-updated {
  margin: 18px 0 0;
  font-size: 14px;
  color: #dedede;
}

.legal-content {
  width: 100%;
  max-width: none;
  padding: 56px 0 190px;
}

.legal-language {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-language button {
  padding: 8px 14px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
}

.legal-language button:hover {
  background: var(--red);
  color: #fff;
}

.legal-copy {
  width: 100%;
  padding: 54px max(24px, calc((100vw - var(--page-width)) / 2));
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  line-height: 1.7;
}

.legal-copy > p:first-child {
  margin-top: 0;
  font-size: 19px;
  font-weight: 500;
}

.legal-copy section {
  margin-top: 38px;
}

.legal-copy h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  font-style: italic;
  text-transform: uppercase;
}

.legal-copy > h2:not(:first-child) {
  margin-top: 48px;
}

.legal-copy p strong:first-child {
  color: var(--ink);
}

.legal-copy p {
  margin: 0 0 14px;
}

.legal-copy a {
  color: var(--red);
  font-weight: 700;
}

.legal-copy-ar {
  font-family: Arial, Tahoma, sans-serif;
  text-align: right;
}

.legal-copy-ar h2 {
  font-family: Arial, Tahoma, sans-serif;
  font-style: normal;
}

.legal-footer {
  padding: 42px 0;
  background: #000;
  color: #fff;
}

.legal-footer .legal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-footer img {
  width: 165px;
  height: auto;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
}

.legal-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 720px) {
  .legal-main {
    min-height: calc(100vh - 72px);
  }

  .legal-hero {
    padding: 58px 0 54px;
  }

  .legal-container {
    width: calc(100% - 28px);
  }

  .legal-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .legal-content {
    padding: 34px 0 160px;
  }

  .legal-language {
    justify-content: center;
  }

  .legal-copy {
    padding: 34px 24px;
    font-size: 16px;
  }

  .legal-copy > p:first-child {
    font-size: 17px;
  }

  .legal-copy section {
    margin-top: 30px;
  }

  .legal-copy h2 {
    font-size: 24px;
  }

  .legal-copy > h2:not(:first-child) {
    margin-top: 38px;
  }

  .legal-footer .legal-container {
    flex-direction: column;
    text-align: center;
  }
}
