/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --white: #ffffff;
  --off-white: #faf8f6;
  --light-pink: #fef0ec;
  --warm-pink: #f5d5cb;
  --text-gray: #6b6b6b;
  --border: #e0e0e0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

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

/* ===== Promo Bar ===== */
.promo-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ===== Header / Nav ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s;
}

.icon-btn:hover {
  background: #f0f0f0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  background: var(--off-white);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 500px;
}

.hero-text {
  flex: 1;
  padding: 80px 60px 80px 80px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 400px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 360px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 460px;
  height: 420px;
  background: linear-gradient(145deg, #f8e0d8, #f0c8bc, #e8b8ac);
  border-radius: 12px;
  position: relative;
}

.hero-image-placeholder::after {
  content: 'Futuredew';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 40px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ===== Glossier Banner ===== */
.glossier-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8e8e0 0%, #f0d8cc 40%, #d8b8a8 100%);
  padding: 0;
}

.glossier-banner-bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
  padding: 40px 20px 0;
  position: relative;
}

.glossier-giant-text {
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 600;
  letter-spacing: -4px;
  line-height: 0.85;
  color: var(--black);
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ===== Shop Section ===== */
.shop-section {
  padding: 60px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 400px;
}

.carousel-progress {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-bar {
  width: 33%;
  height: 100%;
  background: var(--black);
  border-radius: 2px;
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.arrow-btn:hover {
  border-color: var(--black);
}

.shop-all-link {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.shop-all-link:hover {
  opacity: 0.6;
}

/* Product Carousel */
.product-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  position: relative;
  margin-bottom: 16px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
}

.product-type {
  font-size: 13px;
  color: var(--text-gray);
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0 12px;
}

.product-info .btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 12px;
}

/* ===== Scent Section ===== */
.scent-section {
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.scent-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.scent-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin: 20px 0 28px;
  max-width: 500px;
}

.scent-details {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 480px;
}

.scent-notes {
  margin-top: 20px;
}

.scent-notes p {
  margin-bottom: 4px;
  font-size: 13px;
}

.scent-rating {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.stars {
  color: #d4a574;
  font-size: 16px;
  letter-spacing: 2px;
}

.scent-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  max-width: 500px;
}

/* ===== Feature Sections ===== */
.feature-section {
  padding: 0 40px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.feature-wide .feature-image {
  width: 100%;
  height: 500px;
}

.feature-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
}

.feature-text h3 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-text p {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 400px;
}

.text-link {
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.6;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.feature-half .feature-image {
  width: 100%;
  height: 400px;
}

/* ===== Newsletter ===== */
.newsletter {
  background: var(--off-white);
  padding: 80px 40px;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.newsletter-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--black);
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 2fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto 60px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-gray);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  font-size: 13px;
  color: var(--dark);
  transition: opacity 0.2s;
}

.footer-col li a:hover {
  opacity: 0.6;
}

.mt-24 {
  margin-top: 24px;
}

.footer-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-product-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-product-grid li a {
  font-size: 12px;
  color: var(--text-gray);
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-gray);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-gray);
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text {
    padding: 60px 40px 20px;
    text-align: center;
  }

  .hero-text h1 {
    max-width: none;
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-image {
    padding: 20px 40px 40px;
  }

  .product-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .scent-content {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-products {
    grid-column: 1 / -1;
  }

  .footer-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 20px;
  }

  .hero-text {
    padding: 40px 20px 16px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-image {
    padding: 16px 20px 32px;
  }

  .hero-image-placeholder {
    height: 320px;
  }

  .glossier-giant-text {
    letter-spacing: -2px;
  }

  .glossier-banner-bg {
    min-height: 240px;
  }

  .shop-section {
    padding: 40px 20px;
  }

  .shop-header {
    flex-wrap: wrap;
  }

  .carousel-nav {
    order: 3;
    max-width: none;
    width: 100%;
  }

  .product-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .scent-section {
    padding: 40px 20px;
  }

  .scent-heading {
    font-size: 24px;
  }

  .feature-section,
  .feature-split {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-wide .feature-image {
    height: 320px;
  }

  .feature-half .feature-image {
    height: 260px;
  }

  .feature-text h3 {
    font-size: 26px;
  }

  .newsletter {
    padding: 60px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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