:root {
  --ink: #101a2a;
  --navy: #0c1728;
  --navy-2: #14263d;
  --paper: #f8f5ef;
  --white: #ffffff;
  --muted: #5f6977;
  --line: #dcd8cf;
  --red: #b91f27;
  --red-dark: #95181f;
  --gold: #c99317;
  --gold-soft: #f3e5bc;
  --green: #2f6c55;
  --shadow: 0 22px 60px rgba(15, 26, 42, 0.12);
  --radius: 22px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.hostcare { --brand: var(--gold); --brand-dark: #a9770d; }
body.financials { --brand: var(--red); --brand-dark: var(--red-dark); }
body.hub { --brand: var(--gold); --brand-dark: #a9770d; }
a { color: inherit; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--navy { color: var(--white); background: var(--navy); }
.section--tint { background: #efeae0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
.section--navy .eyebrow { color: #f2c453; }
h1, h2, h3, h4 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { max-width: 820px; font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { max-width: 820px; font-size: clamp(2.35rem, 4.7vw, 4.3rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
p { margin: 0 0 1.2rem; }
.lead { max-width: 750px; color: #465365; font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.7; }
.section--navy .lead { color: #c4cedb; }
.section-head { display: grid; gap: 16px; margin-bottom: 46px; }
.section-head p:last-child { max-width: 760px; color: var(--muted); }
.section--navy .section-head p:last-child { color: #bdc8d5; }
.accent { color: var(--brand); font-style: italic; }
.small { font-size: 0.88rem; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(248, 245, 239, 0.95);
  border-bottom: 1px solid rgba(16, 26, 42, 0.1);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.brand-name { font-weight: 850; letter-spacing: -0.03em; }
.brand-name span { color: var(--brand); }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: 0.82rem; font-weight: 750; letter-spacing: 0.055em; text-transform: uppercase; }
.site-nav a { text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--brand); }
.nav-cta { padding: 10px 15px; color: var(--white) !important; background: var(--brand); border-radius: 8px; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--brand-dark); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 95px 0 76px;
  background:
    radial-gradient(circle at 88% 22%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 28%),
    linear-gradient(rgba(16,26,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,26,42,.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, 42px 42px, auto;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.72fr); align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy .lead { margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button--primary { color: var(--white); background: var(--brand); }
.button--primary:hover, .button--primary:focus-visible { background: var(--brand-dark); }
.button--secondary { color: var(--ink); background: rgba(255,255,255,.7); border-color: var(--line); }
.button--secondary:hover, .button--secondary:focus-visible { border-color: var(--ink); }
.button--light { color: var(--navy); background: var(--white); }
.text-link { color: var(--brand-dark); font-weight: 800; text-underline-offset: 4px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; color: #4e5a68; font-size: 0.88rem; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { color: var(--green); content: "✓"; font-weight: 900; }
.hero-card {
  position: relative;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card::before {
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: -1;
  content: "";
  border: 1px solid var(--brand);
  border-radius: var(--radius);
}
.hero-card-label { color: #f1c55a; font-size: 0.72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-card h2 { margin: 12px 0 22px; font-size: 2.25rem; }
.deliverable { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.deliverable span { color: #b8c4d1; font-size: .9rem; }
.deliverable strong { text-align: right; font-size: .92rem; }
.brand-switch { margin-top: 18px; color: #5d6877; font-size: .88rem; }
.brand-switch a { color: var(--ink); font-weight: 800; }

.dual-hero h1 { max-width: 980px; }
.dual-hero .lead { max-width: 850px; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.brand-pill { padding: 8px 12px; background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 800; }
.brand-pill.fin { color: var(--red-dark); }
.brand-pill.host { color: #9b6b08; }

.service-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-brand { overflow: hidden; position: relative; padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 36px rgba(15,26,42,.07); }
.service-brand::before { position: absolute; inset: 0 auto 0 0; width: 6px; content: ""; background: var(--red); }
.service-brand.host::before { background: var(--gold); }
.service-brand-badge { display: inline-flex; margin-bottom: 20px; padding: 6px 10px; color: var(--white); background: var(--red); border-radius: 999px; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.service-brand.host .service-brand-badge { color: var(--navy); background: #f1c453; }
.service-brand h2 { font-size: clamp(2.2rem,4vw,3.5rem); }
.service-brand p { color: var(--muted); }
.service-brand .button { margin-top: 12px; }
.service-brand.host .button--primary { color: var(--navy); background: var(--gold); }
.service-brand.host .button--primary:hover { background: #af800f; }

.trust-three { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.trust-point { padding: 30px; color: var(--white); background: #13233a; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); }
.trust-point strong { display: block; margin-bottom: 10px; color: #f2c453; font-family: Georgia, serif; font-size: 1.55rem; }
.trust-point p { margin: 0; color: #bdc8d5; font-size: .92rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-card { display: grid; min-height: 220px; align-content: end; padding: 22px; color: var(--white); background: linear-gradient(145deg,#13233a,#28435f); border-radius: var(--radius-sm); }
.gallery-card:nth-child(2) { background: linear-gradient(145deg,#781820,#bd2a32); }
.gallery-card:nth-child(3) { color: var(--navy); background: linear-gradient(145deg,#e5c46c,#f4e6bc); }
.gallery-card strong { font-family: Georgia,serif; font-size: 1.45rem; }
.gallery-card span { font-size: .85rem; opacity: .84; }

.thanks-panel { display: none; margin-bottom: 24px; padding: 22px; color: #173c2f; background: #e4f2eb; border: 1px solid #9bc7b2; border-radius: 12px; }
.thanks-panel:target { display: block; }
.thanks-panel h3 { margin-bottom: 8px; font-family: inherit; font-size: 1.15rem; letter-spacing: 0; }
.thanks-panel p { margin: 0; }

.policy-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 60px; align-items: start; }
.policy-nav { position: sticky; top: 104px; display: grid; gap: 8px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.policy-nav a { font-size: .88rem; font-weight: 750; text-decoration: none; }
.policy-copy section { margin-bottom: 52px; scroll-margin-top: 110px; }
.policy-copy h2 { margin-bottom: 18px; font-size: clamp(2rem,4vw,3rem); }
.policy-copy h3 { margin: 26px 0 10px; font-family: inherit; font-size: 1.05rem; letter-spacing: 0; }
.policy-copy p, .policy-copy li { color: var(--muted); }

.proof-strip { background: var(--white); border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 132px; padding: 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--brand); font-family: Georgia, serif; font-size: 1.55rem; }
.proof-item span { color: var(--muted); font-size: .88rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.card-number { display: inline-grid; width: 38px; height: 38px; margin-bottom: 22px; place-items: center; color: var(--white); background: var(--brand); border-radius: 50%; font-weight: 800; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card ul, .check-list { margin: 18px 0 0; padding: 0; list-style: none; }
.card li, .check-list li { position: relative; margin: 9px 0; padding-left: 25px; }
.card li::before, .check-list li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }

.fit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.fit-list { display: grid; gap: 14px; }
.fit-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.fit-item span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--navy); border-radius: 10px; font-weight: 850; }
.fit-item h3 { margin-bottom: 5px; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.fit-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; padding: 28px 20px 24px; border-top: 2px solid var(--brand); }
.step::before { counter-increment: steps; content: "0" counter(steps); color: var(--brand); font-weight: 850; letter-spacing: .08em; }
.step h3 { margin: 15px 0 10px; font-family: inherit; font-size: 1.04rem; letter-spacing: 0; }
.step p { color: #bdc8d5; font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.founder-card { padding: 34px; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.founder-initials { display: grid; width: 74px; height: 74px; margin-bottom: 20px; place-items: center; color: var(--navy); background: var(--gold-soft); border-radius: 50%; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 750; }
.founder-card h3 { margin-bottom: 10px; }
.founder-card p { color: #bdc8d5; }
.quote { margin: 0; padding-left: 22px; color: #c9d2dc; border-left: 3px solid var(--brand); font-family: Georgia, serif; font-size: 1.3rem; font-style: italic; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 28px; background: #13233a; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-sm); }
.price-card.featured { outline: 2px solid var(--gold); transform: translateY(-8px); }
.price-label { align-self: flex-start; margin-bottom: 18px; padding: 5px 9px; color: var(--navy); background: #f2c453; border-radius: 999px; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 10px; }
.price { margin: 6px 0 18px; color: #f2c453; font-family: Georgia, serif; font-size: 2.3rem; font-weight: 700; }
.price small { color: #aebccc; font-family: inherit; font-size: .78rem; font-weight: 500; }
.price-card ul { flex-grow: 1; margin: 0 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; margin: 10px 0; padding-left: 24px; color: #cad3de; font-size: .9rem; }
.price-card li::before { position: absolute; left: 0; color: #f2c453; content: "✓"; }
.pricing-note { margin-top: 22px; color: #aebccc; font-size: .83rem; }

.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-list span { padding: 8px 12px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .84rem; font-weight: 700; }
.section--navy .area-list span { background: #13233a; border-color: rgba(255,255,255,.14); }

.faq { display: grid; gap: 11px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 11px; }
.faq summary { position: relative; padding: 20px 54px 20px 22px; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 20px; right: 22px; color: var(--brand); content: "+"; font-size: 1.35rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 780px; padding: 0 22px 20px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-points { display: grid; gap: 16px; margin-top: 26px; }
.contact-point { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-point strong { display: block; }
.contact-point span, .contact-point a { color: #bdc8d5; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 32px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfaf7; border: 1px solid #cfcac0; border-radius: 8px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); outline: 3px solid color-mix(in srgb, var(--brand) 18%, transparent); }
.field textarea { min-height: 132px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .78rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 40px 0; color: #b7c2cf; background: #08111f; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; align-items: start; }
.site-footer .brand { color: var(--white); }
.site-footer p { max-width: 480px; margin-top: 12px; font-size: .84rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links strong { color: var(--white); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { font-size: .84rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }

@media (max-width: 940px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; top: 78px; right: 20px; left: 20px; align-items: stretch; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 8px; }
  .nav-cta { text-align: center; }
  .hero-grid, .fit-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 75px; }
  .hero-card { max-width: 620px; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .process { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .service-showcase, .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .gallery-grid, .trust-three { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero { padding: 62px 0; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .cards, .process { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .field { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
