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

:root {
  --ink:         #1C1C1E;
  --ink-soft:    #4A4A4F;
  --ink-muted:   #8E8E93;
  --rule:        #D1D1D6;
  --paper:       #FAFAF8;
  --white:       #FFFFFF;
  --accent:      #1B4332;
  --accent-mid:  #2D6A4F;
  --accent-pale: #EAF2ED;
  --gold:        #B5924A;
  --gold-pale:   #FBF5EB;
  --warm-grey:   #F2F0EB;
  --sage-light:  #F0F4F1;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }

/* Services dropdown (details/summary — touch-friendly, no JS required) */
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: '▾';
  font-size: 0.65rem;
  color: var(--ink-muted);
  transition: transform 0.2s;
}
.nav-dropdown[open] summary::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 220px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 3px;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu a:hover { background: var(--sage-light); color: var(--accent); }
.dropdown-menu a.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--accent);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #152e24; }

/* ── HERO (homepage) ── */
.hero {
  background: var(--accent);
  padding: 5.5rem 2.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 680px;
  margin: 0 auto 1.4rem;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--white);
  border: none;
  transition: background 0.2s;
}
.hero-btn:hover { background: #a07d3a; }

/* ── PAGE HEADER (inner pages — slimmer than the homepage hero) ── */
.page-header {
  background: var(--accent);
  padding: 3.2rem 2.5rem 2.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
  pointer-events: none;
}
.page-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  position: relative;
}
.page-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.7rem;
  position: relative;
}
.page-header-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
  position: relative;
}
.breadcrumb:hover { color: rgba(255,255,255,0.7); }

/* ── FREE BANNER ── */
.free-banner {
  background: var(--gold);
  text-align: center;
  padding: 1rem 2rem;
}
.free-banner p {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0;
}
.free-banner strong { font-weight: 700; }

/* ── SHARED ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 1.2rem;
}
.section-rule {
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}
p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.78; }
p:last-child { margin-bottom: 0; }

.container      { max-width: 780px;  margin: 0 auto; }
.container-wide { max-width: 1020px; margin: 0 auto; }

/* ── HOME: SERVICE TEASER CARDS ── */
.cards-section {
  padding: 4.5rem 2.5rem;
  background: var(--paper);
}
.cards-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 860px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--accent-mid); transform: translateY(-2px); }
.service-card-pill {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
}
.service-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.3rem;
  flex: 1;
}
.service-card-price {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.8rem;
}
.service-card-price strong { color: var(--ink); font-weight: 700; }
.service-card-link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-mid);
}

/* ── HOME: TRUST STRIP ── */
.trust-strip {
  background: var(--warm-grey);
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.trust-strip-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 760px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.trust-about { display: flex; gap: 1.3rem; align-items: center; }
.trust-about img {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.trust-about-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.trust-about-line {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.trust-link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-mid);
  text-decoration: none;
}
.trust-faq {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
}
.trust-faq-q {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.trust-faq-a {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.trust-faq-a:last-child { margin-bottom: 0; }

/* ── SERVICE BLOCKS (resolutions / incorporation pages) ── */
.service-block {
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.service-block.res-bg  { background: var(--paper); }
.service-block.inc-bg  { background: var(--sage-light); }

.service-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 760px) {
  .service-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.service-label-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.pill-green { background: var(--accent);     color: var(--white); }
.pill-gold  { background: var(--gold);       color: var(--white); }

.service-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.service-tagline {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.service-rule { width: 28px; height: 2px; background: var(--gold); margin-bottom: 1.4rem; }

/* Steps */
.steps-list { list-style: none; margin-top: 0; }
.steps-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.steps-list li:last-child { margin-bottom: 0; }
.step-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-pale);
  min-width: 28px;
  padding-top: 1px;
  line-height: 1;
}
.step-num.gold-num { color: #E8D5B0; }
.step-content-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.step-content-body {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* Included / not-included lists */
.included-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}
.check-list { list-style: none; }
.check-list li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.45rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent-mid);
  font-weight: 700;
  font-size: 0.78rem;
}
.exclusion-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-style: italic;
  padding-top: 0.8rem;
  border-top: 1px solid var(--rule);
}
.not-included-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
.x-list { list-style: none; }
.x-list li {
  font-size: 0.86rem;
  color: var(--ink-muted);
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.45rem;
  line-height: 1.55;
}
.x-list li::before {
  content: '\2715';
  position: absolute; left: 0;
  color: #B0433E;
  font-weight: 700;
  font-size: 0.7rem;
  top: 0.2rem;
}

/* ── PRICING STRIP ── */
.pricing-strip-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.price-pill {
  background: var(--accent);
  border-radius: 3px;
  padding: 1.2rem 1.6rem;
  min-width: 160px;
}
.price-pill.gold-pill { background: var(--gold); }
.price-pill-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-pill-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.price-pill-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.vol-note {
  background: var(--accent-pale);
  border-left: 3px solid var(--accent-mid);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-top: 0.8rem;
}
.vol-note p {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}

/* ── EMBEDDED FAQ CALLOUT (on service pages) ── */
.faq-callout {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.faq-callout-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1.6rem 1.9rem;
  margin-top: 3rem;
}
.faq-callout-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.faq-callout-q {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.faq-callout-a {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.faq-callout-link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-mid);
  text-decoration: none;
}

/* ── FAQ (full page) ── */
.faq-section {
  padding: 4rem 2.5rem;
  background: var(--paper);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-answer {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.78;
  max-width: 700px;
}

/* ── ABOUT ── */
.about-section {
  padding: 4.5rem 2.5rem;
  background: var(--warm-grey);
}
.about-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 600px) {
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.about-img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  display: block;
  object-fit: cover;
}
.about-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.about-closer {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  font-style: italic;
  color: var(--ink-muted);
}

/* ── CUSTOM WORK ── */
.custom-section {
  padding: 4.5rem 2.5rem;
}
.custom-inner {
  max-width: 900px;
  margin: 0 auto;
}
.custom-examples {
  list-style: none;
  margin: 1.6rem 0 2.2rem;
}
.custom-examples li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.custom-examples li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── FINAL CTA (bottom of every inner page) ── */
.contact-section {
  background: var(--accent);
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
  pointer-events: none;
}
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--white); }
.contact-section p { color: rgba(255,255,255,0.65); position: relative; }
.contact-section .section-rule { margin: 0 auto 1.8rem; position: relative; }
.contact-email {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,146,74,0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s;
  position: relative;
}
.contact-email:hover { border-color: var(--gold); }
.contact-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #111110;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 2.2rem 2rem;
  font-size: 0.76rem;
  line-height: 2;
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.65); }
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-top: 0.6rem;
  transition: background 0.2s;
}
.footer-linkedin:hover { background: #0A66C2; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 1.2rem; }
  .nav-links { gap: 0.9rem; }
  .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
  .page-header { padding: 2.6rem 1.2rem 2.2rem; }
  .service-block { padding: 3rem 1.2rem; }
  .cards-section { padding: 3rem 1.2rem; }
  .trust-strip { padding: 3rem 1.2rem; }
  .about-section { padding: 3rem 1.2rem; }
  .custom-section { padding: 3rem 1.2rem; }
  .contact-section { padding: 3.5rem 1.2rem; }
  .faq-section { padding: 3rem 1.2rem; }
}

/* ── KEYBOARD FOCUS ── */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.faq-item summary:focus-visible,
.nav-dropdown summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero-btn:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.service-card:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
