/* =========================================================
   Arc Financial Advisors — Global Stylesheet
   Brand: navy primary, orange accent (from "arc." wordmark)
   ========================================================= */

:root {
  --navy: #1f3144;
  --navy-deep: #142231;
  --navy-soft: #2e4660;
  --orange: #ee7e3a;
  --orange-dark: #d96a26;
  --cream: #f7f3ec;
  --paper: #ffffff;
  --ink: #1a2330;
  --ink-soft: #4a5666;
  --line: #e3e1dc;
  --shadow: 0 18px 40px -22px rgba(20, 34, 49, 0.35);
  --radius: 4px;
  --max: 1240px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.45rem; line-height: 1.25; }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--orange); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1em;
  display: inline-block;
}

.lede {
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 720px;
  line-height: 1.55;
}

/* ---------- Logo ---------- */
.logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.logo .dot { color: var(--orange); }
.site-footer .logo { font-size: 2.4rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange);
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .9rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--orange) !important; color: #fff !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--orange); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff;
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -150px; top: -150px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,126,58,.18), transparent 65%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 880px; }
.hero h1 .accent { color: var(--orange); }
.hero p.lede {
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin-top: 22px;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero variant for inner pages */
.hero-sub {
  padding: 90px 0 70px;
}
.hero-sub h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
section.cream { background: var(--cream); }
section.navy { background: var(--navy); color: #fff; }
section.navy h2, section.navy h3 { color: #fff; }
section.navy p { color: rgba(255,255,255,.8); }

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 50px;
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 32px;
  border-radius: var(--radius);
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.service-card .icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { flex: 1; }
.service-card .link {
  color: var(--navy);
  font-weight: 500;
  font-size: .92rem;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .link::after { content: "→"; transition: transform .2s; }
.service-card:hover .link { color: var(--orange); }
.service-card:hover .link::after { transform: translateX(4px); }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

.feature-art {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-art::before, .feature-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.feature-art::before {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(238,126,58,.25), transparent 65%);
  right: -60px; top: -80px;
}
.feature-art::after {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  left: -40px; bottom: -40px;
}
.feature-art .badge {
  position: absolute;
  bottom: 28px; left: 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.feature-art .badge .arc-mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 4px;
}
.feature-art .badge .dot { color: var(--orange); }

/* ---------- Bullet list ---------- */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tick-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.tick-list li:last-child { border-bottom: none; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 18px; height: 2px;
  background: var(--orange);
}

/* ---------- Pricing / Tier cards ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.tier.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tier.featured h3 { color: #fff; }
.tier.featured p, .tier.featured .tier-price small { color: rgba(255,255,255,.75); }
.tier-name {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 12px;
}
.tier-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.1;
}
.tier.featured .tier-price { color: var(--orange); }
.tier-price small { font-size: .85rem; color: var(--ink-soft); font-family: var(--sans); }
.tier-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  font-size: .94rem;
  flex: 1;
}
.tier.featured .tier-list { border-color: rgba(255,255,255,.18); }
.tier-list li {
  padding: 8px 0;
  color: inherit;
  position: relative;
  padding-left: 22px;
}
.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--orange);
  font-weight: 700;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; max-width: 760px; margin: 0 auto 18px; }
.cta-strip p { color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer h5 {
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0 0 18px;
  font-family: var(--sans);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Forms ---------- */
.form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--orange);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .form-field { margin-bottom: 16px; }

/* ---------- Misc utilities ---------- */
.divider {
  height: 1px;
  background: var(--line);
  margin: 50px 0;
}
.text-center { text-align: center; }

/* ---------- Breadcrumb / page intro ---------- */
.page-intro {
  background: var(--cream);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-intro .eyebrow { color: var(--orange); }
.page-intro h1 { max-width: 880px; }

/* ---------- Mobile nav ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero { padding: 80px 0 90px; }
  section { padding: 60px 0; }
}
