:root {
  --ink: #0a1720;
  --ink-2: #122834;
  --orange: #f26322;
  --orange-dark: #d9480f;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --mist: #dfe8eb;
  --slate: #5d6b72;
  --white: #ffffff;
  --line: rgba(10, 23, 32, 0.13);
  --shadow: 0 24px 70px rgba(4, 16, 24, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--orange); border-radius: 9px; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--ink); }
.section-heading { max-width: 750px; margin-bottom: 42px; }
.section-heading h2, .display-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-heading p { max-width: 660px; margin: 18px 0 0; color: var(--slate); font-size: 1.06rem; }
.section-dark .section-heading p { color: #b7c6cc; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 23, 32, .94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 16px; color: var(--white); text-decoration: none; }
.brand img { width: 92px; height: 92px; object-fit: contain; border-radius: 50%; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.28rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 7px; color: #acbbc1; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.btn) { color: #dbe3e6; font-size: .96rem; font-weight: 720; text-decoration: none; }
.site-nav > a:not(.btn):hover { color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; transition: .2s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.site-header .btn { min-height: 52px; padding-inline: 23px; font-size: .94rem; }
.btn:hover { transform: translateY(-2px); }
.btn-orange { color: var(--ink); background: var(--orange); border-color: var(--orange); }
.btn-orange:hover { background: #ff7b3c; border-color: #ff7b3c; }
.btn-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn-outline { color: var(--ink); background: transparent; border-color: rgba(10,23,32,.25); }
.btn-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.34); }
.text-link { color: var(--orange-dark); font-weight: 820; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,15,22,.97) 0%, rgba(5,15,22,.78) 47%, rgba(5,15,22,.28) 76%), url("hero-bg.png") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(242,99,34,.45);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(242,99,34,.05), 0 0 0 160px rgba(242,99,34,.035);
}
.hero-content { position: relative; z-index: 1; max-width: 790px; padding: 112px 0 80px; }
.hero .eyebrow { color: #ff905a; }
.hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.25rem, 7.2vw, 6.8rem); line-height: .88; letter-spacing: -.058em; }
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 650px; margin: 26px 0 0; color: #d2dde1; font-size: clamp(1.04rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 42px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.17); }
.trust-item { display: flex; align-items: center; gap: 9px; color: #dce4e7; font-size: .86rem; font-weight: 700; }
.trust-item::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; color: var(--ink); background: var(--orange); border-radius: 50%; font-weight: 900; }

.intro-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 70px; align-items: start; }
.intro-statement { position: sticky; top: 120px; }
.intro-statement p { margin: 22px 0 0; color: var(--slate); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--orange-dark); font-family: Georgia, serif; font-size: 1.9rem; font-style: italic; }
.service-row h3 { margin: 0; font-size: 1.3rem; }
.service-row p { margin: 7px 0 0; color: var(--slate); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.process-step { min-height: 250px; padding: 28px; background: var(--ink); }
.process-step span { display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--ink); background: var(--orange); border-radius: 50%; font-family: Georgia, serif; font-size: 1.2rem; }
.process-step h3 { margin: 58px 0 10px; font-size: 1.1rem; }
.process-step p { margin: 0; color: #aebec4; font-size: .92rem; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; min-height: 390px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(10,23,32,.06); }
.article-card.featured { grid-column: span 2; color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.article-card .tag { width: fit-content; padding: 6px 10px; color: var(--orange-dark); background: #fff0e8; border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-card.featured .tag { color: #ff9a69; background: rgba(242,99,34,.13); }
.article-card time { margin-top: 22px; color: var(--slate); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.article-card.featured time { color: #9fb0b8; }
.article-card h3 { margin: 14px 0 12px; font-family: Georgia, serif; font-size: clamp(1.45rem, 2.5vw, 2.25rem); line-height: 1.08; letter-spacing: -.025em; }
.article-card p { margin: 0; color: var(--slate); font-size: .94rem; }
.article-card.featured p { color: #b8c6cb; }
.article-card a { margin-top: auto; padding-top: 28px; color: var(--orange-dark); font-weight: 850; text-decoration: none; }
.article-card.featured a { color: #ff8c55; }
.article-card a::after { content: " →"; }
.archive-card { min-height: 320px; }

.proof-band { padding: 32px 0; color: var(--white); background: var(--orange-dark); }
.proof-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.proof-band p { max-width: 720px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.45rem, 3vw, 2.4rem); line-height: 1.12; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 62px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy p { color: #b9c8cd; }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details a { width: fit-content; color: var(--white); font-size: 1.04rem; font-weight: 800; text-decoration: none; }
.claim-form { padding: 32px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: .77rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #f7f5ef; border: 1px solid #d7d7d2; border-radius: 10px; outline: none; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,99,34,.14); }
.form-note { color: var(--slate); font-size: .77rem; }

.partner { padding: 38px 0; background: #eef1ef; border-top: 1px solid var(--line); }
.partner-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.partner-copy { max-width: 650px; }
.partner-copy span { color: var(--slate); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.partner-copy h2 { margin: 6px 0 7px; font-family: Georgia, serif; font-size: 1.65rem; }
.partner-copy p { margin: 0; color: var(--slate); font-size: .9rem; }
.partner img { width: 190px; height: 127px; object-fit: contain; border-radius: 20px; }

.site-footer { padding: 56px 0 30px; color: #adc0c7; background: #061017; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 48px; }
.footer-brand { max-width: 440px; }
.footer-brand strong { display: block; color: var(--white); font-family: Georgia, serif; font-size: 1.55rem; }
.footer-brand p { margin: 14px 0 0; }
.footer-col strong { color: var(--white); }
.footer-col a { display: block; width: fit-content; margin-top: 10px; color: #adc0c7; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.page-hero { padding: 102px 0 72px; color: var(--white); background: linear-gradient(135deg, var(--ink) 0%, #173542 100%); }
.page-hero h1 { max-width: 880px; }
.page-hero p { max-width: 700px; margin: 22px 0 0; color: #bccbd0; font-size: 1.1rem; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.filter-button { padding: 9px 14px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 800; cursor: pointer; }
.filter-button.active { color: var(--white); background: var(--ink); border-color: var(--ink); }

.article-hero { padding: 84px 0 60px; color: var(--white); background: var(--ink); }
.article-hero .container { max-width: 900px; }
.article-hero h1 { max-width: 850px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.045em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 25px; color: #a9bbc2; font-size: .83rem; font-weight: 700; }
.article-body { width: min(calc(100% - 40px), 780px); margin: 0 auto; padding: 68px 0 90px; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; line-height: 1.78; }
.article-body h2 { margin: 52px 0 16px; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.1; letter-spacing: -.02em; }
.article-body h3 { margin: 34px 0 10px; font-size: 1.3rem; line-height: 1.25; }
.article-body p, .article-body li { color: #263942; }
.article-body a { color: var(--orange-dark); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 24px; }
.callout { margin: 34px 0; padding: 24px 26px; background: var(--cream); border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; }
.callout strong { color: var(--ink); }
.checklist { list-style: none; padding: 0 !important; }
.checklist li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--orange-dark); font-family: sans-serif; font-weight: 900; }
.source-list { margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); font-family: Inter, sans-serif; font-size: .85rem; }
.article-cta { margin-top: 50px; padding: 32px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.article-cta h2 { margin: 0 0 10px; color: var(--white); }
.article-cta p { color: #b9c7cc; }

.mobile-call { display: none; }

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 110px 0 auto; display: none; padding: 24px 20px 30px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 22px 40px rgba(0,0,0,.28); }
  .site-nav.open { display: grid; gap: 5px; }
  .site-nav > a { padding: 13px 2px; }
  .site-nav .btn { margin-top: 8px; }
  .hero { min-height: 670px; }
  .intro-grid, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .intro-statement, .contact-copy { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  html { scroll-padding-top: 78px; }
  .section { padding: 70px 0; }
  .brand-copy small { display: none; }
  .brand img { width: 64px; height: 64px; }
  .brand-copy strong { font-size: 1rem; }
  .nav-shell { min-height: 80px; }
  .site-nav { inset: 80px 0 auto; }
  .hero { min-height: 700px; align-items: center; }
  .hero::before { background: linear-gradient(180deg, rgba(5,15,22,.65) 0%, rgba(5,15,22,.91) 48%, rgba(5,15,22,.99) 100%), url("hero-bg.png") 60% center/cover no-repeat; }
  .hero-content { padding: 88px 0 68px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 12px; }
  .service-row { grid-template-columns: 52px 1fr; gap: 14px; }
  .process-grid, .article-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: auto; }
  .process-step { min-height: 220px; }
  .proof-band .container, .partner-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .proof-band .btn { width: 100%; }
  .partner img { order: -1; width: 160px; height: 107px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .claim-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .article-body { width: min(calc(100% - 30px), 780px); font-size: 1.04rem; }
  .article-hero { padding: 64px 0 48px; }
  .mobile-call { position: fixed; right: 15px; bottom: 15px; z-index: 900; display: inline-flex; min-height: 48px; padding: 12px 18px; color: var(--ink); background: var(--orange); border-radius: 999px; box-shadow: 0 14px 30px rgba(0,0,0,.25); font-size: .83rem; font-weight: 900; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
