:root {
  --ink: #263535;
  --ink-strong: #182627;
  --orange: #f49b21;
  --orange-deep: #d97b00;
  --cream: #f8f7f3;
  --sand: #efece5;
  --line: #dfe3df;
  --body: #4d5c5b;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 32px rgba(24, 38, 39, .1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; }
.topline { padding: .55rem 1.25rem; background: var(--ink-strong); color: #f4f3ec; font-size: .82rem; }
.topline__inside { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topline a { color: #fff; text-decoration: none; font-weight: 700; }
.nav { position: sticky; top: 0; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.nav__inside { min-height: 80px; max-width: 1120px; margin: 0 auto; padding: .65rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; min-width: 170px; }
.brand img { width: 145px; height: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 1.4rem; }
.nav__links a { color: var(--ink); font-size: .88rem; font-weight: 750; letter-spacing: .025em; text-decoration: none; text-transform: uppercase; }
.nav__links a:hover { color: var(--orange-deep); }
.button { display: inline-block; border: 0; border-radius: 4px; padding: .85rem 1.25rem; background: var(--orange); color: var(--ink-strong); font: 750 .9rem/1 Arial, Helvetica, sans-serif; letter-spacing: .025em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.button:hover { background: #ffae3b; transform: translateY(-1px); }
.button--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.75); }
.button--outline:hover { background: rgba(255,255,255,.1); }
.container { max-width: 1120px; padding: 0 1.25rem; margin: 0 auto; }
.hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(125deg, rgba(24,38,39,.98), rgba(38,53,53,.89) 68%, rgba(217,123,0,.9)); }
.hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; top: -250px; border-radius: 50%; border: 80px solid rgba(244,155,33,.13); }
.hero__inside { position: relative; z-index: 1; max-width: 1120px; min-height: 490px; padding: 6rem 1.25rem 5rem; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.eyebrow { display: block; margin-bottom: .9rem; color: var(--orange); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; color: #fff; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.4rem, 5vw, 4.65rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { max-width: 600px; margin: 1.4rem 0 2rem; color: rgba(255,255,255,.86); font-size: 1.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.trustbar { background: var(--sand); border-bottom: 1px solid #dedad0; }
.trustbar__inside { max-width: 1120px; padding: 1rem 1.25rem; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trustbar__item { display: flex; align-items: center; justify-content: center; gap: .55rem; font-size: .83rem; font-weight: 750; text-align: center; color: var(--ink); }
.trustbar__mark { color: var(--orange-deep); font-size: 1.1rem; }
.section { padding: 5.25rem 0; }
.section--sand { background: var(--cream); }
.section--ink { background: var(--ink); color: #fff; }
.section__heading { max-width: 720px; margin-bottom: 2.5rem; }
.section__heading h2 { max-width: 690px; margin: 0; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 3.7vw, 3rem); line-height: 1.18; letter-spacing: -.025em; }
.section__heading p { color: var(--body); margin: 1rem 0 0; }
.section--ink .section__heading h2 { color: #fff; }
.section--ink .section__heading p { color: rgba(255,255,255,.78); }
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 16px rgba(24,38,39,.04); }
.card__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1.1rem; background: #fff3df; color: var(--orange-deep); border-radius: 50%; font-size: 1.25rem; font-weight: 800; }
.card h3 { margin: 0 0 .65rem; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: 1.3rem; }
.card p { margin: 0; color: var(--body); font-size: .94rem; }
.split { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 5rem; }
.split__art { position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(145deg, var(--orange) 0 38%, #f5e7d0 38% 100%); box-shadow: var(--shadow); }
.split__art::before { content: ""; position: absolute; left: 15%; top: 20%; width: 70%; height: 58%; border: 14px solid var(--ink); border-radius: 6px; transform: rotate(-4deg); }
.split__art::after { content: "DH"; position: absolute; left: 50%; top: 50%; color: var(--ink); font: 700 5rem/1 Georgia, serif; transform: translate(-50%, -50%); letter-spacing: -.08em; }
.split__content h2 { margin: 0 0 1rem; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 3.2vw, 2.75rem); line-height: 1.17; }
.split__content p { margin: 0 0 1rem; color: var(--body); }
.list { list-style: none; padding: 0; margin: 1.3rem 0 1.9rem; }
.list li { position: relative; padding: .38rem 0 .38rem 1.55rem; color: var(--body); }
.list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-deep); font-weight: 900; }
.cta { text-align: center; }
.cta h2 { max-width: 740px; margin: 0 auto; color: #fff; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; }
.cta p { max-width: 570px; margin: 1rem auto 1.75rem; color: rgba(255,255,255,.78); }
.page-hero { background: linear-gradient(115deg, var(--ink-strong), var(--ink)); color: #fff; padding: 4.6rem 0; }
.page-hero h1 { max-width: 760px; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.3rem, 4vw, 3.7rem); letter-spacing: -.035em; line-height: 1.1; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.78); margin: 1rem 0 0; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr); gap: 3.2rem; align-items: start; }
.form-card { padding: 2.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 .45rem; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: 1.8rem; }
.form-card > p { margin: 0 0 1.55rem; color: var(--body); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; margin-bottom: .35rem; color: var(--ink); font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: .82rem .88rem; color: var(--ink); border: 1px solid #cdd3ce; border-radius: 5px; background: #fff; font: .95rem/1.3 Arial, Helvetica, sans-serif; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(244,155,33,.2); border-color: var(--orange-deep); }
.check-panel { margin: 1.5rem 0; padding: 1.2rem; border: 1px solid #e3d4b9; border-radius: 6px; background: #fffbf3; }
.check-panel h3 { margin: 0 0 .75rem; color: var(--ink-strong); font-size: .95rem; }
.check-row { display: flex; align-items: flex-start; gap: .7rem; margin-top: .75rem; color: #465352; font-size: .85rem; line-height: 1.5; }
.check-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: .12rem; accent-color: var(--orange-deep); }
.disclosure { margin: .85rem 0 0; color: #64706e; font-size: .77rem; line-height: 1.55; }
.contact-panel { padding: 1.8rem; border-radius: var(--radius); background: var(--ink); color: #fff; }
.contact-panel h3 { margin: 0 0 1.2rem; color: var(--orange); font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; }
.contact-panel dl { margin: 0; }
.contact-panel dt { margin-top: 1.05rem; color: rgba(255,255,255,.58); font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-panel dd { margin: .15rem 0 0; color: #fff; font-size: .95rem; }
.contact-panel dd a { color: #fff; }
.sms-reference { margin-top: 1.4rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.sms-reference h3 { margin: 0 0 .8rem; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: 1.15rem; }
.sms-reference p { margin: .45rem 0; color: var(--body); font-size: .87rem; }
.sms-reference strong { color: var(--ink); }
.legal { max-width: 830px; }
.legal h2 { margin: 2.5rem 0 .65rem; color: var(--ink-strong); font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; }
.legal h3 { margin: 1.4rem 0 .55rem; color: var(--ink); font-size: 1rem; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 1.3rem; }
.legal-panel { margin: 1.5rem 0; padding: 1.5rem; border-left: 4px solid var(--orange); background: var(--cream); }
.legal-panel p { margin: .5rem 0; font-size: .93rem; }
.footer { padding: 3.8rem 0 1.3rem; color: rgba(255,255,255,.76); background: #142021; }
.footer__grid { display: grid; grid-template-columns: 1.65fr .7fr .95fr; gap: 2.5rem; padding-bottom: 2.7rem; }
.footer__brand img { width: 155px; padding: .35rem; background: #fff; border-radius: 4px; }
.footer h3 { margin: 0 0 .85rem; color: #fff; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,.7); font-size: .88rem; text-decoration: none; }
.footer a { display: block; margin: .35rem 0; }
.footer a:hover { color: var(--orange); }
.footer__bottom { padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .78rem; }
@media (max-width: 800px) {
  .topline__inside { justify-content: center; flex-wrap: wrap; }
  .nav__inside { min-height: 68px; }
  .nav__links { display: none; }
  .trustbar__inside { grid-template-columns: repeat(2, 1fr); }
  .grid--2, .grid--3, .split, .form-layout, .footer__grid { grid-template-columns: 1fr; }
  .split { gap: 2.5rem; }
  .hero__inside { min-height: 450px; padding-top: 4rem; padding-bottom: 4rem; }
  .section { padding: 3.8rem 0; }
  .form-card { padding: 1.5rem; }
}
