@charset "UTF-8";
/* ==========================================================================
   Mental Affluence — site stylesheet
   Brand palette and type system. Edit colors here and they change everywhere.
   ========================================================================== */

:root {
  /* Brand palette */
  --ink:      #0F1113;  /* deepest black — page background */
  --black:    #1C1F23;  /* Authority Black — panels */
  --shadow:   #2A2D32;  /* Soft Shadow — borders, cards */
  --gold:     #C6A667;  /* Affluence Gold — accent */
  --gold-dim: #8E7746;  /* muted gold for rules and hovers */
  --olive:    #6F7B5A;  /* Olive Root — secondary accent */
  --silver:   #CFCFD2;  /* Silver Mind — body text */
  --silver-2: #8E9095;  /* muted text */

  /* Type */
  --display: "AdornS", "Cormorant Garamond", Georgia, serif;
  --ui:      "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --body:    Arial, Helvetica, sans-serif;

  /* Layout */
  --max:  1180px;
  --gutter: 24px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #E0C68C; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

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

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; color: #F2F1EE; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }
p  { margin: 0 0 1.15em; }
.lede { font-size: 1.15rem; color: #DCDBD7; }
.muted { color: var(--silver-2); }

/* Small uppercase label used above section headings */
.eyebrow {
  font-family: var(--ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--ui);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: var(--gold); color: var(--ink); }
.btn-solid { background: var(--gold); color: var(--ink); }
.btn-solid:hover { background: #E0C68C; color: var(--ink); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 17, 19, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 44px; width: auto; }
.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  color: #F2F1EE;
  line-height: 1.05;
  letter-spacing: .01em;
}
.brand-name sup { font-size: .5em; color: var(--gold); top: -.7em; position: relative; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav .btn { padding: 11px 22px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--shadow);
  color: var(--silver); padding: 9px 12px; cursor: pointer;
  font-family: var(--ui); font-size: .75rem; letter-spacing: .1em;
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 90px var(--gutter);
  overflow: hidden;
  border-bottom: 1px solid var(--shadow);
}
/* Signature element: the light bloom. This is the bed's glow, rendered in CSS.
   To use a photo instead, add a background-image on .hero and keep this on top. */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(198,166,103,.20), transparent 68%),
    radial-gradient(38% 34% at 50% 44%, rgba(198,166,103,.16), transparent 70%),
    radial-gradient(90% 70% at 50% 100%, rgba(111,123,90,.13), transparent 70%);
  animation: bloom 11s ease-in-out infinite;
}
@keyframes bloom {
  0%, 100% { opacity: .82; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  html { scroll-behavior: auto; }
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .attribution {
  font-family: var(--ui); font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver-2);
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slimmer hero for interior pages */
.hero-sm { min-height: 46vh; }
.hero-sm h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }

/* --- Sections ------------------------------------------------------------- */
.section { padding: 88px 0; border-bottom: 1px solid var(--shadow); }
.section-panel { background: var(--black); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Card grid ------------------------------------------------------------ */
.grid { display: grid; gap: 1px; background: var(--shadow); border: 1px solid var(--shadow); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--ink);
  padding: 34px 30px;
  transition: background .25s ease;
}
.card:hover { background: var(--black); }
.card h3 { color: #F2F1EE; margin-bottom: .45em; }
.card p { margin: 0; font-size: .95rem; color: var(--silver-2); line-height: 1.7; }
.card .marker {
  font-family: var(--ui); font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; color: var(--gold-dim); display: block; margin-bottom: 14px;
}

/* --- Two-column split ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { border: 1px solid var(--shadow); }

/* --- Rates table ---------------------------------------------------------- */
.rate-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--shadow);
}
.rate-row:last-child { border-bottom: 0; }
.rate-row h3 { margin: 0 0 .25em; }
.rate-row p { margin: 0; font-size: .95rem; color: var(--silver-2); }
.rate-price {
  font-family: var(--display); font-size: 1.9rem; color: var(--gold); white-space: nowrap;
}

/* --- Contact / details list ----------------------------------------------- */
.detail { margin-bottom: 26px; }
.detail .label {
  font-family: var(--ui); font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px;
}
.detail .value { font-size: 1.05rem; color: #E6E5E1; }

/* --- Closing CTA ---------------------------------------------------------- */
.cta { text-align: center; padding: 96px 0; }
.cta p { max-width: 640px; margin-left: auto; margin-right: auto; }
.cta .hero-actions { margin-top: 30px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--black); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-grid img { height: 96px; width: auto; margin-bottom: 20px; }
.footer-grid h4 {
  font-family: var(--ui); font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--silver); font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--shadow);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .82rem; color: var(--silver-2);
}
.disclaimer {
  margin-top: 22px; font-size: .78rem; line-height: 1.65; color: #6E7075; max-width: 760px;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid var(--shadow);
    padding: 24px var(--gutter);
  }
  .nav-toggle { display: block; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .rate-row { flex-direction: column; gap: 8px; }
}

/* --- Daily quote ---------------------------------------------------------- */
.quote-block { text-align: center; max-width: 760px; margin: 0 auto; }
.quote-block blockquote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.3; font-style: italic;
  color: #F2F1EE; margin: 0 0 22px;
}
.quote-block cite {
  font-family: var(--ui); font-style: normal; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.quote-rule { width: 54px; height: 1px; background: var(--gold-dim); margin: 0 auto 34px; }

/* --- Newsletter ----------------------------------------------------------- */
.newsletter { background: var(--black); text-align: center; padding: 80px 0; }
.newsletter .inner { max-width: 620px; margin: 0 auto; }
.signup-slot {
  margin-top: 28px; border: 1px dashed var(--gold-dim); padding: 40px 24px;
  font-family: var(--ui); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--silver-2);
}
.footer-signup { margin-top: 18px; }

/* --- Coming soon cards ---------------------------------------------------- */
.coming-card { position: relative; }
.coming-card .status {
  display: inline-block; font-family: var(--ui); font-size: .64rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--olive);
  border: 1px solid var(--olive); padding: 4px 10px; margin-bottom: 16px;
}

/* --- Forms ---------------------------------------------------------------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-family: var(--ui); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--ink); color: #E6E5E1;
  border: 1px solid var(--shadow); padding: 13px 15px;
  font-family: var(--body); font-size: 1rem; border-radius: 0;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-dim); outline: none;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .84rem; color: var(--silver-2); margin-top: 14px; }
.honey { position: absolute; left: -9999px; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }

/* --- Investment callout --------------------------------------------------- */
.callout {
  border: 1px solid var(--gold-dim); padding: 34px 32px; margin: 40px 0;
}
.callout h3 { color: var(--gold); margin-bottom: .4em; }
.callout p:last-child { margin-bottom: 0; }

/* --- Founder cards: portrait headshots, matched framing ------------------- */
.founder-img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; display: block; }
