:root {
  --paper: #f7f6f1;
  --orange: #ff5600;
  --ink: #000000;
  --white: #ffffff;
  --muted: rgba(0, 0, 0, 0.66);
  --lime: #e9ff66;
  --star: #ffc659;
  --max: 1296px;
  --page-padding: 72px;
  --Primary: var(--ink);
  --Surface: var(--white);
  --Tertiary: var(--orange);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Albert Sans", sans-serif;
}

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

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

.visually-hidden {
  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;
  display: flex;
  justify-content: center;
  padding: 16px var(--page-padding) 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 798px;
  min-height: 60px;
  padding: 8px 8px 8px 24px;
  border-radius: 40px;
  background: var(--white);
}

.brand-link {
  flex: 0 0 auto;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 4px;
}

.header-links a {
  display: block;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 8px;
  border-radius: 24px;
  color: var(--Primary, #000);
  font-feature-settings: 'liga' off, 'clig' off;
  text-overflow: ellipsis;
  font-family: "Albert Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  opacity: 0.5;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.header-links a:hover {
  opacity: 1;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 180ms ease;
}

.lang-btn:hover {
  opacity: 1;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 16px 40px;
  border: 0;
  border-radius: 40px;
  background: var(--ink);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 24px;
  color: var(--Surface, #fff);
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.nav-cta:hover,
.primary-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 52px var(--page-padding) 88px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.rating-badge {
  display: inline-flex;
  margin-bottom: 20px;
}

.rating-badge img {
  width: 241px;
}

h1,
.feature-card-title {
  margin: 0;
  color: var(--ink);
}

#hero-title {
  max-width: 858px;
  color: var(--Primary, #000);
  text-align: center;
  font-family: "Source Serif 4", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0;
}

#hero-title em {
  color: var(--Tertiary, #ff5600);
  text-align: center;
  font-family: "Source Serif 4", serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
  line-height: 120%;
}

.feature-card-title em {
  color: var(--Tertiary, #ff5600);
  font-family: "Source Serif 4", serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

.hero-lede {
  align-self: stretch;
  width: 100%;
  max-width: 720px;
  margin: 20px auto 0;
  color: #786d69;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Albert Sans", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.primary-button {
  margin-top: 32px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
  width: 100%;
  margin-top: 72px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.feature-card-visual--photo {
  background: transparent;
}

.feature-card-visual img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
}

.feature-card-title {
  color: var(--Primary, #000);
  text-align: center;
  font-family: "Source Serif 4", serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.reviews-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-padding) 120px;
}

.review-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-carousel .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.reviews-carousel .swiper-slide {
  width: 288px;
  height: auto;
  flex-shrink: 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-height: 296px;
  height: 100%;
  padding: 20px 20px 28px;
  border-radius: 32px;
  background: var(--white);
}

@media (min-width: 1040px) {
  .review-grid.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .review-grid .swiper-wrapper {
    display: contents;
  }

  .review-grid .swiper-slide {
    width: auto;
    height: auto;
  }

  .review-card {
    width: 100%;
    min-height: 296px;
  }
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.review-stars {
  display: block;
  flex: 0 0 auto;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow: hidden;
}

.site-footer {
  padding: 88px var(--page-padding);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.footer-nav-row {
  display: flex;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  width: 203px;
  gap: 16px;
}

.footer-links a {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: opacity 180ms ease;
}

.footer-links a:hover {
  opacity: 0.72;
}

.footer-right {
  flex: 0 0 auto;
}

.footer-store-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-store-links a {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 180ms ease;
}

.footer-store-links a:hover {
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 180ms ease;
}

.social-link:not(.social-link--disabled):hover {
  transform: translateY(-2px);
}

.social-link--disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.footer-note {
  margin: 0;
  color: #b1aba9;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1040px) {
  :root {
    --page-padding: 16px;
  }

  .nav-shell {
    max-width: 100%;
  }

  .header-links {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header-links::-webkit-scrollbar {
    display: none;
  }

  #hero-title {
    font-size: 44px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
  }

  .feature-card-visual {
    min-height: 320px;
  }

  .reviews-section {
    padding-bottom: 104px;
  }

  .reviews-carousel .swiper-slide {
    width: min(353px, calc(100vw - 32px));
  }

  .review-card {
    min-height: 296px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 48px;
  }

  .footer-store-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    padding: 0;
    background: var(--white);
  }

  .nav-shell {
    max-width: none;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    min-height: 72px;
    padding: 8px 16px;
    border-radius: 0;
  }

  .header-links,
  .lang-btn {
    display: none;
  }

  .hero-section {
    padding: 32px 16px 72px;
  }

  #hero-title {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .feature-card-title {
    font-size: 34px;
  }

  .reviews-section {
    padding: 0 16px 104px;
  }

  .reviews-carousel .swiper-slide {
    width: min(353px, calc(100vw - 32px));
  }

  .site-footer {
    padding: 56px 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-left {
    width: 100%;
    align-items: center;
    gap: 32px;
  }

  .footer-nav-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .footer-links {
    width: 100%;
    align-items: center;
  }

  .footer-links a {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-right {
    width: 100%;
  }

  .footer-store-links {
    flex-direction: column;
    width: 100%;
  }

  .footer-store-links a {
    width: 100%;
  }

  .footer-store-links a img {
    width: 100%;
    height: 56px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .rating-badge img {
    width: 199px;
  }
}
