/* ═══════════════════════════════════════
   CURATED BY COURTNEY — Brand Styles
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,500;1,600&family=Didact+Gothic&family=Tenor+Sans&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --deep:    #2C4A52;
  --teal:    #5A9EA8;
  --teal-l:  #8EC4CC;
  --sage:    #7AAB98;
  --sage-l:  #A8CDB8;
  --seafoam: #D4E8DF;
  --mist:    #F2F7F5;
  --cloud:   #E4F2F7;
  --text:    #2E4A48;
  --mid:     #5A7878;
  --light:   #8AABAA;
  --white:   #FFFFFF;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-label:   'Didact Gothic', sans-serif;
  --ff-body:    'Tenor Sans', sans-serif;

  --nav-h:  72px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 100px;

  --sh-sm: 0 2px 12px rgba(44,74,82,.07);
  --sh-md: 0 4px 28px rgba(44,74,82,.10);
  --sh-lg: 0 8px 48px rgba(44,74,82,.14);
}

body {
  background: var(--mist);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--deep);
  box-shadow: 0 2px 20px rgba(44,74,82,.3);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-top {
  font-family: var(--ff-label);
  font-size: .52rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage-l);
}
.logo-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-l), transparent);
  opacity: .45;
}
.logo-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links > li > a {
  font-family: var(--ff-label);
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: rgba(255,255,255,.95); }

.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-dropdown:hover > a { color: rgba(255,255,255,.95) !important; }
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(1px); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid rgba(90,158,168,.15);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-family: var(--ff-label);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--mist); color: var(--deep); }

.nav-cta {
  padding: 9px 20px !important;
  border-radius: var(--r-pill) !important;
  background: var(--teal) !important;
  color: var(--white) !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--sage) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.75); transition: all .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--r-pill);
  font-family: var(--ff-label);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
  line-height: 1;
}
.btn-primary { background: var(--deep); color: var(--white); }
.btn-primary:hover { background: var(--teal); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--sage); }
.btn-outline { background: none; border: 1.5px solid rgba(44,74,82,.25); color: var(--mid); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-light { background: none; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.75); }
.btn-outline-light:hover { border-color: var(--white); color: var(--white); }
.btn-white { background: var(--white); color: var(--deep); }
.btn-white:hover { background: var(--seafoam); }

/* ── LAYOUT ── */
.section { padding: 80px 48px; }
.section-alt { background: var(--white); }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--ff-label);
  font-size: .55rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; }
.section-rule { width: 40px; height: 2px; background: var(--teal); margin-bottom: 36px; }
.section-sub { font-size: .92rem; color: var(--mid); line-height: 1.75; max-width: 560px; }

/* ── FORM SHARED ── */
.form-hero {
  background: var(--deep);
  padding: calc(var(--nav-h) + 56px) 48px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-hero .section-eyebrow { color: var(--sage-l); }
.form-hero .section-title { color: var(--white); }
.form-hero .section-sub { color: rgba(255,255,255,.55); margin: 0 auto; }

.form-shell { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 36px;
  flex-wrap: wrap;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-label);
  font-size: .58rem;
  border: 1.5px solid rgba(90,158,168,.25);
  color: var(--light);
  background: var(--white);
  transition: all .3s;
}
.step-dot.done { background: var(--sage); border-color: var(--sage); color: var(--white); }
.step-dot.active { background: var(--deep); border-color: var(--deep); color: var(--white); transform: scale(1.15); }
.step-line { width: 24px; height: 1.5px; background: rgba(90,158,168,.2); transition: background .3s; }
.step-line.done { background: var(--sage); }

.step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px;
  border: 1px solid rgba(90,158,168,.12);
  box-shadow: var(--sh-md);
  animation: fadeUp .35s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.step-label { font-family: var(--ff-label); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.step-title { font-family: var(--ff-display); font-style: italic; font-size: 1.9rem; color: var(--deep); margin-bottom: 8px; }
.step-sub { font-size: .88rem; color: var(--mid); margin-bottom: 32px; line-height: 1.6; }

.q-label { display: block; font-family: var(--ff-label); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.q-input, .q-select, .q-textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid rgba(90,158,168,.2);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--mist);
  outline: none;
  transition: border .2s, background .2s;
  margin-bottom: 24px;
  appearance: none;
}
.q-input:focus, .q-select:focus, .q-textarea:focus { border-color: var(--teal); background: var(--white); }
.q-input::placeholder, .q-textarea::placeholder { color: var(--light); }
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q-divider { height: 1px; background: rgba(90,158,168,.1); margin: 24px 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(90,158,168,.2);
  font-family: var(--ff-label);
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mid);
  background: var(--white);
  transition: all .2s;
  user-select: none;
}
.chip:hover:not(.on) { border-color: var(--teal); color: var(--teal); background: var(--cloud); }
.chip.on { background: var(--deep); border-color: var(--deep); color: var(--white); }

.radio-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.radio-opt { padding: 14px 20px; border-radius: var(--r-sm); border: 1.5px solid rgba(90,158,168,.18); cursor: pointer; transition: all .2s; background: var(--white); }
.radio-opt:hover:not(.on) { border-color: var(--teal); background: var(--cloud); }
.radio-opt.on { border-color: var(--teal); background: var(--cloud); }
.radio-opt-title { font-family: var(--ff-label); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--deep); }
.radio-opt-sub { font-size: .78rem; color: var(--mid); margin-top: 2px; }

.range-wrap { margin-bottom: 24px; }
.range-row { display: flex; align-items: center; gap: 16px; }
input[type=range] { flex: 1; accent-color: var(--teal); }
.range-val { font-family: var(--ff-label); font-size: .7rem; color: var(--deep); min-width: 60px; text-align: right; }

.nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; }
.btn-back { padding: 12px 28px; border-radius: var(--r-pill); border: 1.5px solid rgba(90,158,168,.25); background: none; color: var(--mid); font-family: var(--ff-label); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: all .2s; }
.btn-back:hover { border-color: var(--teal); color: var(--teal); }
.btn-next { padding: 14px 40px; border-radius: var(--r-pill); background: var(--deep); border: none; color: var(--white); font-family: var(--ff-label); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
.btn-next:hover { background: var(--teal); }
.btn-submit { width: 100%; padding: 16px; border-radius: var(--r-pill); background: var(--deep); border: none; color: var(--white); font-family: var(--ff-label); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
.btn-submit:hover { background: var(--teal); }

.confirm-screen { text-align: center; padding: 64px 40px; background: var(--white); border-radius: var(--r-lg); border: 1px solid rgba(90,158,168,.12); box-shadow: var(--sh-md); animation: fadeUp .4s ease both; }
.confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--seafoam); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.6rem; }
.confirm-title { font-family: var(--ff-display); font-style: italic; font-size: 2rem; color: var(--deep); margin-bottom: 12px; }
.confirm-sub { font-size: .9rem; color: var(--mid); line-height: 1.75; max-width: 420px; margin: 0 auto 28px; }

.progress-bar { position: fixed; top: var(--nav-h); left: 0; height: 3px; background: var(--teal); z-index: 300; transition: width .4s ease; }

/* ── FOOTER ── */
footer { background: var(--deep); padding: 56px 48px 40px; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo .logo-top { color: var(--sage-l); }
.footer-logo .logo-name { color: var(--white); }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.35); margin-top: 14px; font-style: italic; font-family: var(--ff-display); line-height: 1.5; }
.footer-col-title { font-family: var(--ff-label); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-l); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { max-width: 1080px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-label); font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2); }

/* ── ORBS ── */
.orb { position: absolute; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, var(--teal), transparent 70%); opacity: .07; animation: drift 20s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(24px,-32px) scale(1.04); } 66% { transform: translate(-18px,22px) scale(.97); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; background: var(--deep); padding: 16px 24px 24px; gap: 4px; z-index: 199; border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: var(--sh-md); }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: .68rem; padding: 10px 4px; display: block; }
  .dropdown-menu { position: static; transform: none !important; opacity: 1 !important; pointer-events: auto; box-shadow: none; border: none; background: transparent; padding: 4px 16px; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown.open .dropdown-menu a { color: rgba(255,255,255,.5); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none !important; }
  .section { padding: 56px 24px; }
  .q-row { grid-template-columns: 1fr; }
  .step-card { padding: 32px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-hero { padding: calc(var(--nav-h) + 36px) 24px 40px; }
}
