:root {
  --plum: #865e7d;
  --plum-dark: #5f4059;
  --sage: #7d9d92;
  --sage-dark: #54756a;
  --ink: #2f2a2e;
  --muted: #6f686d;
  --paper: #fffdfc;
  --mist: #f6f2f5;
  --sage-mist: #edf3f0;
  --line: rgba(47, 42, 46, .12);
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(53, 41, 50, .07);
  --shadow-lg: 0 28px 70px rgba(53, 41, 50, .13);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1180px;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--plum-dark);
  color: #fff;
  border-radius: 0 0 12px 12px;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.display, h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.13; }
h1 { font-size: clamp(46px, 7vw, 82px); letter-spacing: -.045em; }
h2 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -.035em; }
h3 { font-size: 25px; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.75; }
.text-muted { color: var(--muted); }

.topbar { background: var(--plum-dark); color: #fff; font-size: 13px; }
.topbar-inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a { opacity: .92; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 252, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(44, 35, 41, .06); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark { width: 48px; height: 48px; border-radius: 14px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: Georgia, serif; font-size: 25px; letter-spacing: -.04em; color: var(--plum-dark); }
.brand-sub { margin-top: 6px; color: var(--sage-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; font-size: 14px; font-weight: 650; color: #4e474c; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--sage); transition: right .2s; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--ink); transition: .2s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--plum); box-shadow: 0 12px 25px rgba(134, 94, 125, .22); }
.btn-primary:hover { background: var(--plum-dark); box-shadow: 0 15px 28px rgba(95, 64, 89, .25); }
.btn-secondary { color: var(--plum-dark); background: #fff; border-color: rgba(134, 94, 125, .25); }
.btn-secondary:hover { border-color: var(--plum); }
.btn-sage { background: var(--sage-dark); color: #fff; }
.btn-sm { min-height: 43px; padding-inline: 18px; }
.btn-arrow::after { content: "→"; font-size: 18px; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 72px 0 100px; }
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -310px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 157, 146, .18), rgba(125, 157, 146, 0) 69%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; margin: 20px 0 24px; }
.hero-copy h1 em { color: var(--plum); font-style: normal; }
.hero-copy .lead { max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: 14px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.check { width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--sage-mist); color: var(--sage-dark); font-weight: 900; }
.hero-visual { position: relative; min-height: 610px; }
.hero-visual > img { width: 100%; min-height: 610px; object-fit: cover; border-radius: 46px; box-shadow: var(--shadow-lg); }
.hero-card {
  position: absolute;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
}
.hero-card strong { display: block; color: var(--plum-dark); font-size: 17px; }
.hero-card small { display: block; color: var(--muted); margin-top: 4px; }
.hero-card-one { left: -35px; top: 64px; }
.hero-card-two { right: -20px; bottom: 52px; }
.hero-note { position: absolute; left: 34px; right: 34px; bottom: -28px; display: flex; gap: 14px; align-items: center; padding: 20px 24px; border-radius: 23px; background: var(--plum-dark); color: #fff; box-shadow: var(--shadow-lg); }
.hero-note-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; background: rgba(255,255,255,.12); border-radius: 14px; font-size: 20px; }
.hero-note p { margin: 0; font-size: 14px; line-height: 1.55; }

.logo-strip { border-block: 1px solid var(--line); background: #fff; }
.logo-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust-item { padding: 28px 24px; text-align: center; background: #fff; }
.trust-item strong { display: block; color: var(--plum-dark); font-size: 19px; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.services { background: var(--mist); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 320px; padding: 34px; border: 1px solid rgba(134,94,125,.1); border-radius: var(--radius-md); background: #fff; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -50px; bottom: -55px; border-radius: 50%; background: var(--sage-mist); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--sage-mist); color: var(--sage-dark); font-size: 24px; }
.service-card:nth-child(2) .service-icon, .service-card:nth-child(5) .service-icon { background: var(--mist); color: var(--plum); }
.service-card h3 { margin: 26px 0 14px; }
.service-card p { color: var(--muted); margin: 0; }
.service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--plum-dark); font-size: 14px; font-weight: 800; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 74px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media-frame { padding: 18px; border: 1px solid var(--line); border-radius: 48px; background: #fff; }
.portrait-placeholder { min-height: 620px; display: grid; place-items: center; border-radius: 31px; background: linear-gradient(145deg, #e9e0e7, #dce6e1); overflow: hidden; }
.portrait-placeholder img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; border-radius: 31px; }
.portrait-fallback { text-align: center; color: var(--plum-dark); }
.portrait-fallback span { display: block; font-family: Georgia, serif; font-size: 92px; line-height: 1; }
.badge-float { position: absolute; right: -24px; bottom: 35px; width: 160px; aspect-ratio: 1; display: grid; place-items: center; padding: 22px; border-radius: 50%; background: var(--sage-dark); color: #fff; text-align: center; box-shadow: var(--shadow-lg); font-weight: 800; line-height: 1.35; }
.content-stack > * + * { margin-top: 24px; }
.value-list { display: grid; gap: 14px; margin-top: 30px; }
.value-item { display: flex; gap: 15px; align-items: flex-start; padding: 18px; border-radius: 17px; background: var(--sage-mist); }
.value-item b { display: block; color: var(--sage-dark); }
.value-item p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.value-dot { width: 33px; height: 33px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--sage-dark); font-weight: 900; }

.quote-section { position: relative; padding: 110px 0; background: var(--plum-dark); color: #fff; overflow: hidden; }
.quote-section::before, .quote-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.quote-section::before { width: 430px; height: 430px; left: -220px; top: -90px; }
.quote-section::after { width: 260px; height: 260px; right: -90px; bottom: -100px; }
.quote { position: relative; z-index: 1; max-width: 970px; margin: auto; text-align: center; }
.quote-mark { font-family: Georgia, serif; color: #bea9b9; font-size: 90px; line-height: .5; }
.quote blockquote { margin: 24px 0; font-family: Georgia, serif; font-size: clamp(30px, 5vw, 48px); line-height: 1.3; }
.quote cite { color: #d7cbcF; font-style: normal; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: process; }
.process-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.process-card::before { counter-increment: process; content: "0" counter(process); display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--mist); color: var(--plum); font-weight: 900; }
.process-card h3 { margin: 24px 0 12px; }
.process-card p { color: var(--muted); margin: 0; }

.region { background: var(--sage-mist); }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.region-map { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.area-tag { padding: 9px 14px; border-radius: 999px; background: #fff; color: var(--sage-dark); font-size: 13px; font-weight: 800; }

.rates-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: start; }
.rate-note { position: sticky; top: 120px; padding: 32px; border-radius: var(--radius-md); background: var(--plum-dark); color: #fff; }
.rate-note h3 { font-size: 30px; }
.rate-note p { color: #e0d5dd; }
.rate-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.rate-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 26px 28px; border-bottom: 1px solid var(--line); align-items: center; }
.rate-row:last-child { border-bottom: 0; }
.rate-row span { color: var(--muted); }
.rate-row strong { color: var(--plum-dark); font-size: 22px; white-space: nowrap; }

.jobs { background: var(--mist); }
.job-card { display: grid; grid-template-columns: .72fr 1.28fr; border-radius: var(--radius-lg); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.job-aside { padding: 40px; background: var(--sage-dark); color: #fff; }
.job-aside h3 { margin-top: 20px; font-size: 34px; }
.job-meta { display: grid; gap: 12px; margin-top: 28px; }
.job-meta span { display: flex; gap: 10px; font-size: 14px; }
.job-body { padding: 44px; }
.job-body details { border-top: 1px solid var(--line); }
.job-body summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; font-weight: 800; }
.job-body summary::-webkit-details-marker { display: none; }
.job-body summary::after { content: "+"; font-size: 24px; color: var(--plum); }
.job-body details[open] summary::after { content: "−"; }
.job-body details div { padding: 0 0 20px; color: var(--muted); }
.job-body ul { margin: 0; padding-left: 20px; }

.contact-section { position: relative; background: var(--plum-dark); color: #fff; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -280px; border-radius: 50%; background: rgba(125,157,146,.16); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-copy .lead { color: #ddcfd9; }
.contact-list { display: grid; gap: 18px; margin-top: 34px; }
.contact-item { display: flex; gap: 14px; }
.contact-icon { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); }
.contact-item small { display: block; color: #cdbdca; }
.contact-item a { font-weight: 750; }
.contact-form { padding: 34px; border-radius: var(--radius-md); background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 800; color: #514950; }
.field input, .field textarea { width: 100%; border: 1px solid rgba(47,42,46,.16); border-radius: 14px; background: #fff; color: var(--ink); outline: none; padding: 13px 15px; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 4px rgba(134,94,125,.1); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--muted); font-size: 12px; }
.consent input { margin-top: 4px; }
.form-status { display: none; margin: 0 0 16px; padding: 12px 14px; border-radius: 12px; font-size: 14px; }
.form-status.show { display: block; }
.form-status.success { background: #e9f4ee; color: #315e49; }
.form-status.error { background: #f9e9e9; color: #8b3535; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { background: #241f23; color: #d6cbd3; }
.footer-main { padding: 64px 0 42px; display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 60px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { max-width: 380px; color: #a99ca5; }
.footer-title { color: #fff; font-size: 14px; font-family: Inter, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; gap: 10px; margin-top: 18px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: #968990; }

.mobile-quick { display: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Legal pages */
.page-hero { padding: 90px 0 64px; background: linear-gradient(135deg, var(--mist), var(--sage-mist)); }
.page-hero h1 { font-size: clamp(42px, 6vw, 68px); }
.page-hero p { max-width: 760px; color: var(--muted); margin-top: 18px; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.legal-nav { position: sticky; top: 120px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.legal-nav a { display: block; padding: 9px 10px; border-radius: 10px; color: var(--muted); font-size: 14px; }
.legal-nav a:hover { background: var(--mist); color: var(--plum-dark); }
.legal-content { max-width: 840px; }
.legal-content section { scroll-margin-top: 120px; padding-bottom: 55px; }
.legal-content h2 { margin-bottom: 22px; font-size: 38px; }
.legal-content h3 { margin: 32px 0 10px; font-family: Inter, sans-serif; font-size: 19px; font-weight: 800; }
.legal-content p, .legal-content li { color: #5f585d; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.info-card { padding: 28px; border-radius: 22px; background: var(--sage-mist); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-grid div { padding: 18px; border-radius: 15px; background: #fff; }
.info-grid small { display: block; color: var(--muted); }
.info-grid strong { display: block; margin-top: 4px; color: var(--plum-dark); }

@media (max-width: 1050px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .hero-grid { gap: 42px; }
  .hero-card-one { left: 10px; }
  .hero-card-two { right: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { gap: 48px; }
  .contact-grid { gap: 44px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255,253,252,.98);
    border-bottom: 1px solid var(--line);
    transition: max-height .35s ease;
  }
  .nav.open { max-height: 520px; padding: 12px 20px 24px; }
  .nav a { padding: 15px 8px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { margin-top: 12px; border: 0; }
  .nav a::after { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 680px; margin: auto; }
  .split, .split.reverse, .region-grid, .rates-wrap, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .rate-note { position: static; }
  .job-card { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: 47px; }
  h2 { font-size: 39px; }
  .brand { min-width: 0; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 8px; }
  .hero { padding-bottom: 80px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { align-items: flex-start; flex-direction: column; width: max-content; margin-inline: auto; }
  .hero-visual { min-height: 450px; margin-top: 14px; }
  .hero-visual > img { min-height: 450px; border-radius: 30px; }
  .hero-card { display: none; }
  .hero-note { left: 14px; right: 14px; bottom: -36px; }
  .logo-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 20px 12px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .split-media-frame { padding: 10px; border-radius: 32px; }
  .portrait-placeholder, .portrait-placeholder img { min-height: 480px; }
  .badge-float { width: 126px; right: -4px; bottom: 22px; font-size: 13px; }
  .quote-section { padding: 82px 0; }
  .rate-row { grid-template-columns: 1fr; gap: 8px; }
  .rate-row strong { font-size: 20px; }
  .job-aside, .job-body, .contact-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-quick { position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 9px; border: 1px solid rgba(134,94,125,.14); border-radius: 18px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
  .mobile-quick a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; border-radius: 12px; font-size: 13px; font-weight: 800; }
  .mobile-quick a:first-child { background: var(--plum); color: #fff; }
  .mobile-quick a:last-child { background: var(--sage-mist); color: var(--sage-dark); }
  body { padding-bottom: 80px; }
  .info-grid { grid-template-columns: 1fr; }
}

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