*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: 86px;
  height: 79px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.hero {
  padding: 80px 60px 100px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 0 0 606px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 92.16px;
  letter-spacing: 0px;
  color: #e5e5e5;
}

.hero-title .highlight {
  color: #d99b3a;
}

.hero-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-desc p {
  margin: 0;
}

.hero-image {
  flex: 1;
  min-width: 0;
}
.hero-image img {
  width: 100%;
  max-width: 639px;
  height: 512px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.section-not-luck {
  padding: 100px 60px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.section-not-luck h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #e5e5e5;
  margin-bottom: 48px;
}

.not-luck-text {
  max-width: 730px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.section-read {
  padding: 80px 60px 100px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.read-image {
  flex: 0 0 594px;
}
.read-image img {
  width: 594px;
  height: 419px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.read-text {
  flex: 1;
  min-width: 0;
}

.read-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 69px;
  letter-spacing: 0px;
  color: #e5e5e5;
  margin-bottom: 24px;
}

.read-intro {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.read-list {
  list-style: none;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.read-list li {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
  position: relative;
}

.read-list li::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d99b3a;
}

.read-note {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
}

.section-pick {
  padding: 100px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-pick h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #e5e5e5;
  margin-bottom: 20px;
}

.pick-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.pick-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 624px;
}

.pick-card {
  width: 624px;
  border-radius: 4px;
  border-top: 1px solid #d99b3a;
  border-right: 1px solid #d99b3a;
  border-bottom: 1px solid #d99b3a;
  border-left: 2px solid #d99b3a;
  padding: 16px;
  background: #1b1b1b;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.pick-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18.4px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #e5e5e5;
}

.pick-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #ffffff;
}

.section-seeing {
  padding: 80px 60px 100px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.seeing-text {
  flex: 0 0 599px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.seeing-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 69px;
  letter-spacing: 0px;
  color: #e5e5e5;
}

.seeing-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seeing-body p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
}

.seeing-image {
  flex: 1;
  min-width: 0;
}
.seeing-image img {
  width: 100%;
  max-width: 593px;
  height: 378px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.section-perfect {
  padding: 100px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-perfect h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #e5e5e5;
  margin-bottom: 20px;
}

.perfect-tagline {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.perfect-content {
  align-items: center;
  gap: 60px;
  width: 100%;
  justify-content: center;
}

.perfect-text {
  width: 730px;
  display: flex;
  flex-direction: column;

  gap: 20px;
  margin: 0 auto;
}

.perfect-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
}

.perfect-image img {
  margin: 0 auto;
  width: 605px;
  height: 301px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  padding-top: 20px;
}

footer {
  width: 100%;
  background: #000;
  padding: 60px 60px 0;
}

.footer-main {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo img {
  width: 138px;
  height: 128px;
  display: block;
}

.footer-copy {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.28px;
  letter-spacing: 1.38px;
  color: #d99b3a;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

.footer-links a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.28px;
  letter-spacing: 1.38px;
  color: #d99b3a;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 155, 58, 0.2);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  gap: 33px;
  flex-wrap: nowrap;
}

.footer-bottom span,
.footer-bottom a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 11.52px;
  line-height: 17.28px;
  letter-spacing: 1.38px;
  color: #d99b3a;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .hero,
  .section-read,
  .section-seeing {
    flex-direction: column;
  }

  .hero-text {
    flex: none;
    width: 100%;
  }
  .hero-text h1 {
    font-size: 46px;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  .read-image {
    flex: none;
    width: 100%;
  }
  .read-image img {
    width: 100%;
    height: auto;
  }
  .seeing-text {
    flex: none;
    width: 100%;
  }
  .seeing-image img {
    max-width: 100%;
    height: auto;
  }
  .pick-cards,
  .pick-card {
    width: 100%;
  }
  .perfect-content {
    flex-direction: column;
    align-items: center;
  }
  .perfect-text {
    width: 100%;
  }
  .perfect-image img {
    width: 100%;
    height: auto;
  }
  .footer-bottom {
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 40px 20px 60px;
    gap: 40px;
  }
  .hero-title {
    font-size: 56px;
    line-height: 54px;
  }

  .section-not-luck {
    padding: 60px 20px;
  }
  .section-not-luck h2 {
    font-size: 30px;
  }

  .section-read {
    padding: 60px 20px;
    gap: 40px;
  }
  .read-text h2 {
    font-size: 30px;
    line-height: 100%;
  }
  .read-image {
    order: 2;
  }

  .section-pick {
    padding: 60px 20px;
  }
  .section-pick h2 {
    font-size: 30px;
  }

  .section-seeing {
    padding: 60px 20px;
    gap: 40px;
  }
  .seeing-text h2 {
    font-size: 30px;
    line-height: 100%;
  }

  .section-perfect {
    padding: 60px 20px;
  }
  .section-perfect h2 {
    font-size: 30px;
  }

  footer {
    padding: 40px 20px 0;
  }

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

  .footer-left {
    align-items: center;
  }

  .footer-copy {
    position: static;
    transform: none;
    margin: 0;
    white-space: normal;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }

  .footer-bottom {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
    justify-items: center;
  }
}

.policy-close {
  position: fixed;
  top: 24px;
  left: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 50;
}

.policy-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #e5e5e5;
  padding: 60px 60px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.policy-content {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 60px 100px;
}

.policy-meta {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.policy-content h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #e5e5e5;
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-content ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
}

.policy-gdpr-item {
  margin-bottom: 12px;
}
.policy-content a {
  color: #e5e5e5;
  text-decoration: none;
}
.policy-gdpr-item .policy-gdpr-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #e5e5e5;
  display: list-item;
  list-style: disc;
  margin-left: 24px;
}

.policy-gdpr-item .policy-gdpr-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 32px;
    padding: 40px 20px 0;
  }

  .policy-content {
    padding: 32px 20px 80px;
  }
  .policy-close {
    top: 18px;
    left: 24px;
  }

  .policy-content h2 {
    font-size: 16px;
  }

  .policy-content p {
    font-size: 14px;
  }
  .policy-content ul li {
    font-size: 14px;
  }
}
