/* Grounded Presence Coaching — dark luxury theme */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0f0d0b;
  --bg-raised: #151210;
  --surface: #1c1815;
  --line: rgba(201, 162, 94, .16);
  --line-strong: rgba(201, 162, 94, .38);
  --gold: #c9a25e;
  --gold-light: #e8cf9c;
  --gold-deep: #9a7736;
  --cream: #f1e9d8;
  --muted: #a89d89;
  --radius: 4px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #171310; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .005em;
  color: var(--cream);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.7rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.1em; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 52ch; }

/* Gold monogram + lockup */
.monogram { display: block; height: auto; }
.lockup { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lockup-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: var(--gold-light);
  text-indent: .34em; /* balance tracking */
  text-align: center;
}
.lockup-rule { display: flex; align-items: center; gap: 12px; }
.lockup-rule span { display: block; width: 74px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong)); }
.lockup-rule span:last-child { background: linear-gradient(90deg, var(--line-strong), transparent); }
.lockup-rule i { display: block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.lockup-sub {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .58em; text-indent: .58em;
  color: var(--gold); font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 17px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }
.btn-primary {
  background: linear-gradient(135deg, #e2c384 0%, #c9a25e 45%, #a8813f 100%);
  color: #171310;
  box-shadow: 0 8px 28px rgba(201, 162, 94, .18);
}
.btn-primary:hover { box-shadow: 0 10px 34px rgba(201, 162, 94, .3); color: #171310; }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 13, 11, .82);
  backdrop-filter: saturate(120%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand:hover { text-decoration: none; }
.brand .monogram { width: 32px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--cream);
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--muted); font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { padding: 12px 24px; font-size: .72rem; color: #171310 !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--cream); }

/* Hero */
.hero { padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px); text-align: center; }
.hero .lockup { margin-bottom: clamp(40px, 6vw, 64px); }
.hero .lockup .monogram { width: clamp(88px, 12vw, 118px); height: auto; }
.hero h1 { max-width: 17ch; margin-left: auto; margin-right: auto; }
.hero .lead { font-size: 1.2rem; margin: 0 auto 2.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.hero-note { font-size: .85rem; color: var(--muted); margin-top: 1.6rem; letter-spacing: .02em; }

/* Sections */
section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 46ch; margin-bottom: 3.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-raised { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Grids & cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.card .num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: .6rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* Belief list */
.belief-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.belief-list li { display: flex; gap: 16px; align-items: flex-start; }
.belief-list .mark {
  flex: 0 0 auto; margin-top: 3px;
  font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold);
}
.belief-list .mark.x { color: var(--muted); }

/* Offers */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.offer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex; flex-direction: column;
}
.offer.featured {
  border-color: var(--line-strong);
  box-shadow: 0 0 60px rgba(201, 162, 94, .08) inset, 0 20px 60px rgba(0, 0, 0, .4);
}
.offer .tag {
  display: inline-block; align-self: flex-start;
  font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px; margin-bottom: 22px;
}
.offer .tag.now { border: 1px solid var(--line-strong); color: var(--gold-light); }
.offer .tag.soon { background: linear-gradient(135deg, #e2c384, #a8813f); color: #171310; }
.offer h3 { font-size: 1.9rem; }
.offer .price { color: var(--muted); font-size: .92rem; margin: -.2rem 0 1.4rem; }
.offer ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.offer ul li { display: flex; gap: 12px; color: var(--cream); font-size: .96rem; }
.offer ul li::before { content: "—"; color: var(--gold); flex: 0 0 auto; }
.offer .btn { margin-top: auto; text-align: center; }

/* About */
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.headshot {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
}
.about-grid p { color: var(--muted); }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); padding: 24px 0; }
details summary {
  cursor: pointer; list-style: none;
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-family: 'Inter', sans-serif; font-weight: 400; flex: 0 0 auto; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 16px 0 0; }

/* Forms */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px 36px; max-width: 540px; margin: 0 auto;
}
.form-card h3 { font-size: 1.7rem; }
.form-card > p { color: var(--muted); font-size: .95rem; }
.form-row { margin-bottom: 18px; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-split { grid-template-columns: 1fr; gap: 18px; } }
label {
  display: block; font-size: .68rem; font-weight: 600; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .18em; color: var(--gold-light);
}
input, textarea, select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: .95rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: #14110e; color: var(--cream);
}
input:focus, textarea:focus, select:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.form-hint { font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* CTA band */
.cta-band { text-align: center; }

/* Footer */
footer.site { background: var(--bg); border-top: 1px solid var(--line); padding: 70px 0 34px; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--gold-light); }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.foot-brand { max-width: 300px; }
.foot-brand .brand { margin-bottom: 4px; }
.foot-brand p { color: var(--muted); font-size: .9rem; margin-top: 14px; }
.foot-col h4 {
  font-family: 'Inter', sans-serif; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .24em; margin-bottom: 16px; color: var(--gold);
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: .92rem; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--muted);
}

/* Legal pages */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) 24px; }
.legal h1 { margin-bottom: .3em; }
.legal .updated { color: var(--muted); font-size: .88rem; margin-bottom: 2.6rem; }
.legal h2 { font-size: 1.7rem; margin-top: 2.4rem; }
.legal p, .legal li { color: var(--muted); }
.legal .disclaimer {
  background: var(--surface); border: 1px solid var(--line); border-left: 2px solid var(--gold);
  border-radius: var(--radius); padding: 22px 26px; font-size: .95rem; color: var(--cream);
}
.legal .disclaimer strong { color: var(--gold-light); }
.back-link {
  display: inline-block; margin-bottom: 2rem;
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
  .nav-links a { letter-spacing: .1em; }
}
@media (max-width: 960px) and (min-width: 881px) {
  header.site .brand-name { display: none; }
}
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .offers { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .headshot { max-width: 250px; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg-raised);
    border-bottom: 1px solid var(--line); padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-links .nav-cta { margin: 12px 24px; text-align: center; width: auto; }
  .nav-toggle { display: block; }
}
