/* =========================================================
   THE CONGLOMERATE LIFE  /  site.css
   v15.0  /  2026-05-03
   Black + gold + paper. Cinzel display, Cormorant italic,
   Inter Tight UI. Editorial authority, conversion-focused.
   ========================================================= */

:root {
  --black:        #05050a;
  --ink:          #0a0a12;
  --ink-2:        #0f0f18;
  --gold:         #d4a84a;
  --gold-bright:  #f4cf6a;
  --gold-deep:    #8a6a1f;
  --gold-soft:    rgba(212, 168, 74, 0.18);
  --gold-line:    rgba(212, 168, 74, 0.35);
  --gold-faint:   rgba(212, 168, 74, 0.12);
  --paper:        #ece5d2;
  --paper-dim:    rgba(236, 229, 210, 0.72);
  --paper-faint:  rgba(236, 229, 210, 0.45);
  --paper-ghost:  rgba(236, 229, 210, 0.18);
  --warning:      #c14a4a;
  --max-w:        1180px;
  --max-w-narrow: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 10%,  rgba(212,168,74,0.07), transparent 70%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(138,106,31,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.66 0 0 0 0 0.29 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.30;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== NAV ========== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--gold-line);
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3.5px;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand .amp { color: var(--gold); margin: 0 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-links a.book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  padding: 12px 22px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a.book:hover {
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,168,74,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-line);
  color: var(--paper);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav { padding: 18px 22px; }
  .nav-brand { font-size: 13px; letter-spacing: 2.5px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--gold-line);
    padding: 18px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 14px 22px;
    width: 100%;
    border-bottom: 1px solid var(--gold-faint);
  }
  .nav-links a.book {
    margin: 14px 22px 0;
    width: auto;
    text-align: center;
    border-bottom: none;
    padding: 14px 22px;
  }
}

/* ========== TYPOGRAPHY UTILITIES ========== */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}

.flourish-line {
  width: 60px;
  height: 1px;
  background: var(--gold-line);
}

.flourish-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.italic-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,168,74,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
}

.btn-secondary:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.btn-block { display: block; width: 100%; }

/* ========== SECTION FRAMEWORK ========== */
.section {
  padding: 110px 32px;
  position: relative;
}

.section-tight  { padding: 80px 32px; }
.section-narrow { max-width: var(--max-w-narrow); margin: 0 auto; }
.section-wide   { max-width: var(--max-w);        margin: 0 auto; }

.section-divider {
  border-top: 1px solid var(--gold-line);
}

.section h1, .section h2, .section h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.5px;
}

.h1-hero {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.h2-section {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.h3-card {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.5;
  max-width: 660px;
}

.body-copy {
  font-size: 17px;
  color: var(--paper-dim);
  line-height: 1.7;
  max-width: 620px;
}

.body-copy + .body-copy { margin-top: 16px; }

/* ========== HERO ========== */
.hero {
  padding: 120px 32px 100px;
  text-align: center;
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
}

.hero-inner {
  max-width: 940px;
  margin: 0 auto;
}

.hero h1 { margin-bottom: 28px; }

.hero h1 .gold {
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 44px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero { padding: 80px 22px 70px; }
  .hero-cta .btn { width: 100%; max-width: 360px; }
}

/* ========== PROBLEM / URGENCY BANDS ========== */
.band {
  background: var(--ink);
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  padding: 100px 32px;
  text-align: center;
}

.band-warning {
  background: linear-gradient(180deg, var(--ink) 0%, #18090a 100%);
  border-top: 2px solid var(--warning);
  border-bottom: 1px solid var(--gold-faint);
}

.band-warning .eyebrow { color: var(--warning); letter-spacing: 5px; }

.band h2 {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1;
  margin: 0 auto 28px;
  max-width: 880px;
}

.band p {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--paper-dim);
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.65;
}

.band p + p { margin-top: 6px; }

.band-cta { margin-top: 40px; }

/* ========== SYSTEM GRID (4 STEPS) ========== */
.system { padding: 110px 32px; }

.system-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.system-card {
  background: var(--ink-2);
  border: 1px solid var(--gold-faint);
  border-radius: 2px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.system-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.system-num {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.system-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.system-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-dim);
}

@media (max-width: 1080px) { .system-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .system-grid { grid-template-columns: 1fr; } }

/* ========== AUDIENCE SPLIT ========== */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px 32px;
}

.audience-card {
  background: var(--ink-2);
  border: 1px solid var(--gold-faint);
  padding: 50px 40px;
  border-radius: 2px;
}

.audience-card.is-not {
  background: transparent;
  border-color: rgba(193, 74, 74, 0.30);
}

.audience h2 { margin-bottom: 26px; font-size: 28px; }

.audience ul { list-style: none; padding: 0; }

.audience li {
  font-size: 17px;
  color: var(--paper-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.audience li:last-child { border-bottom: 0; }

.audience li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.audience-card.is-not li::before { background: var(--warning); }

@media (max-width: 760px) {
  .audience { grid-template-columns: 1fr; padding: 70px 22px; }
  .audience-card { padding: 36px 26px; }
}

/* ========== AUTHORITY ========== */
.authority { text-align: center; }

.authority-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 50px auto 50px;
  text-align: left;
}

.authority-point {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 22px;
  font-size: 17px;
  color: var(--paper);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .authority-points { grid-template-columns: 1fr; gap: 18px; }
}

/* ========== OFFERS ========== */
.offers {
  padding: 110px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-head { text-align: center; margin-bottom: 60px; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--ink-2);
  border: 1px solid var(--gold-faint);
  border-radius: 2px;
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.offer-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.offer-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-faint), 0 24px 48px rgba(0,0,0,0.4);
}

.offer-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.offer-name {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.offer-desc {
  font-size: 15px;
  color: var(--paper-dim);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.offer-meta {
  font-size: 13px;
  color: var(--paper-faint);
  line-height: 1.55;
  padding: 16px 0;
  border-top: 1px solid var(--gold-faint);
  margin-bottom: 24px;
}

.offer-meta b {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.offer-meta b + span { display: block; margin-bottom: 12px; }

.offer-card .btn { margin-top: auto; }

@media (max-width: 920px) {
  .offers-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ========== LEAD-MAGNET FORM ========== */
.guide {
  padding: 110px 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.guide-card {
  background: var(--ink-2);
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  padding: 60px 40px;
  position: relative;
}

.guide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,168,74,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 2px;
}

.guide-card > * { position: relative; z-index: 1; }

.guide-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 auto 22px;
  max-width: 560px;
}

.guide-card .lede { margin: 0 auto 36px; }

.guide-form { max-width: 460px; margin: 0 auto; }

.guide-form .form-row { margin-bottom: 14px; }

.guide-form input[type="text"],
.guide-form input[type="email"] {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gold-faint);
  color: var(--paper);
  padding: 16px 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease;
}

.guide-form input::placeholder { color: var(--paper-faint); }

.guide-form input:focus { border-color: var(--gold); }

.guide-form button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--paper-faint);
  margin-top: 18px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success.is-on { display: block; }
.guide-form.is-off  { display: none; }

.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 18px;
  line-height: 1.3;
}

.form-success-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  padding: 16px 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 14px;
}

.form-success-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--paper-faint);
  margin-top: 12px;
}

/* ========== FINAL CTA ========== */
.final {
  text-align: center;
  padding: 110px 32px;
  background: linear-gradient(180deg, var(--black) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--gold-line);
}

.final h2 { font-size: clamp(32px, 4.4vw, 56px); margin: 0 auto 36px; max-width: 720px; line-height: 1.1; }

.final-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .final-cta .btn { width: 100%; max-width: 360px; }
}

/* ========== FOOTER ========== */
.foot {
  border-top: 1px solid var(--gold-line);
  padding: 38px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--paper-faint);
}

.foot a {
  color: var(--paper-dim);
  text-decoration: none;
  margin: 0 14px;
  transition: color 0.2s ease;
}

.foot a:hover { color: var(--gold-bright); }

.foot-right { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .foot { flex-direction: column; text-align: center; }
  .foot-right { justify-content: center; }
  .foot a { margin: 6px 8px; }
}

/* ========== ABOUT / WORK PAGE BLOCKS ========== */
.page-hero {
  padding: 90px 32px 70px;
  text-align: center;
  border-bottom: 1px solid var(--gold-faint);
}

.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  font-weight: 900;
  margin: 0 auto 18px;
  max-width: 880px;
}

.page-hero .lede { margin: 0 auto; }

.story-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
}

.story-block + .story-block { padding-top: 0; }

.story-block h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.story-block .lede { margin-bottom: 18px; }

.story-block p {
  font-size: 17px;
  color: var(--paper-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ========== CONTACT ========== */
.contact-block {
  max-width: 620px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}

.contact-block h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 900;
}

.contact-block .lede { margin: 0 auto 44px; }

.contact-info {
  margin-top: 40px;
  font-size: 16px;
  color: var(--paper-dim);
  line-height: 1.8;
}

.contact-info a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-faint);
}

.contact-info a:hover { border-bottom-color: var(--gold); }

/* ========== WORK PAGE OFFER DETAIL ========== */
.work-offer {
  background: var(--ink-2);
  border: 1px solid var(--gold-faint);
  padding: 50px 40px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.work-offer h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 700;
}

.work-offer .role-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  margin: 22px 0 26px;
}

.work-offer .role-row .label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.work-offer .role-row .value {
  font-size: 15px;
  color: var(--paper);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .work-offer { padding: 36px 26px; }
  .work-offer .role-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ========== UTILITY ========== */
.center-text { text-align: center; }
.mt-md { margin-top: 22px; }
.mt-lg { margin-top: 44px; }
.mt-xl { margin-top: 68px; }

/* small-screen padding adjustments */
@media (max-width: 600px) {
  .section, .system, .offers, .audience, .band, .final, .guide { padding-left: 22px; padding-right: 22px; }
  .nav { padding: 16px 22px; }
}
