﻿:root {
  --ink: #17120f;
  --black-honey: #120d0b;
  --paper: #fff8ed;
  --paper-soft: #ffeccc;
  --cream: #fffdf7;
  --honey: #ffb300;
  --honey-deep: #f28a00;
  --amber: #ffd55b;
  --pink: #f92f79;
  --pink-deep: #c8155b;
  --cocoa: #4a2419;
  --muted: #725f55;
  --line: rgba(74, 36, 25, 0.16);
  --white: #fffdf7;
  --shadow-x-direction: 1;
  --shadow: calc(var(--shadow-x-direction) * 20px) 24px 60px rgba(46, 22, 14, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Assistant", "Heebo", Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 70px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: #fff8ed;
  box-shadow: calc(var(--shadow-x-direction) * 12px) 12px 35px rgba(74, 36, 25, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(122px, 14vw, 178px);
  height: auto;
  filter: drop-shadow(calc(var(--shadow-x-direction) * 8px) 10px 20px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand img,
.site-header.nav-active .brand img {
  filter: drop-shadow(calc(var(--shadow-x-direction) * 6px) 8px 16px rgba(201, 81, 18, 0.13));
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--pink);
}

.site-nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 227, 124, 0.34);
  border-radius: 999px;
  color: #241306;
  background: linear-gradient(135deg, #ffe37c, var(--honey) 48%, #ff8f18);
  box-shadow: calc(var(--shadow-x-direction) * 10px) 14px 28px rgba(255, 179, 0, 0.22);
  opacity: 1 !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-nav-cta:hover {
  color: #241306 !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.editorial-image {
  background-size: cover;
  background-position: center;
}

.hero-media {
  background-image: url("./assets/hero-beedates.png");
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

[dir="rtl"] .hero-media {
  transform: scale(1.02) rotateY(180deg);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.08), rgba(18, 13, 11, 0.55) 48%, rgba(18, 13, 11, 0.9)),
    radial-gradient(circle at 77% 30%, rgba(249, 47, 121, 0.34), transparent 30%),
    linear-gradient(0deg, rgba(18, 13, 11, 0.7), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 44px));
  margin-right: clamp(24px, 8vw, 120px);
  margin-left: auto;
  padding-top: 96px;
  text-align: right;
}

.signup-card {
  display: grid;
  gap: 18px;
  width: 100%;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(145deg, rgba(18, 13, 11, 0.82), rgba(74, 36, 25, 0.68));
  box-shadow: calc(var(--shadow-x-direction) * 18px) 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.signup-card h1 {
  margin-bottom: 10px;
  font-family: "Assistant", "Heebo", Arial, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.signup-card__actions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.signup-button {
  display: grid;
  min-height: 56px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  color: #241306;
  background: rgba(255, 253, 247, 0.95);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signup-button span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: calc(var(--shadow-x-direction) * 10px) 14px 28px rgba(0, 0, 0, 0.18);
}

.signup-button__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.signup-button-google .signup-button__icon {
  background: #db4437;
}

.signup-button-facebook .signup-button__icon {
  background: #1877f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.signup-button-email {
  border-color: rgba(255, 227, 124, 0.34);
  background: linear-gradient(135deg, #ffe37c, var(--honey) 48%, #ff8f18);
}

.signup-button-email .signup-button__icon {
  color: #241306;
  background: rgba(255, 253, 247, 0.78);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 253, 247, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #241306;
  background: linear-gradient(135deg, #ffe37c, var(--honey) 48%, #ff8f18);
  box-shadow: calc(var(--shadow-x-direction) * 12px) 18px 34px rgba(255, 179, 0, 0.28);
}

.button-large {
  min-height: 64px;
  padding: 17px clamp(30px, 5vw, 54px);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.44);
  background: rgba(255, 253, 247, 0.08);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 70px);
  bottom: 0;
  display: grid;
  width: min(840px, calc(100% - 44px));
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 253, 247, 0.22);
  background: rgba(18, 13, 11, 0.54);
  backdrop-filter: blur(14px);
}

.hero-strip div {
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 253, 247, 0.18);
}

.hero-strip div:last-child {
  border-left: 0;
}

.hero-strip strong {
  display: block;
  color: var(--amber);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-strip span {
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.95rem;
}

.section {
  padding: clamp(70px, 10vw, 135px) clamp(22px, 6vw, 84px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
}

.intro p,
.editorial-text p {
  color: var(--muted);
  font-size: 1.18rem;
}

.quality {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  padding-top: 20px;
  background:
    linear-gradient(180deg, var(--paper), var(--paper-soft)),
    var(--paper);
}

.section-cta {
  display: flex;
  justify-content: center;
}

.section-cta-quality {
  grid-column: 1 / -1;
  padding-bottom: clamp(18px, 3vw, 30px);
}

.section-cta-between {
  padding: clamp(34px, 6vw, 70px) clamp(22px, 6vw, 84px);
  background: var(--paper-soft);
}

.feature,
.step {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 247, 0.68);
}

.feature-large {
  grid-row: span 2;
  min-height: 538px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(18, 13, 11, 0.92), rgba(194, 21, 91, 0.82)),
    var(--black-honey);
}

.feature-number,
.step span {
  display: block;
  margin-bottom: 42px;
  color: var(--honey);
  font-family: Georgia, serif;
  font-size: 2.25rem;
}

.feature p,
.step p {
  max-width: 430px;
  color: var(--muted);
}

.feature-large p {
  color: rgba(255, 253, 247, 0.8);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--black-honey);
  color: var(--white);
}

.editorial-image {
  min-height: 620px;
  border-radius: 8px;
  background-image: url("./assets/hero-luxury-dating.png");
  background-position: 84% center;
  box-shadow: var(--shadow);
}

[dir="rtl"] .editorial-image {
  transform: rotateY(180deg);
}

.editorial-text p {
  color: rgba(255, 253, 247, 0.74);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--amber);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.quote-band {
  padding: clamp(62px, 9vw, 110px) 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 13, 11, 0.96), rgba(74, 36, 25, 0.92)),
    var(--cocoa);
  text-align: center;
}

.quote-band blockquote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.15;
}

.quote-band-cta {
  flex: 0 0 auto;
  font-family: "Assistant", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 84px);
  color: rgba(255, 253, 247, 0.8);
  border-top: 1px solid rgba(255, 253, 247, 0.1);
  background:
    linear-gradient(135deg, rgba(18, 13, 11, 0.98), rgba(74, 36, 25, 0.94)),
    #100b09;
}

.site-footer__brand {
  color: var(--amber);
  font-weight: 800;
}

.site-footer__content {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer__nav a {
  color: rgba(255, 253, 247, 0.74);
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer__nav a:hover {
  color: var(--amber);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.payment-methods img {
  display: block;
  height: 30px;
  width: auto;
  border-radius: 6px;
  background: var(--white);
  box-shadow: calc(var(--shadow-x-direction) * 6px) 8px 18px rgba(0, 0, 0, 0.18);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 248, 237, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .site-nav-cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: 96svh;
    align-items: start;
    padding-bottom: 174px;
  }

  .hero-media {
    background-position: 50% 50%;
  }

  html[dir="ltr"] .hero-media,
  html[dir="rtl"] .hero-media {
    background-position: 79% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 13, 11, 0.24), rgba(18, 13, 11, 0.9)),
      linear-gradient(90deg, rgba(18, 13, 11, 0.82), rgba(18, 13, 11, 0.22));
  }

  .hero-content {
    margin-inline: 22px;
    padding-top: 148px;
    align-self: start;
    justify-self: center;
    text-align: center;
  }

  .signup-card {
    max-width: 430px;
  }

  .hero-strip {
    right: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 247, 0.16);
  }

  .intro-grid,
  .quality,
  .editorial,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-large {
    min-height: 360px;
  }

  .editorial-image {
    min-height: 420px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__content {
    justify-items: start;
  }

  .payment-methods {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 190px;
  }

  .hero-actions {
    display: grid;
  }

  .signup-card {
    padding: 22px;
    margin-top: 190px;
  }

  .signup-card h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .signup-button {
    min-height: 54px;
    padding-inline: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-strip strong {
    font-size: 1.25rem;
  }
}



.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lang-switch__button {
  display: inline-flex;
  min-width: 72px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: inherit;
  font: inherit;
  font-weight: 800;
  background: rgba(255, 253, 247, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled .lang-switch__button,
.site-header.nav-active .lang-switch__button {
  border-color: rgba(74, 36, 25, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.lang-switch__button:hover,
.lang-switch.is-open .lang-switch__button {
  color: #241306;
  background: linear-gradient(135deg, #ffe37c, var(--honey) 48%, #ff8f18);
}

.lang-switch__chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.lang-switch.is-open .lang-switch__chevron {
  transform: translateY(2px) rotate(225deg);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 30;
  display: grid;
  min-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 36, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: var(--shadow);
}

.lang-switch__option {
  min-width: 72px;
  border: 0;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.lang-switch__option:hover {
  color: #241306;
  background: rgba(255, 179, 0, 0.2);
}

html[dir="ltr"] body {
  --shadow-x-direction: -1;
  font-family: "Heebo", "Assistant", Arial, sans-serif;
}

html[dir="ltr"] .hero-content {
  margin-right: auto;
  margin-left: clamp(24px, 8vw, 120px);
  text-align: left;
}

html[dir="ltr"] .signup-button {
  grid-template-columns: 34px minmax(0, 1fr);
}

html[dir="ltr"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(18, 13, 11, 0.08), rgba(18, 13, 11, 0.55) 48%, rgba(18, 13, 11, 0.9)),
    radial-gradient(circle at 23% 30%, rgba(249, 47, 121, 0.34), transparent 30%),
    linear-gradient(0deg, rgba(18, 13, 11, 0.7), transparent 42%);
}

html[dir="ltr"] .feature-large {
  background:
    linear-gradient(223deg, rgba(18, 13, 11, 0.92), rgba(194, 21, 91, 0.82)),
    var(--black-honey);
}

html[dir="ltr"] .hero-strip {
  right: auto;
  left: clamp(22px, 5vw, 70px);
}

html[dir="ltr"] .hero-strip div {
  border-left: 0;
  border-right: 1px solid rgba(255, 253, 247, 0.18);
}

html[dir="ltr"] .hero-strip div:last-child {
  border-right: 0;
}

html[dir="ltr"] .site-footer {
  flex-direction: row-reverse;
}

html[dir="ltr"] .site-footer__nav {
  justify-content: flex-start;
}

html[dir="ltr"] .site-footer__content {
  justify-items: start;
}

html[dir="ltr"] .payment-methods {
  justify-content: flex-start;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(28px, 6vw, 70px);
  color: var(--ink);
  background: var(--paper);
}

.legal-page__brand {
  display: inline-flex;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.legal-page__brand img {
  width: clamp(126px, 14vw, 178px);
  height: auto;
}

.legal-page__content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page__content h1 {
  color: var(--black-honey);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.legal-document {
  color: #2c221c;
}

.legal-document > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-section {
  padding-top: clamp(28px, 5vw, 52px);
  margin-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  color: var(--black-honey);
  font-family: "Assistant", "Heebo", Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-section p {
  margin-bottom: 16px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 26px;
}

.legal-form-sample {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.legal-form-sample p {
  margin: 0 0 10px;
}

.legal-form-sample p:last-child {
  margin-bottom: 0;
}

.contact-page {
  max-width: 760px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 5vw, 46px);
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field--full,
.contact-form__actions {
  grid-column: 1 / -1;
}

.contact-form label {
  color: var(--black-honey);
  font-weight: 800;
}

.contact-form label span {
  color: #b66b00;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: #2c221c;
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--honey);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(247, 183, 51, 0.2);
}

.contact-form__actions {
  margin-top: 6px;
}

.contact-form__actions .button {
  cursor: pointer;
}

@media (max-width: 860px) {
  .header-actions {
    gap: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    order: 2;
    margin-inline-start: auto;
    justify-content: flex-end;
    max-width: 100%;
  }

  html[dir="ltr"] .hero-strip div {
    border-right: 0;
    border-top: 1px solid rgba(255, 253, 247, 0.16);
  }
}
