@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&family=Barlow+Condensed:wght@300;400;500;600;700&family=Barlow:wght@300;400;500&display=swap');

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

:root {
  --ink:    #0f1a14;
  --bg:     #f4f1ec;
  --warm:   #ece6da;
  --gold:   #b8934a;
  --gold-lt:#d4ab6a;
  --gold-dk:#9a7a3a;
  --cream:  #faf7f2;
  --grey:   #7a7a72;
  --grey-lt:#a8a8a0;
  --line:   #d0c8bb;
  --dark:   #141f18;
  --dark2:  #1a271e;
  --shadow: 0 2px 24px rgba(15,26,20,.08);
  --shadow-md: 0 8px 40px rgba(15,26,20,.12);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL PROGRESS ── */
.sp {
  position: fixed; top: 0; left: 0;
  height: 1.5px; background: var(--gold);
  z-index: 9999; width: 0%;
  transition: width .08s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  transition: background .45s, box-shadow .45s, height .35s, padding .35s;
}
nav.floating { background: transparent; }
nav.scrolled {
  background: rgba(244,241,236,0.96);
  box-shadow: 0 1px 0 var(--line), 0 4px 32px rgba(15,26,20,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 64px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; z-index: 10; }
.nav-logo img {
  height: 50px; width: auto; display: block;
  transition: height .35s;
}
nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.7); text-decoration: none; transition: color .25s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
nav.scrolled .nav-links a { color: var(--grey); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--gold); }

.nav-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 11px 28px; text-decoration: none;
  transition: background .25s, transform .2s;
  position: relative; overflow: hidden;
}
.nav-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.nav-btn:hover { background: var(--gold-dk); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; z-index: 10; background: none; border: none; padding: 4px;
}
.nav-ham span {
  display: block; height: 1.5px; background: rgba(255,255,255,.8);
  transition: transform .35s, opacity .25s, background .25s;
  transform-origin: center;
}
nav.scrolled .nav-ham span { background: var(--ink); }
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 900; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300;
  color: rgba(244,241,236,.75); text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  margin-top: 16px; font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 14px 36px; font-weight: 500;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 58vh; padding-top: 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.page-hero-bg { position: absolute; inset: 0; background: var(--dark); }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,147,74,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,74,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,147,74,.06) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 80px 96px;
}
.page-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: .72rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.page-kicker::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 6.5rem); line-height: .92;
  color: #f4f1ec; letter-spacing: -.01em;
}
.page-h1 em { font-style: italic; color: var(--gold); }

/* ── SHARED ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 80px; }

.s-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.s-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.s-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem); line-height: .94;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 64px;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title.light { color: #f4f1ec; }

.divider {
  display: flex; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0 80px;
}
.divider-line { flex: 1; height: 1px; background: var(--line); }
.divider-icon { color: var(--gold); font-size: .72rem; opacity: .7; }

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 56px 80px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.ft-logo img { height: 38px; width: auto; }
.ft-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .14em;
  color: rgba(244,241,236,.25); text-align: center; line-height: 2;
}
.ft-links { display: flex; justify-content: flex-end; gap: 28px; }
.ft-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,241,236,.28); text-decoration: none; transition: color .2s;
}
.ft-links a:hover { color: var(--gold); }
.ft-bottom {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.05);
  padding: 18px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-bottom p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .63rem; letter-spacing: .12em; color: rgba(244,241,236,.18);
}
.ft-socials { display: flex; gap: 12px; }
.ft-socials a {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color .25s, background .25s;
}
.ft-socials a:hover { border-color: var(--gold); background: rgba(184,147,74,.08); }
.ft-socials svg { width: 13px; height: 13px; stroke: rgba(244,241,236,.35); fill: none; stroke-width: 1.5; transition: stroke .25s; }
.ft-socials a:hover svg { stroke: var(--gold); }

/* ── FORMS ── */
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-g { margin-bottom: 20px; }
.f-lbl {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: .63rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--grey-lt); margin-bottom: 10px;
}
.f-inp, .f-sel, .f-txt {
  width: 100%; background: var(--cream);
  border: 1px solid var(--line); color: var(--ink);
  padding: 14px 18px; font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: .95rem;
  outline: none; transition: border-color .25s, box-shadow .25s; -webkit-appearance: none;
  border-radius: 0;
}
.f-inp:focus, .f-sel:focus, .f-txt:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,74,.08);
}
.f-inp::placeholder, .f-txt::placeholder { color: #c8c4bc; }
.f-sel {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a72' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.f-sel option { background: var(--cream); }
.f-txt { resize: vertical; min-height: 120px; line-height: 1.7; }
.f-btn {
  width: 100%; background: var(--dark); color: #f4f1ec; border: none;
  padding: 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 500;
  font-size: .75rem; letter-spacing: .24em; text-transform: uppercase;
  cursor: pointer; margin-top: 6px; transition: background .25s, transform .15s;
}
.f-btn:hover { background: var(--gold); transform: translateY(-1px); }
.f-btn.success { background: #2d5a35 !important; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  html { font-size: 16px; }
  nav { padding: 0 24px; }
  .nav-links, .nav-btn { display: none; }
  .nav-ham { display: flex; }
  .wrap, .divider { padding-left: 24px; padding-right: 24px; }
  .page-hero-content { padding: 0 24px 64px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
  .ft-links { justify-content: center; }
  .ft-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; }
  .f-row { grid-template-columns: 1fr; }
}
