/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #07070a;
  --black-2: #101013;
  --black-3: #17171b;
  --border: rgba(236, 231, 226, 0.1);
  --border-gold: rgba(205, 168, 110, 0.35);

  --white-dim: #ece7e2;
  --white-mute: rgba(236, 231, 226, 0.66);
  --white-faint: rgba(236, 231, 226, 0.4);

  --gold: #cda86e;
  --gold-light: #e8cd9a;
  --gold-deep: #a8813f;

  --pink: #ff6fb0;
  --pink-deep: #e0468e;
  --pink-soft: #f6b8d3;

  --serif: "Playfair Display", serif;
  --script: "Cormorant Garamond", serif;
  --sans: "Jost", sans-serif;

  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white-dim);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--white-dim); letter-spacing: 0.01em; }
p { color: var(--white-mute); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 130px 0; position: relative; scroll-margin-top: 90px; }
.section-alt { background: linear-gradient(180deg, var(--black-2), var(--black)); }
.section-dark { background: var(--black-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

#hero, #apply { scroll-margin-top: 80px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12.5px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.lead { font-size: 19px; color: var(--white-mute); max-width: 620px; }
.lead.center { margin: 0 auto; text-align: center; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.section-head .lead { margin-top: 0; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--pink-deep));
  color: #1a1206;
  box-shadow: 0 10px 30px -8px rgba(205, 168, 110, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(255, 111, 176, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(236, 231, 226, 0.28);
  color: var(--white-dim);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-small { padding: 11px 22px; font-size: 12.5px; }
.btn-large { padding: 20px 44px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  border-color: var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 34px; margin: 0 auto; }
.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-mute);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white-dim); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(255, 111, 176, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(205, 168, 110, 0.12), transparent),
    var(--black);
  z-index: -1;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.12;
  margin-bottom: 26px;
}
.hero-sub { font-size: 18px; color: var(--white-mute); max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame-accent {
  position: absolute;
  width: 88%;
  aspect-ratio: 4/5;
  max-width: 335px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  top: 26px;
  right: -18px;
  z-index: 1;
  opacity: 0.5;
}

.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-cue span {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 2.2s infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============ SPLIT (What It Is) ============ */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; margin-bottom: 90px; }
.split-copy p { margin-bottom: 18px; }
.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.focus-block { margin-top: 32px; }
.focus-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-faint); margin-bottom: 14px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.03em;
  background: rgba(205, 168, 110, 0.06);
}

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-gold); }
.feature-num { font-family: var(--serif); color: var(--gold); font-size: 15px; opacity: 0.8; }
.feature-card h3 { font-size: 19px; margin: 14px 0 10px; }
.feature-card p { font-size: 14.5px; }

/* ============ HOW IT WORKS ============ */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-weight: 600;
}
.step-body h3 { font-size: 22px; margin-bottom: 8px; }
.step-body p { font-size: 15.5px; max-width: 520px; }

.center-cta { text-align: center; margin-top: 60px; }

/* ============ WHY SALES ============ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 111, 176, 0.04), transparent 60%), var(--black-2);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(255, 111, 176, 0.3); }
.value-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--gold-light); }
.value-card p { font-size: 14.5px; }

/* ============ ABOUT NORA ============ */
.nora-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; margin-bottom: 90px; }
.nora-media { position: relative; }
.nora-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-gold); }
.nora-frame img { width: 100%; height: 100%; object-fit: cover; }
.nora-frame-main { aspect-ratio: 4/5; }
.nora-frame-small {
  position: absolute;
  width: 46%;
  aspect-ratio: 3/4;
  bottom: -40px;
  right: -30px;
  box-shadow: 0 20px 50px -14px rgba(0, 0, 0, 0.8);
}
.nora-copy p { margin-bottom: 18px; font-size: 15.5px; }
.nora-copy .lead { font-size: 22px; font-family: var(--script); font-style: italic; color: var(--gold-light); margin-bottom: 22px; }

.nora-story, .nora-close {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
  padding-top: 70px;
  border-top: 1px solid var(--border);
}
.nora-close { grid-template-columns: 1.1fr 0.9fr; }
.nora-close .nora-close-media { order: 2; }
.nora-story-media img, .nora-close-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.nora-story-copy p, .nora-close-copy p { margin-bottom: 18px; font-size: 15.5px; }
blockquote {
  font-family: var(--script);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
}
.nora-signoff { font-size: 18px !important; color: var(--white-dim) !important; font-family: var(--serif); margin-bottom: 30px !important; }
.nora-close { margin-bottom: 0; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.testimonial-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black-2);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--border-gold); }
.testimonial-card img { width: 100%; height: auto; display: block; }
.testimonial-card figcaption {
  padding: 14px 16px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--white-faint);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

/* ============ FINAL CTA ============ */
.final-cta { position: relative; padding: 150px 0; text-align: center; overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.55), rgba(7,7,10,0.9)),
    url("../assets/images/aesthetic/desk-roses-night.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.final-cta-inner h2 {
  font-family: var(--script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(34px, 6vw, 58px);
  color: var(--gold-light);
  margin-bottom: 22px;
}
.final-cta-inner p { max-width: 560px; margin: 0 auto 40px; font-size: 17px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============ APPLY FORM ============ */
.apply-wrap { max-width: 780px; margin: 0 auto; }
.apply-form {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 9px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
label { font-size: 13px; letter-spacing: 0.04em; color: var(--white-faint); text-transform: uppercase; }
input, select, textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white-dim);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 70px; }
select { appearance: none; cursor: pointer; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23cda86e"><path d="M5.5 7.5l4.5 4.5 4.5-4.5z"/></svg>'); background-repeat: no-repeat; background-position: right 14px center; }

.apply-success { text-align: center; padding: 70px 40px; border: 1px solid var(--border-gold); border-radius: 20px; background: var(--black-2); }
.apply-success h3 { font-size: 28px; color: var(--gold-light); margin-bottom: 16px; }
.apply-success p { font-size: 16px; max-width: 440px; margin: 0 auto; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 26px;
}
.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white-dim);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  color: var(--gold);
  font-size: 22px;
  transition: transform 0.3s;
  margin-left: 20px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; font-size: 15px; max-width: 640px; }

/* ============ FOOTER ============ */
.footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-light); }
.footer-links h4, .footer-contact h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-faint); margin-bottom: 18px; font-family: var(--sans); font-weight: 500; }
.footer-links a, .footer-contact a { display: block; font-size: 14.5px; color: var(--white-mute); margin-bottom: 12px; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 14.5px; }

.footer-legal { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-legal p { font-size: 12.5px; color: var(--white-faint); max-width: 720px; margin-bottom: 10px; }
.footer-copyright { font-size: 12px !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-actions { justify-content: center; }
  .hero-media { order: 1; margin-bottom: 20px; }
  .hero-frame { max-width: 300px; }

  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }

  .nora-layout { grid-template-columns: 1fr; }
  .nora-frame-small { position: static; width: 60%; margin-top: 20px; }
  .nora-story, .nora-close { grid-template-columns: 1fr; }
  .nora-close .nora-close-media { order: 0; }

  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(7,7,10,0.98);
    flex-direction: column;
    padding: 20px 32px 30px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { display: none; }

  .section { padding: 90px 0; }
  .container { padding: 0 22px; }

  .feature-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .apply-form { padding: 30px 22px; }

  .step { grid-template-columns: 56px 1fr; gap: 18px; padding: 26px 0; }
  .step-num { font-size: 28px; }

  /* Testimonials become a swipeable carousel on mobile */
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -22px;
    padding: 0 22px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card { flex: 0 0 78%; scroll-snap-align: center; }

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