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

  :root {
    --white: #ffffff;
    --milk: #faf8f5;
    --beige: #f2ede6;
    --beige-dark: #e8e0d4;
    --sand: #d4c9b8;
    --black: #1a1a1a;
    --dark: #2c2c2c;
    --mid: #6b6460;
    --light: #a09890;
    --accent: #b8967a;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: padding 0.3s var(--ease-out);
  }
  nav.scrolled { padding: 14px 40px; }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--black);
  }
  .nav-cta {
    background: var(--black); color: var(--white);
    border: none; padding: 10px 24px;
    font-family: var(--font-body); font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s var(--ease-out);
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--dark); transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 80px;
    background: var(--milk);
  }
  .hero-image {
    height: 120vh;
    background: var(--beige);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--beige) 0%, var(--sand) 60%, var(--beige-dark) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
  }
  .bag-illustration {
    width: 260px; height: 300px;
    position: relative; margin-bottom: 24px;
  }
  .bag-body {
    width: 220px; height: 190px;
    background: linear-gradient(145deg, #c9b8a5 0%, #b5a08c 40%, #9e8d7a 100%);
    border-radius: 28px 28px 32px 32px;
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .bag-flap {
    width: 200px; height: 90px;
    background: linear-gradient(145deg, #d4c3b0 0%, #c0ac98 100%);
    border-radius: 26px 26px 8px 8px;
    position: absolute; bottom: 210px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px;
  }
  .bag-clasp {
    width: 28px; height: 18px;
    background: linear-gradient(135deg, #d4af80 0%, #b8924e 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .bag-handle {
    width: 90px; height: 50px;
    border: 3px solid #b5a08c;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  }
  .bag-stitch {
    position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 170px;
    border: 1.5px dashed rgba(255,255,255,0.25);
    border-radius: 22px 22px 26px 26px;
  }
  .hero-badge {
    position: absolute; bottom: 40px; right: 40px;
    width: 90px; height: 90px;
    background: var(--black); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--white);
  }
  .badge-price { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
  .badge-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

  .hero-content {
    padding: 60px 72px 60px 80px;
    display: flex; flex-direction: column; gap: 32px;
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--mid); font-weight: 400;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 300; line-height: 1.1;
    color: var(--black);
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-sub {
    font-size: 15px; color: var(--mid); line-height: 1.7;
    font-weight: 300; max-width: 380px;
  }
  .hero-price {
    display: flex; align-items: baseline; gap: 12px;
  }
  .price-main {
    font-family: var(--font-display); font-size: 42px; font-weight: 400;
  }
  .price-currency { font-size: 18px; color: var(--mid); }
  .price-old {
    font-size: 16px; color: var(--light);
    text-decoration: line-through;
  }
  .cta-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--black); color: var(--white);
    border: none; padding: 18px 40px;
    font-family: var(--font-body); font-size: 13px;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s var(--ease-out);
    border-radius: 3px; width: fit-content;
  }
  .cta-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
  .cta-arrow { transition: transform 0.3s var(--ease-out); }
  .cta-primary:hover .cta-arrow { transform: translateX(4px); }
  .hero-trust {
    display: flex; gap: 24px; align-items: center;
    font-size: 12px; color: var(--light);
  }
  .trust-item { display: flex; align-items: center; gap: 6px; }
  .trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }

  /* ── MARQUEE ── */
  .marquee-strip {
    background: var(--black); color: var(--white);
    padding: 14px 0; overflow: hidden;
    display: flex; white-space: nowrap;
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0 48px; white-space: nowrap;
    color: rgba(255,255,255,0.7);
  }
  .marquee-sep { color: var(--accent); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── VIDEO SECTION ── */
  #video {
    padding: 120px 80px;
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .section-label {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--light); margin-bottom: 20px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; line-height: 1.15;
    margin-bottom: 24px;
  }
  .section-body { font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300; }
  .video-frame {
    aspect-ratio: 9/12;
    background: var(--beige);
    border-radius: 16px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  }
  .video-frame:hover { transform: scale(1.02); box-shadow: 0 40px 80px rgba(0,0,0,0.12); }
  .video-inner {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--beige-dark) 0%, var(--sand) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
  }
  .play-btn {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .video-frame:hover .play-btn { transform: scale(1.1); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
  .play-icon { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid var(--black); margin-left: 4px; }
  .video-tag { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); }
  .detail-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
  .detail-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding-bottom: 16px; border-bottom: 1px solid var(--beige-dark);
  }
  .detail-num { font-family: var(--font-display); font-size: 20px; color: var(--sand); min-width: 32px; }
  .detail-text { font-size: 14px; color: var(--dark); line-height: 1.5; }
  .detail-sub { font-size: 12px; color: var(--light); margin-top: 2px; }

  /* ── COLORS ── */
  #colors {
    padding: 120px 80px;
    background: var(--milk);
    text-align: center;
  }
  #colors .section-title { margin-bottom: 16px; }
  #colors .section-body { max-width: 400px; margin: 0 auto 64px; }
  .color-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 24px; max-width: 900px; margin: 0 auto;
  }
  .color-card {
    cursor: pointer; transition: transform 0.3s var(--ease-out);
    position: relative;
  }
  .color-card:hover { transform: translateY(-8px); }
  .color-card.active .color-swatch::after {
    content: ''; position: absolute; inset: -3px;
    border: 2px solid var(--black); border-radius: 14px;
  }
  .color-swatch {
    aspect-ratio: 3/3; border-radius: 12px; overflow: hidden;
    position: relative; margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s var(--ease-out);
  }
  .color-card:hover .color-swatch { box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
  .swatch-fill { width: 100%; height: 100%; }
  .color-name { font-size: 13px; color: var(--dark); letter-spacing: 0.05em; }
  .color-sub { font-size: 11px; color: var(--light); margin-top: 4px; }
  .color-selected-label {
    margin-top: 40px; font-size: 13px; color: var(--mid);
    transition: opacity 0.3s;
  }
  .color-selected-name { font-weight: 500; color: var(--black); }

  /* ── WHY KRIS ── */
  #why {
    padding: 120px 80px;
    background: var(--black); color: var(--white);
  }
  #why .section-label { color: rgba(255,255,255,0.35); }
  #why .section-title { color: var(--white); }
  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; margin-top: 64px;
    background: rgba(255,255,255,0.1);
  }
  .why-item {
    background: var(--black); padding: 48px 40px;
    transition: background 0.3s var(--ease-out);
  }
  .why-item:hover { background: #252525; }
  .why-icon {
    font-size: 32px; margin-bottom: 24px;
    display: block;
  }
  .why-title {
    font-family: var(--font-display); font-size: 26px; font-weight: 300;
    color: var(--white); line-height: 1.2; margin-bottom: 16px;
  }
  .why-body { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }

  /* ── PACKAGE ── */
  #package {
    padding: 120px 80px;
    background: var(--beige);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
  }
  .package-visual {
    aspect-ratio: 1; background: var(--beige-dark);
    border-radius: 20px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .box-illustration {
    width: 200px; height: 200px;
    position: relative;
  }
  .box-lid {
    width: 180px; height: 60px;
    background: linear-gradient(145deg, #f5f0e8 0%, #e8dfd0 100%);
    border-radius: 8px 8px 0 0;
    position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
  }
  .box-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.3em; color: var(--mid); }
  .box-base {
    width: 180px; height: 120px;
    background: linear-gradient(160deg, #ede5d8 0%, #d9cfc0 100%);
    border-radius: 0 0 8px 8px;
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  }
  .ribbon {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 2px; height: 100%; background: var(--accent); opacity: 0.4; z-index: 2;
  }
  .package-items { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
  .package-item {
    display: flex; gap: 20px; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--sand);
  }
  .pi-icon { font-size: 20px; min-width: 32px; }
  .pi-text { font-size: 15px; color: var(--dark); }
  .pi-sub { font-size: 12px; color: var(--light); margin-top: 2px; }

  /* ── LIFESTYLE ── */
  #lifestyle {
    padding: 120px 80px;
    background: var(--white);
  }
  .lifestyle-header { text-align: center; margin-bottom: 64px; }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
  .ls-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}
 .ls-card:hover { transform: scale(1.02); }
 .ls-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
  /* .ls-card:first-child { grid-row: 1 / 3; } */
  /* .ls-inner {
    width: 100%; padding-top: 120%;
    background: linear-gradient(160deg, var(--beige) 0%, var(--sand) 100%);
    position: relative;
  } */
  /* .ls-card:first-child .ls-inner { padding-top: 140%; } */
  /* .ls-card:nth-child(3) .ls-inner, .ls-card:nth-child(4) .ls-inner { padding-top: 90%; } */
  .ls-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 100px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark);
  }
  /* Decorative bag shapes in lifestyle */
  .ls-bag { position: absolute; opacity: 0.6; }

  /* ── REVIEWS ── */
  #reviews {
    padding: 120px 80px;
    background: var(--milk);
  }
  .reviews-header { text-align: center; margin-bottom: 64px; }
  .reviews-track { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 24px; scrollbar-width: none; }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card {
    min-width: 320px; background: var(--white);
    border-radius: 20px; padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    flex-shrink: 0;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--beige-dark), var(--sand));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px; color: var(--mid);
    flex-shrink: 0;
  }
  .review-name { font-size: 14px; font-weight: 500; }
  .review-handle { font-size: 12px; color: var(--light); }
  .review-stars { margin-left: auto; color: #d4a853; font-size: 13px; }
  .review-photo {
    width: 100%; height: 180px; background: var(--beige);
    border-radius: 12px; margin-bottom: 16px; overflow: hidden;
    position: relative;
  }
  .review-photo-fill {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--beige-dark), var(--sand));
    display: flex; align-items: center; justify-content: center;
  }
  .review-emoji { font-size: 48px; opacity: 0.4; }
  .review-dm-tag {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.9); border-radius: 6px;
    padding: 3px 8px; font-size: 10px; letter-spacing: 0.05em; color: var(--mid);
  }
  .review-text { font-size: 14px; color: var(--dark); line-height: 1.65; }
  .review-date { font-size: 11px; color: var(--light); margin-top: 12px; }

  /* ── FAQ ── */
  #faq {
    padding: 120px 80px;
    background: var(--white);
    max-width: 800px; margin: 0 auto;
  }
  #faq .section-title { text-align: center; margin-bottom: 64px; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid var(--beige-dark);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; cursor: pointer;
    font-family: var(--font-body); font-size: 15px; color: var(--black);
    text-align: left; gap: 16px;
  }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--sand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.3s var(--ease-out);
    font-size: 16px; color: var(--mid); line-height: 1;
  }
  .faq-item.open .faq-icon { border-color: var(--black); color: var(--black); transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s;
    font-size: 14px; color: var(--mid); line-height: 1.8;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }

  /* ── FINAL CTA ── */
  #final-cta {
    padding: 120px 80px;
    background: var(--black);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: var(--font-display); font-size: clamp(80px, 15vw, 200px);
    font-weight: 300; color: rgba(255,255,255,0.03);
    white-space: nowrap; pointer-events: none; user-select: none;
  }
  #final-cta .section-label { color: rgba(255,255,255,0.3); }
  #final-cta .section-title { color: var(--white); margin-bottom: 16px; }
  #final-cta .section-body { color: rgba(255,255,255,0.45); max-width: 400px; margin: 0 auto 48px; }
  .cta-outline {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3); padding: 18px 48px;
    font-family: var(--font-body); font-size: 13px;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s var(--ease-out);
    border-radius: 3px; margin-right: 16px;
  }
  .cta-outline:hover { border-color: var(--white); transform: translateY(-2px); }
  .cta-white {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--white); color: var(--black);
    border: none; padding: 18px 48px;
    font-family: var(--font-body); font-size: 13px;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s var(--ease-out);
    border-radius: 3px;
  }
  .cta-white:hover { background: var(--milk); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,255,255,0.15); }

  /* ── ORDER FORM ── */
  #order {
    padding: 120px 80px;
    background: var(--milk);
  }
  .form-wrap {
    max-width: 540px; margin: 0 auto;
    text-align: center;
  }
  .form-wrap .section-title { margin-bottom: 12px; }
  .form-wrap .section-body { margin-bottom: 48px; }
  .order-form { display: flex; flex-direction: column; gap: 16px; }
  .form-group { position: relative; }
  .form-input {
    width: 100%; padding: 18px 20px;
    background: var(--white); border: 1.5px solid var(--beige-dark);
    border-radius: 8px; font-family: var(--font-body); font-size: 15px;
    color: var(--black); transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    outline: none;
  }
  .form-input:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
  .form-input::placeholder { color: var(--light); }
  .form-select {
    width: 100%; padding: 18px 20px;
    background: var(--white); border: 1.5px solid var(--beige-dark);
    border-radius: 8px; font-family: var(--font-body); font-size: 15px;
    color: var(--black); transition: border-color 0.3s;
    outline: none; cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09890' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 20px center;
  }
  .form-select:focus { border-color: var(--black); }
  .form-submit {
    width: 100%; padding: 20px;
    background: var(--black); color: var(--white); border: none;
    border-radius: 8px; font-family: var(--font-body); font-size: 14px;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s var(--ease-out);
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
  .form-note { font-size: 12px; color: var(--light); margin-top: 16px; line-height: 1.6; }

  /* ── FOOTER ── */
  footer {
    padding: 48px 80px;
    background: var(--black); color: rgba(255,255,255,0.35);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; letter-spacing: 0.1em;
  }
  .footer-logo { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 0.3em; }
  .footer-links { display: flex; gap: 32px; }
  .footer-link { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-link:hover { color: rgba(255,255,255,0.8); }

  /* ── MOBILE STICKY CTA ── */
  .sticky-mobile {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    padding: 16px 24px; border-top: 1px solid var(--beige-dark);
    gap: 16px; align-items: center;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  }
  .sticky-info { flex: 1; }
  .sticky-name { font-size: 14px; font-weight: 500; }
  .sticky-price { font-family: var(--font-display); font-size: 20px; }
  .sticky-btn {
    background: var(--black); color: var(--white); border: none;
    padding: 14px 28px; border-radius: 6px;
    font-family: var(--font-body); font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; flex-shrink: 0;
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--white); border-radius: 20px;
    padding: 48px; max-width: 440px; width: 90%;
    transform: scale(0.95) translateY(16px);
    transition: transform 0.4s var(--ease-out);
    text-align: center;
  }
  .modal-overlay.open .modal { transform: scale(1) translateY(0); }
  .modal-icon { font-size: 48px; margin-bottom: 20px; }
  .modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 300; margin-bottom: 12px; }
  .modal-text { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 32px; }
  .modal-close {
    background: var(--black); color: var(--white); border: none;
    padding: 14px 40px; border-radius: 6px; cursor: pointer;
    font-family: var(--font-body); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image { height: 75vw; min-height: 360px; }
    .hero-image img { object-position: center 80%; }
    .hero-badge { bottom: 20px;
    right: 16px;
    width: 90px;
    height: 90px;
  }
  .color-swatch {
    height: 90px;
  }
    .hero-content { padding: 48px 24px; }
    #video { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    #colors { padding: 80px 24px; }
    .color-grid { grid-template-columns: repeat(4, 1fr); gap: 33px; }
    #why { padding: 80px 24px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    #package { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .package-visual { aspect-ratio: auto; height: 430px; }
    #lifestyle { padding: 80px 24px; }
    .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
    .ls-card:first-child { grid-row: auto; grid-column: 1 / 3;  height: 460px;}
    .ls-card:first-child img {
    object-fit: cover;
    height: 100%;
  }
    #reviews { padding: 80px 24px; }
    #faq { padding: 80px 24px; }
    #final-cta { padding: 80px 24px; }
    .cta-outline, .cta-white { display: block; width: 100%; text-align: center; margin: 8px 0; }
    #order { padding: 80px 24px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .sticky-mobile { display: flex; }
    body { padding-bottom: 82px; }
    .hero-trust { flex-wrap: wrap; }

    .ls-card img {
    height: 320px;
  }
  }
  

  @media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .lifestyle-grid { grid-template-columns: 1fr; }
    .ls-card:first-child { grid-column: auto; }
  }

  @media (max-width: 480px) {
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .color-name {
    font-size: 10px;
  }

  .color-swatch {
    height: 65px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ls-card img {
    height: 180px;
  }
}
}

.form-group { position: relative; }
#citySuggestions div {
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f0ebe3;
  color: #2c2c2c;
}
#citySuggestions div:hover { background: #faf8f5; }