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

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

:root {
  --black: #0A0A0A;
  --black-mid: #1A1A1A;
  --black-soft: #2A2A2A;
  --yellow: #FFC134;
  --yellow-light: #FFD470;
  --yellow-pale: rgba(255,193,52,.1);
  --cream: #FAF8F3;
  --warm-white: #FFFEFB;
  --text: #0A0A0A;
  --text-mid: #3A3A3A;
  --text-soft: #6B6B6B;
  --border: #E4E0D8;
  --border-dark: #C8C4BA;
  --label-color: #9A9690;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-ctas { display: flex; gap: 12px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 20px;
  border: 1.5px solid var(--black);
  border-radius: 3px; font-size: 13px; font-weight: 500;
  letter-spacing: .04em; color: var(--black);
  text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { background: var(--black); color: #fff; }

.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 20px;
  background: var(--yellow); border: 1.5px solid var(--yellow);
  border-radius: 3px; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--black);
  text-decoration: none; transition: all .2s;
}
.btn-solid:hover { background: var(--yellow-light); transform: translateY(-1px); }

/* ── SECTION COMMONS ── */
section { padding: 120px 48px; }

.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 56px;
}
.section-label-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--yellow); font-weight: 500;
}
.section-label-line {
  width: 40px; height: 1px; background: var(--border-dark);
}
.section-label-text {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--label-color);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400; line-height: 1.05; letter-spacing: -.01em;
}
.section-heading em { font-style: italic; color: var(--black-soft); }
.section-heading .hl { color: var(--yellow); font-style: italic; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 32px;
  background: var(--black); color: #fff;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  border-radius: 3px; text-decoration: none; transition: all .25s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--black-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-primary svg, .btn-primary:hover svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-primary-yellow {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 32px;
  background: var(--yellow); color: var(--black);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  border-radius: 3px; text-decoration: none; transition: all .25s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary-yellow:hover { background: var(--yellow-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,193,52,.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px; padding: 0 32px;
  border: 1.5px solid var(--black); border-radius: 3px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .04em;
  color: var(--black); text-decoration: none; transition: all .25s;
}
.btn-outline:hover { background: var(--black); color: #fff; }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px; padding: 0 32px;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 3px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .04em;
  color: #fff; text-decoration: none; transition: all .25s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* ── TICKER ── */
.ticker-section {
  padding: 28px 0;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex; gap: 0;
  animation: tickerScroll 45s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35); white-space: nowrap;
  transition: color .2s;
}
.ticker-item:hover { color: rgba(255,255,255,.75); }
.ticker-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--yellow); opacity: .5; flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 80px 48px 40px;
  color: rgba(255,255,255,.55);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: #fff;
  text-decoration: none; letter-spacing: .02em;
  display: inline-block; margin-bottom: 16px;
}
.footer-logo span { color: var(--yellow); }
.footer-brand-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.4); max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  color: rgba(255,255,255,.45); text-decoration: none;
  font-size: 12px; font-weight: 700; transition: all .2s;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none; font-size: 14px;
  color: rgba(255,255,255,.5); transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
}
.footer-bottom-copy { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 24px; margin-top: 6px; }
.footer-legal a {
  text-decoration: none; font-size: 12px;
  color: rgba(255,255,255,.25); transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.footer-disclaimer {
  font-size: 12px; color: rgba(255,255,255,.25); font-style: italic;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 48px 100px;
  background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.page-hero-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,193,52,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(255,193,52,.1);
  border: 1px solid rgba(255,193,52,.25);
  border-radius: 100px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 28px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 400; line-height: .98; letter-spacing: -.01em;
  color: #fff; max-width: 800px; margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--yellow); }
.page-hero p {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,.6); max-width: 560px; margin-bottom: 44px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── FORM ── */
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 10px;
}
.form-group label .req { color: var(--yellow); margin-left: 3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; height: 50px; padding: 0 18px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 3px; font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text); transition: border-color .2s;
  outline: none;
}
.form-group textarea {
  height: auto; padding: 16px 18px; resize: vertical; min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border-dark); }
.form-hint {
  margin-top: 7px; font-size: 12.5px;
  color: var(--text-soft); line-height: 1.5;
}
.form-divider {
  margin: 40px 0; border: none;
  border-top: 1px solid var(--border);
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--black);
  margin-bottom: 24px;
}
.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-success {
  display: none; padding: 24px 28px;
  background: rgba(255,193,52,.08);
  border: 1.5px solid rgba(255,193,52,.3);
  border-radius: 4px; margin-top: 24px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.form-success.show { display: block; }

/* ── HAMBURGER & MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250,248,243,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 28px;
  z-index: 99;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--black); }
.nav-mobile-ctas {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}
.nav-mobile-ctas a { flex: 1; justify-content: center; height: 44px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 24px; }
  .page-hero { padding: 120px 24px 80px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .page-hero { padding: 100px 20px 60px; }
  .page-hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .page-hero p { font-size: 15px; }
  .section-heading { font-size: clamp(32px, 9vw, 52px); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 60px 20px 32px; }
  .btn-primary, .btn-primary-yellow { height: 46px; padding: 0 24px; font-size: 13px; }
  .btn-outline, .btn-outline-light { height: 44px; padding: 0 24px; font-size: 13px; }
  .nav-mobile { padding: 8px 20px 24px; }
  .nav-mobile-ctas { flex-direction: column; }
  .nav-mobile-ctas a { flex: none; }
}
