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

:root {
  --bg-dark:   #0d0d0d;
  --bg-light:  #f5f3f0;
  --silver:    #c8c8c8;
  --text-dark: #1a1a1a;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button, a { cursor: pointer; }


/* ─── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.from-left  { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ─── Typography helpers ───────────────────────────────────── */
.label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.display {
  font-family: var(--font-display);
  line-height: 1;
}


/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
}

.btn-pill {
  display: inline-block;
  background: #fff;
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  transition: transform 0.15s var(--ease);
}
.btn-pill:hover  { transform: scale(1.04); }
.btn-pill:active { transform: scale(0.97); }

.btn-pill.dark {
  background: var(--bg-dark);
  color: #fff;
}


/* ─── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-wrist.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  max-width: min(92vw, 1040px);
}

.hero-content .label { color: var(--silver); margin-bottom: 1.2rem; font-size: 0.8rem; letter-spacing: 0.35em; }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.5vw, 11rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-subhead {
  margin-top: 1.8rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  line-height: 1.6;
  animation: fadeUp 0.8s var(--ease) 0.25s both;
}

.hero-support {
  margin-top: 0.6rem;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.48);
  white-space: nowrap;
  line-height: 1.6;
  animation: fadeUp 0.8s var(--ease) 0.38s both;
}

.hero-cta-group {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 0.8s var(--ease) 0.52s both;
}

.hero-cta-group .btn-pill {
  font-size: 0.86rem;
  padding: 0.72rem 1.68rem;
}

.hero-microcopy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: bounce 2s ease-in-out infinite, fadeIn 0.6s var(--ease) 1.4s both;
}
.hero-chevron svg { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ─── IDENTITY ─────────────────────────────────────────────── */
#identity {
  background: var(--bg-dark);
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-inner { max-width: 640px; width: 100%; }

.identity-inner p {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

.identity-inner .identity-gap { height: 1.5rem; }

.identity-inner .identity-close {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
}


/* ─── PRODUCT STORY ────────────────────────────────────────── */
#story {
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.story-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.story-image:hover img { transform: scale(1.03); }

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3.5rem;
}

.story-copy .label { color: var(--silver); margin-bottom: 1rem; }

.story-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.story-copy p {
  font-size: 0.95rem;
  color: rgba(26,26,26,0.68);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 1rem;
}

.story-copy .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  margin-top: 1.5rem;
  transition: opacity 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.story-copy .link-arrow:hover { opacity: 0.45; }


/* ─── GALLERY ──────────────────────────────────────────────── */
#gallery {
  background: var(--bg-light);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item { display: flex; flex-direction: column; gap: 0.5rem; }

.gallery-item .gallery-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
}


/* ─── WHO + DETAILS COMBINED ───────────────────────────────── */
#who-details {
  background: var(--bg-light);
  border-top: 1px solid rgba(200,200,200,0.4);
}

.who-details-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}

/* Left column — Who */
.who-col .label { color: var(--silver); margin-bottom: 1.2rem; }

.who-col h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.who-intro {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.42);
  margin-bottom: 1.4rem;
}

.who-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(26,26,26,0.78);
  line-height: 1.5;
}

.who-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* Right column — Details */
.details-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.25rem;
}

.detail-item { display: flex; flex-direction: column; gap: 1rem; }

.detail-item svg { flex-shrink: 0; }

.detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.detail-desc {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.55);
  line-height: 1.7;
}


/* ─── SOCIAL PROOF ─────────────────────────────────────────── */
#proof {
  background: var(--bg-dark);
  color: #fff;
  padding: 5rem 2rem 6rem;
}

.proof-inner { max-width: 960px; margin: 0 auto; }

.proof-inner .label { color: var(--silver); margin-bottom: 1rem; }

.proof-inner h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 3.5rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.proof-card {
  background: var(--bg-dark);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.proof-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  flex: 1;
}

.proof-author {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200,200,200,0.45);
}


/* ─── OBJECTION HANDLING ───────────────────────────────────── */
#objection {
  background: var(--bg-light);
  border-top: 1px solid rgba(200,200,200,0.4);
  padding: 5rem 2rem 6rem;
}

.objection-inner {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: center;
}

.objection-heading .label { color: var(--silver); margin-bottom: 1.2rem; }

.objection-heading h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--text-dark);
}

.objection-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }

.objection-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(26,26,26,0.78);
}

.check-icon { flex-shrink: 0; }


/* ─── ORDER / PRICE ────────────────────────────────────────── */
#order {
  background: var(--bg-dark);
  color: #fff;
  padding: 7rem 2rem 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#order .label { color: var(--silver); margin-bottom: 1rem; }

.price-display {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 1;
  margin-bottom: 0;
}

.price-sub {
  font-size: 0.85rem;
  color: rgba(200,200,200,0.45);
  margin-top: 0.8rem;
  margin-bottom: 2.4rem;
  max-width: 260px;
  line-height: 1.6;
}

.order-microcopy {
  margin-top: 1rem;
  font-size: 0.68rem;
  color: rgba(200,200,200,0.35);
  letter-spacing: 0.1em;
}


/* ─── FAQ ──────────────────────────────────────────────────── */
#faq {
  background: var(--bg-light);
  border-top: 1px solid rgba(200,200,200,0.4);
  padding: 5rem 2rem 6rem;
}

.faq-inner { max-width: 640px; margin: 0 auto; }

.faq-inner h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.faq-item { border-bottom: 1px solid rgba(200,200,200,0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.faq-question:hover { opacity: 0.55; }

.faq-icon { flex-shrink: 0; transition: transform 0.25s var(--ease); color: var(--silver); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}
.faq-item.open .faq-answer { max-height: 200px; opacity: 1; }

.faq-answer p {
  padding-bottom: 1.2rem;
  font-size: 0.88rem;
  color: rgba(26,26,26,0.58);
  line-height: 1.7;
}


/* ─── FINAL CLOSE ──────────────────────────────────────────── */
#close {
  background: var(--bg-dark);
  color: #fff;
  padding: 6rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.close-line {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.close-gap { height: 0.4rem; }
.close-spacer { height: 3rem; }


/* ─── EMAIL CAPTURE MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 16px;
  padding: 3rem 2.8rem 2.8rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color 0.15s;
}
.modal-close:hover { color: #fff; }

.modal-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.9rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.modal-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 2rem;
}

.modal-form {}

.modal-input-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.modal-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.65rem 1.3rem;
  outline: none;
  transition: border-color 0.2s;
}
.modal-input::placeholder { color: rgba(255,255,255,0.3); }
.modal-input:focus { border-color: rgba(255,255,255,0.5); }

.modal-submit {
  flex-shrink: 0;
  white-space: nowrap;
}

.modal-fine {
  margin-top: 0.85rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}

.modal-success {
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.modal-success-icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.modal-success-msg {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}


/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy, .footer-email {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,200,200,0.38);
}

.footer-email {
  text-decoration: none;
  transition: color 0.15s;
}
.footer-email:hover { color: #fff; }


/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }

  #story { grid-template-columns: 1fr; }
  .story-copy { padding: 2.5rem 1.5rem; }

  #gallery { grid-template-columns: 1fr; }

  .who-details-inner { grid-template-columns: 1fr; gap: 3rem; }

  .proof-grid { grid-template-columns: 1fr; }

  .objection-inner { grid-template-columns: 1fr; gap: 2rem; }

  .identity-inner p { font-size: 1.1rem; }

  #identity { padding: 4rem 1.5rem; }
  #who-details, #proof, #objection, #faq, #order { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 480px) {
  #gallery { grid-template-columns: 1fr; gap: 0.75rem; }
}
