/* ════════════════════════════════════════════════════════════
   THE FECUND BRANDS — shared stylesheet for content pages
   (About, Contact, Privacy, FAQ, Journal & articles)
   Mirrors the design tokens & components from index.html so the
   new pages read as native. Existing pages keep their own inline CSS.
════════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────── */
:root {
  --ink:        #0A0A0A;
  --ivory:      #FFFFFF;
  --ivory-dim:  #B9B9B9;
  --gold:       #C4A35A;
  --gold-light: #DFC07A;
  --burg:       #7A1F2E;
  --surface:    #151515;
  --border:     rgba(196,163,90,0.18);
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ── UTILITIES ────────────────────────────────── */
.serif      { font-family: 'Cormorant Garamond', serif; }
.container  { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.eyebrow    {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section    { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.stitch {
  width: 100%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 11px);
  opacity: 0.35;
}

/* ── NAV ──────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Content pages have no full-bleed hero, so the bar is solid by default */
body.subpage #nav,
#nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; max-width: 1140px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 12px;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(242,237,228,0.65); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.current { color: var(--ivory); }
.nav-links a.current { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 10px 22px; border-radius: 2px;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: background 0.2s;
  position: relative; overflow: hidden;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; cursor: pointer;
}
.nav-burger span {
  display: block; height: 1px; background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 18px 24px;
  font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(242,237,228,0.75);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.cta { color: var(--gold); font-weight: 600; }
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── PAGE HERO (content-page header band) ─────── */
.page-hero {
  padding: 168px 0 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 60% at 70% 10%, rgba(196,163,90,0.08), transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(122,31,46,0.08), transparent 60%),
    var(--ink);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.01em;
  max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero .lead {
  margin-top: 22px; font-size: 1.08rem; line-height: 1.7;
  color: var(--ivory-dim); max-width: 560px;
}
.crumbs {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,237,228,0.4); margin-bottom: 22px;
}
.crumbs a { color: rgba(242,237,228,0.55); }
.crumbs a:hover { color: var(--gold); }

/* ── PROSE (article / long-form copy) ─────────── */
.prose { max-width: 760px; }
.prose p, .prose li {
  font-size: 1.02rem; line-height: 1.85; color: #D9D6CF;
  margin-bottom: 20px;
}
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 500;
  margin: 46px 0 16px; line-height: 1.15;
}
.prose h3 {
  font-size: 1.12rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ivory); margin: 32px 0 12px;
}
.prose ul, .prose ol { margin: 0 0 20px 1.1rem; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--ivory); font-weight: 600; }
.prose a { color: var(--gold); border-bottom: 1px solid var(--border); }
.prose a:hover { border-color: var(--gold); }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px; margin: 28px 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.3rem; color: var(--ivory);
}
.prose img { border-radius: 4px; border: 1px solid var(--border); margin: 28px 0; }
.prose figure { margin: 28px 0; }
.prose figcaption {
  font-size: 0.8rem; color: rgba(242,237,228,0.45);
  text-align: center; margin-top: 10px; letter-spacing: 0.02em;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block; padding: 15px 32px; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: var(--ink); position: relative; overflow: hidden; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(242,237,228,0.28); color: var(--ivory); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-gold:hover::after { left: 130%; }

/* ── CARDS (journal, faq, contact, value) ─────── */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.jcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.jcard:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.jcard .jcard-img { aspect-ratio: 16 / 10; overflow: hidden; }
.jcard .jcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.jcard:hover .jcard-img img { transform: scale(1.05); }
.jcard-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.jcard-tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.jcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; line-height: 1.2; margin-bottom: 12px; }
.jcard p { font-size: 0.92rem; line-height: 1.65; color: var(--ivory-dim); margin-bottom: 18px; flex: 1; }
.jcard .read { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ── FAQ ──────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; color: var(--ivory);
  padding: 26px 44px 26px 0; position: relative;
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em;
}
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 0 26px; color: var(--ivory-dim); line-height: 1.75; font-size: 0.98rem; }
.faq-a-inner a { color: var(--gold); }

/* ── CONTACT ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-block { margin-bottom: 30px; }
.info-block h3 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.info-block p, .info-block a { font-size: 1rem; line-height: 1.7; color: #D9D6CF; display: block; }
.info-block a:hover { color: var(--gold); }
.map-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ── VALUE / FEATURE ROWS ─────────────────────── */
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 30px 28px; }
.feature .fnum { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.6rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; line-height: 1.65; color: var(--ivory-dim); }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band { text-align: center; padding: 88px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 14px; }
.cta-band p { color: var(--ivory-dim); max-width: 480px; margin: 0 auto 30px; line-height: 1.7; }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 14px; }
.footer-brand span { color: var(--gold); }
.footer-col p, .footer-col a { font-size: 0.87rem; color: var(--ivory-dim); line-height: 2; display: block; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(242,237,228,0.3); flex-wrap: wrap; gap: 8px; }
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); color: var(--ivory-dim); transition: all 0.2s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .page-hero { padding: 140px 0 56px; }
  .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-delay: 0s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}
