/* ==========================================================================
   Financial Consultant Landing Page
   Scoped to .fc-landing so it never leaks into the rest of NS Minimal.
   ========================================================================== */

.fc-landing {
  --paper: #f5f1ea;
  --paper-deep: #ebe4d8;
  --ink: #14191c;
  --ink-soft: #4a5257;
  --forest: #1d3b33;
  --forest-deep: #142a24;
  --brass: #a97b2f;
  --brass-light: #c9973f;
  --line: rgba(20, 25, 28, 0.12);
  --line-light: rgba(245, 241, 234, 0.18);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: 28px;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.fc-landing *,
.fc-landing *::before,
.fc-landing *::after { box-sizing: border-box; }

.fc-landing img { max-width: 100%; height: auto; display: block; }

.fc-landing h1,
.fc-landing h2,
.fc-landing h3,
.fc-landing h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.fc-landing p { margin: 0; }

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

.fc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  flex: none;
}

/* ---------- Buttons ---------- */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.fc-btn:hover { transform: translateY(-2px); }
.fc-btn--primary { background: var(--forest); color: var(--paper); }
.fc-btn--primary:hover { background: var(--forest-deep); color: var(--paper); }
.fc-btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.fc-btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.fc-btn--brass { background: var(--brass); color: #fff; }
.fc-btn--brass:hover { background: var(--brass-light); color: #fff; }
.fc-btn--light { background: var(--paper); color: var(--forest-deep); }
.fc-btn--light:hover { background: #fff; color: var(--forest-deep); }
.fc-btn--outline-light { border-color: var(--line-light); color: var(--paper); }
.fc-btn--outline-light:hover { border-color: var(--paper); color: var(--paper); }

/* ---------- Header ---------- */
.fc-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 241, 234, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.fc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.fc-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.fc-brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: grid;
  place-items: center;
  color: var(--brass);
}
.fc-brand__name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.fc-brand__sub {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.fc-nav { display: flex; align-items: center; gap: 32px; }
.fc-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.fc-nav a:hover { color: var(--ink); }
.fc-header .fc-btn { padding: 12px 22px; font-size: 13px; }

/* ---------- Hero ---------- */
.fc-hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}
.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .35;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.fc-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.fc-hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.35rem);
  margin: 24px 0 0;
}
.fc-hero h1 em {
  font-style: italic;
  color: var(--brass);
}
.fc-hero__rule {
  width: 64px;
  height: 2px;
  background: var(--brass);
  margin: 30px 0;
}
.fc-hero__lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
}
.fc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.fc-hero__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Hero side card */
.fc-card-quiet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px;
  box-shadow: 0 24px 60px -32px rgba(20, 25, 28, .35);
}
.fc-card-quiet h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.fc-card-quiet__meta {
  font-size: 13px;
  color: var(--ink-soft);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.fc-checklist { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.fc-checklist li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.fc-checklist svg { flex: none; margin-top: 3px; color: var(--brass); }
.fc-card-quiet .fc-btn { width: 100%; }

/* ---------- Trust strip ---------- */
.fc-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
  padding: 30px 0;
}
.fc-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.fc-stat__num {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  color: var(--forest);
}
.fc-stat__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 9px;
}

/* ---------- Section shell ---------- */
.fc-section { padding: 100px 0; }
.fc-section--dark {
  background: var(--forest);
  color: var(--paper);
}
.fc-section--dark h2,
.fc-section--dark h3 { color: var(--paper); }
.fc-section--dark .fc-eyebrow { color: var(--brass-light); }
.fc-section--tint { background: var(--paper-deep); }

.fc-section__head { max-width: 720px; margin-bottom: 56px; }
.fc-section__head h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin: 20px 0 18px;
}
.fc-section__head p {
  font-size: 18px;
  color: var(--ink-soft);
}
.fc-section--dark .fc-section__head p { color: rgba(245, 241, 234, .72); }

/* ---------- Services ---------- */
.fc-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fc-service {
  background: var(--paper);
  padding: 42px 38px;
  transition: background-color .2s ease;
}
.fc-service:hover { background: #fff; }
.fc-service__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(169, 123, 47, .1);
  color: var(--brass);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.fc-service h3 { font-size: 22px; margin-bottom: 12px; }
.fc-service p { color: var(--ink-soft); font-size: 15.5px; }
.fc-service__tags {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-service__tags li {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- Process ---------- */
.fc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-step { border-top: 1px solid var(--line-light); padding-top: 28px; }
.fc-step__num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .16em;
  color: var(--brass-light);
  margin-bottom: 18px;
}
.fc-step h3 { font-size: 24px; margin-bottom: 12px; }
.fc-step p { color: rgba(245, 241, 234, .72); font-size: 15.5px; }

/* ---------- About ---------- */
.fc-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: start;
}
.fc-about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 22%, rgba(201, 151, 63, .24) 0%, transparent 58%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  color: var(--paper);
  overflow: hidden;
}
.fc-about__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .45;
  pointer-events: none;
}
.fc-portrait {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.fc-portrait__img {
  width: min(268px, 68%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  background: var(--paper-deep);
  box-shadow:
    0 0 0 1px rgba(245, 241, 234, .22),
    0 0 0 9px rgba(201, 151, 63, .16),
    0 26px 54px -22px rgba(0, 0, 0, .55);
}
.fc-portrait figcaption { margin-top: 30px; }
.fc-portrait__name {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
  color: var(--paper);
}
.fc-portrait__role {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .62);
  margin-top: 8px;
}
.fc-portrait__cred {
  display: inline-block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  font-size: 12.5px;
  color: var(--brass-light);
  letter-spacing: .04em;
}
.fc-about h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: 20px 0 22px; }
.fc-about p { color: var(--ink-soft); margin-bottom: 18px; }
.fc-quote {
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.fc-credentials {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
}
.fc-credentials li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.fc-credentials svg { flex: none; margin-top: 3px; color: var(--brass); }

/* ---------- Testimonials ---------- */
.fc-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fc-quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fc-quote-card__mark {
  font-family: var(--display);
  font-size: 46px;
  line-height: .6;
  color: var(--brass);
  opacity: .5;
}
.fc-quote-card p { font-size: 16px; color: var(--ink-soft); flex: 1; }
.fc-quote-card__by {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
}
.fc-quote-card__by strong { display: block; color: var(--ink); font-size: 14px; }
.fc-quote-card__by span { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.fc-faq { max-width: 820px; }
.fc-faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.fc-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
}
.fc-faq summary::-webkit-details-marker { display: none; }
.fc-faq summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 22px;
  font-weight: 400;
  color: var(--brass);
  flex: none;
  transition: transform .2s ease;
}
.fc-faq details[open] summary::after { transform: rotate(45deg); }
.fc-faq details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 68ch;
}

/* ---------- CTA ---------- */
.fc-cta {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.fc-cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  pointer-events: none;
}
.fc-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.fc-cta h2 { color: var(--paper); font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 20px 0 18px; }
.fc-cta p { color: rgba(245, 241, 234, .75); font-size: 18px; max-width: 48ch; }
.fc-contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.fc-contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.fc-contact-lines svg { flex: none; margin-top: 3px; color: var(--brass-light); }
.fc-contact-lines span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,241,234,.55); margin-bottom: 4px; }
.fc-contact-lines a, .fc-contact-lines strong { color: var(--paper); text-decoration: none; font-weight: 500; font-size: 16px; }
.fc-contact-lines a:hover { color: var(--brass-light); }
.fc-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Footer ---------- */
.fc-foot {
  background: var(--ink);
  color: rgba(245, 241, 234, .6);
  padding: 40px 0;
  font-size: 13.5px;
}
.fc-foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.fc-foot a { color: rgba(245, 241, 234, .8); text-decoration: none; }
.fc-foot a:hover { color: var(--brass-light); }
.fc-foot__disclaimer {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 241, 234, .12);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245, 241, 234, .45);
  max-width: 92ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .fc-hero__grid,
  .fc-about,
  .fc-cta__inner { grid-template-columns: 1fr; gap: 46px; }
  .fc-steps,
  .fc-quotes { grid-template-columns: 1fr; gap: 30px; }
  .fc-services { grid-template-columns: 1fr; }
  .fc-about__portrait { aspect-ratio: auto; padding: 36px 24px; }
  .fc-portrait__img { width: min(220px, 56%); }
  .fc-portrait figcaption { margin-top: 24px; }
}

@media (max-width: 780px) {
  .fc-nav { display: none; }
  .fc-header__inner { height: 66px; }
  .fc-section { padding: 72px 0; }
  .fc-hero { padding: 64px 0 60px; }
  .fc-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .fc-credentials { grid-template-columns: 1fr; }
  .fc-hero__actions .fc-btn,
  .fc-cta__actions .fc-btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-landing * { transition: none !important; animation: none !important; }
}
