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

html,
body {
  width: 100%;
  min-height: 100%;
  background: #000;
  color: white;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body {
  background: #000;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: #000;
  z-index: 50;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1.02);
}

.mobile-hero-image {
  display: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.65) 30%,
      rgba(0,0,0,0.18) 60%,
      rgba(0,0,0,0.25) 100%
    );
}

/* NAV */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 26px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  top: -10px;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

.cta {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
}

/* MOBILE MENU */

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 10;
  width: 48%;
  height: 100vh;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-20px);
}

.eyebrow {
  position: relative;
  z-index: 20;
  color: #cba68a;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.9;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 520px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* BUTTONS */

.primary-btn {
  background: #d7af91;
  color: black;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.secondary-btn {
  color: white;
  text-decoration: none;
  padding: 15px 4px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

/* WAITLIST FORM */

.waitlist-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  height: 48px;
  min-width: 260px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(0,0,0,0.42);
  color: white;
  font-size: 0.92rem;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255,255,255,0.55);
}

/* PRODUCT PAGE */

.product-page {
  min-height: 100vh;
  background: #050505;
  color: white;
}

.product-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 26px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-back {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.product-hero {
  min-height: 100vh;
  padding: 120px 52px 60px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.product-left {
  max-width: 620px;
}

.product-eyebrow {
  color: #cba68a;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.product-left h1 {
  font-size: clamp(4rem, 7vw, 6.2rem);
  line-height: 0.92;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-intro {
  max-width: 520px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 38px;
}

.product-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.product-image-card {
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.product-image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-details {
  padding: 0 52px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.detail-card {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}

.detail-card span {
  display: block;
  color: #cba68a;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.detail-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.detail-card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    overflow: hidden;
  }

  .hero-image {
    display: none;
  }

  .mobile-hero-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    transform: scale(1.03);
    filter: brightness(1.08);
  }

  .overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.52) 24%,
        rgba(0,0,0,0.08) 52%,
        rgba(0,0,0,0.58) 100%
      );
  }

  .nav {
    padding: 22px 22px 0;
  }

  .logo {
    top: 0;
  }

  .logo img {
    height: 16px;
    margin-top: -8px;
    margin-bottom: -18px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 100;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 999px;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
  }

  .mobile-menu-cta {
    color: #d7af91 !important;
    border: 1px solid rgba(215,175,145,0.7);
    padding: 14px 24px;
    border-radius: 999px;
  }

  .hero-content {
    width: 100%;
    height: 100svh;
    padding: 42px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: none;
  }

  .eyebrow {
    max-width: 250px;
    font-size: 0.62rem;
    line-height: 1.6;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
  }

  h1 {
    max-width: 275px;
    font-size: clamp(2.8rem, 11vw, 3.8rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
  }

  .hero-text {
    max-width: 285px;
    font-size: 0.86rem;
    line-height: 1.45;
    margin-top: auto;
    margin-bottom: 20px;
  }

  .hero-buttons {
    width: 100%;
    max-width: 310px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .waitlist-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-form input {
    width: 100%;
    min-width: 0;
    height: 54px;
  }

  .waitlist-form button {
    width: 100%;
  }

  .primary-btn {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    font-size: 0.86rem;
    border-radius: 16px;
  }

  .secondary-btn {
    font-size: 0.9rem;
    padding: 0 0 10px;
  }

  .product-nav {
    padding: 22px;
  }

  .product-nav .logo img {
    height: 18px;
  }

  .product-back {
    font-size: 0.72rem;
  }

  .product-hero {
    min-height: auto;
    padding: 110px 22px 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-left h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  .product-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-actions .primary-btn {
    width: 100%;
    text-align: center;
  }

  .product-image-card {
    border-radius: 20px;
  }

  .product-details {
    padding: 0 22px 80px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
/* THANKS PAGE */

.thanks-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top,
      rgba(215,175,145,0.12),
      transparent 40%
    ),
    #050505;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;
}

.thanks-card {
  max-width: 720px;
  text-align: center;
}

.thanks-eyebrow {
  color: #cba68a;

  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  margin-bottom: 22px;
}

.thanks-card h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;

  margin-bottom: 28px;
}

.thanks-text {
  max-width: 540px;

  margin: 0 auto 38px;

  color: rgba(255,255,255,0.75);

  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .thanks-card h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .thanks-text {
    font-size: 1rem;
  }
}
/* GALLERY PAGE */

.gallery-page {
  min-height: 100vh;
  background: #050505;
  color: white;
}

.gallery-hero {
  padding: 150px 52px 70px;
  max-width: 1000px;
}

.gallery-hero h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 500;
  margin-bottom: 28px;
}

.gallery-hero p {
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.gallery-grid {
  padding: 0 52px 120px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 520px;
  background: #111;
}

.gallery-card.large {
  min-height: 640px;
}

.gallery-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: brightness(0.82);
  transition: 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.gallery-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.72) 100%
    );
}

.gallery-card span {
  display: block;
  color: #d7af91;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.gallery-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-card p {
  max-width: 420px;
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .gallery-hero {
    padding: 110px 22px 48px;
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .gallery-hero p {
    font-size: 1rem;
  }

  .gallery-grid {
    padding: 0 22px 80px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-card,
  .gallery-card.large {
    min-height: 480px;
    border-radius: 22px;
  }

  .gallery-card div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .gallery-card h2 {
    font-size: 1.7rem;
  }
}
/* ABOUT PAGE */

.about-page {
  min-height: 100vh;
  background: #050505;
  color: white;
}

.about-hero {
  min-height: 82vh;
  padding: 150px 52px 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero h1 {
  max-width: 1000px;

  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  font-weight: 500;

  margin-bottom: 34px;
}

.about-hero p {
  max-width: 680px;

  color: rgba(255,255,255,0.76);

  font-size: 1.2rem;
  line-height: 1.7;
}

.about-manifesto {
  padding: 0 52px 120px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-manifesto div {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}

.about-manifesto span {
  display: block;

  color: #cba68a;

  font-size: 0.76rem;
  letter-spacing: 0.14em;

  margin-bottom: 18px;
}

.about-manifesto h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-manifesto p {
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

.about-cta {
  padding: 120px 52px;

  background:
    radial-gradient(
      circle at center,
      rgba(215,175,145,0.12),
      transparent 42%
    ),
    #000;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;

  margin-bottom: 34px;
}

.about-cta .waitlist-form {
  justify-content: center;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
    padding: 120px 22px 70px;
  }

  .about-hero h1 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-manifesto {
    padding: 0 22px 80px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-cta {
    padding: 90px 22px;
  }
}
/* FEATURES PAGE */

.features-page {
  min-height: 100vh;
  background: #050505;
  color: white;
}

.features-hero {
  min-height: 82vh;
  padding: 150px 52px 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-hero h1 {
  max-width: 1050px;

  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  font-weight: 500;

  margin-bottom: 34px;
}

.features-hero p {
  max-width: 680px;

  color: rgba(255,255,255,0.76);

  font-size: 1.2rem;
  line-height: 1.7;
}

.features-grid {
  padding: 0 52px 120px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-block {
  min-height: 360px;

  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;

  padding: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.015)
    );
}

.feature-block span {
  display: block;

  color: #cba68a;

  font-size: 0.78rem;
  letter-spacing: 0.14em;

  margin-bottom: 40px;
}

.feature-block h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;

  margin-bottom: 18px;
}

.feature-block p {
  max-width: 460px;

  color: rgba(255,255,255,0.68);

  font-size: 1rem;
  line-height: 1.65;
}

.features-strip {
  margin: 0 52px 120px;
  padding: 28px 0;

  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: rgba(255,255,255,0.78);

  font-size: clamp(1.4rem, 3vw, 2.8rem);
}

@media (max-width: 900px) {
  .features-hero {
    min-height: auto;
    padding: 120px 22px 70px;
  }

  .features-hero h1 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .features-hero p {
    font-size: 1rem;
  }

  .features-grid {
    padding: 0 22px 80px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-block {
    min-height: auto;
    padding: 28px;
    border-radius: 22px;
  }

  .feature-block span {
    margin-bottom: 32px;
  }

  .features-strip {
    margin: 0 22px 80px;

    flex-direction: column;
    gap: 16px;

    font-size: 2rem;
  }
}