:root {
  --brown: #4A3323;
  --brown-deep: #3A2418;
  --orange: #E8830E;
  --orange-light: #F3A85F;
  --orange-pale: #F6B473;
  --cream: #FDF3E7;
  --white: #FFFFFF;
  --black: #2E1D12;
  --ink-soft: #4a463f;

  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-clip {
  overflow-x: clip;
}

a {
  color: inherit;
}

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

/* ---------- Hero ---------- */

.hero {
  padding: 2rem 0;
}

.hero__logo {
  width: 190px;
  height: auto;
  margin: 0 auto;
}

.hero__inner {
  display: grid;
  grid-template-areas: "logo" "visual" "content";
  gap: 0.5rem;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__logo-wrap {
  grid-area: logo;
}

.hero__content {
  grid-area: content;
}

.hero__visual {
  grid-area: visual;
  position: relative;
  width: min(440px, 90vw);
  margin: 0 auto;
}

.hero__art {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__art dotlottie-wc {
  width: 150%;
  height: 220%;
  flex-shrink: 0;
}

.hero__eyebrow {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
}

.hero__title {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
}

.hero__title span {
  color: var(--orange);
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero__soon {
  margin: 0.75rem 0 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
}

/* ---------- Site footer ---------- */

.site-footer {
  background: var(--cream);
}

.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.75rem;
}

.site-footer__tagline {
  margin: 0 0 2rem;
  color: var(--orange);
  font-weight: 800;
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  letter-spacing: 0.01em;
  text-align: center;
}

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

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__col--right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.site-footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}

.site-footer__col > p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
}

/* ---------- Contact ---------- */

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__link svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.contact__link:hover {
  color: var(--orange);
}

.contact__footnote {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #8a8378;
}

.site-footer__col > .footer__complaints {
  display: inline-block;
  margin-top: 1.5rem;
}

/* ---------- App stores ---------- */

.app__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.store-btn {
  display: block;
  line-height: 0;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.store-btn img {
  height: 46px;
  width: auto;
}

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

/* ---------- Social ---------- */

.social__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social__link svg {
  width: 22px;
  height: 22px;
}

.social__link:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Legal / footer ---------- */

.footer__complaints {
  font-weight: 700;
  text-decoration: none;
  color: var(--brown);
}

.footer__complaints:hover {
  color: var(--orange);
}

.footer__copy {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: #8a8378;
}

/* ---------- Responsive ---------- */

@media (min-width: 860px) {
  .hero {
    padding: 120px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "logo visual"
      "content visual";
    max-width: 1140px;
    gap: 0.5rem 4rem;
    align-items: end;
    text-align: left;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__logo {
    margin: 0;
  }

  .hero__subtitle {
    margin: 0;
  }

  .hero__visual {
    width: 100%;
    max-width: 600px;
  }

  .site-footer__tagline {
    text-align: left;
  }

  .site-footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    gap: 2.5rem;
  }

  .site-footer__col,
  .site-footer__block {
    align-items: flex-start;
  }

  .site-footer__col--right {
    flex-direction: row;
    gap: 3.5rem;
  }

  .contact__links {
    align-items: flex-start;
  }

  .contact__phone {
    align-items: flex-start;
  }

  .app__stores,
  .social__links {
    justify-content: flex-start;
  }
}
