:root {
  --ink: #171717;
  --muted: #68645e;
  --paper: #f7f1e8;
  --panel: #fffdf8;
  --graphite: #242322;
  --burgundy: #7a1f34;
  --burgundy-soft: #a63c52;
  --sage: #dfe9df;
  --sage-deep: #8aa08d;
  --brass: #caa15a;
  --line: rgba(36, 35, 34, 0.13);
  --shadow: 0 26px 70px rgba(36, 35, 34, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 233, 223, 0.92), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(202, 161, 90, 0.24), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 48%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header.is-elevated {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 14px 38px rgba(36, 35, 34, 0.1);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--graphite);
  border-radius: var(--radius);
  color: var(--brass);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  letter-spacing: 0;
  width: 46px;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  color: var(--graphite);
  font-weight: 850;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 760;
  padding: 5px;
}

.nav a {
  border-radius: 999px;
  color: var(--graphite);
  padding: 8px 14px;
}

.nav a:hover {
  background: var(--sage);
  color: var(--burgundy);
}

.header-action,
.button,
.facebook-link {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 840;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.header-action {
  background: var(--burgundy);
  color: white;
  font-size: 14px;
}

.hero {
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 114px clamp(18px, 5vw, 72px) 116px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(36, 35, 34, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 35, 34, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  opacity: 0.7;
  position: absolute;
  z-index: 0;
}

.hero::after {
  background: var(--burgundy);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: skewX(-10deg) translateX(28%);
  transform-origin: top;
  width: 48%;
  z-index: 0;
}

.hero > .hero-image {
  display: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 68% 20%, rgba(202, 161, 90, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.86) 48%, rgba(36, 35, 34, 0.08) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-rule {
  border: 1px solid rgba(36, 35, 34, 0.16);
  border-radius: var(--radius);
  bottom: 96px;
  left: clamp(18px, 5vw, 72px);
  pointer-events: none;
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 96px;
  z-index: 2;
}

.hero-rule::before {
  background: var(--burgundy);
  content: "";
  height: 84px;
  left: -1px;
  position: absolute;
  top: 96px;
  width: 4px;
}

.hero-rule::after {
  background: rgba(36, 35, 34, 0.14);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 62%;
}

.hero-frame {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 0.92fr);
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
  order: 2;
}

.hero-kicker,
.eyebrow,
.mini-label {
  color: var(--burgundy);
  display: block;
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-kicker {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-kicker::before {
  background: var(--brass);
  content: "";
  display: inline-block;
  height: 2px;
  width: 42px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.3vw, 86px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero-copy {
  border-left: 3px solid var(--burgundy);
  color: #4f4a45;
  font-size: clamp(17px, 1.8vw, 21px);
  max-width: 630px;
  padding-left: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.button.primary {
  background: var(--burgundy);
  box-shadow: 0 16px 34px rgba(122, 31, 52, 0.18);
  color: white;
}

.button.secondary {
  background: var(--sage);
  border: 1px solid rgba(36, 35, 34, 0.1);
  color: var(--graphite);
}

.profile-visual {
  align-items: end;
  display: grid;
  gap: 16px;
  justify-items: center;
  order: 1;
  position: relative;
}

.profile-visual::before {
  background: var(--brass);
  border-radius: var(--radius);
  content: "";
  height: 76%;
  left: -18px;
  position: absolute;
  top: 42px;
  width: 72%;
  z-index: 0;
}

.profile-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  content: "";
  height: 86%;
  position: absolute;
  right: -20px;
  top: 0;
  width: 74%;
  z-index: 0;
}

.profile-photo-card {
  background: white;
  border: 10px solid white;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(36, 35, 34, 0.24);
  height: min(67vh, 650px);
  max-width: 455px;
  overflow: hidden;
  position: relative;
  width: min(32vw, 455px);
  z-index: 2;
}

.profile-photo-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
  width: 100%;
}

.hero-docket {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(36, 35, 34, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(36, 35, 34, 0.18);
  color: var(--graphite);
  margin: -82px 0 0;
  max-width: 410px;
  padding: 24px;
  position: relative;
  width: calc(100% - 42px);
  z-index: 3;
}

.hero-docket::before {
  background: var(--burgundy);
  border-radius: 999px;
  content: "";
  height: 12px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 52px;
}

.hero-docket span {
  color: var(--burgundy);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-docket strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.06;
  max-width: 270px;
}

.hero-docket dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.hero-docket dl div {
  align-items: center;
  border-top: 1px solid rgba(36, 35, 34, 0.12);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}

.hero-docket dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-docket dd {
  color: var(--graphite);
  font-weight: 850;
  margin: 0;
  text-align: right;
}

.hero-service-strip {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  bottom: 28px;
  box-shadow: 0 24px 56px rgba(36, 35, 34, 0.18);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: clamp(18px, 5vw, 72px);
  overflow: hidden;
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  z-index: 4;
}

.hero-service-strip span {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  justify-content: flex-start;
  min-height: 62px;
  padding: 14px 20px;
}

.hero-service-strip b {
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
}

.trust-band {
  background: var(--burgundy);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-band > div {
  background: rgba(255, 255, 255, 0.07);
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 48px);
}

.trust-band .mini-label {
  color: var(--copper-soft);
}

.trust-band strong {
  display: block;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.25;
}

.section,
.split-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.services-section {
  background:
    radial-gradient(circle at 86% 0%, rgba(223, 233, 223, 0.9), transparent 28%),
    linear-gradient(90deg, rgba(36, 35, 34, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 35, 34, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  margin: 0 auto 34px;
  max-width: 1180px;
}

.section-head h2,
.profile-panel h2,
.contact-panel h2 {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.06;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 35, 34, 0.08);
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  background: linear-gradient(90deg, var(--burgundy), var(--brass), var(--sage-deep));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service-card:hover {
  border-color: rgba(122, 31, 52, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    var(--burgundy);
  color: white;
}

.service-icon {
  color: var(--brass);
  display: block;
  font-weight: 900;
  margin-bottom: 48px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-section {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
}

.detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.detail-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 35, 34, 0.08);
  min-height: 310px;
  padding: 28px;
}

.detail-card span {
  color: var(--burgundy);
  display: block;
  font-size: 12px;
  font-weight: 920;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.detail-card h3,
.process-grid h3,
.faq-grid h3 {
  font-size: 22px;
  line-height: 1.14;
  margin-bottom: 12px;
}

.detail-card p,
.process-grid p,
.faq-grid p,
.document-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-section {
  background:
    radial-gradient(circle at 16% 22%, rgba(202, 161, 90, 0.2), transparent 30%),
    var(--graphite);
  color: white;
}

.process-section .section-head h2 {
  color: white;
}

.process-section .eyebrow {
  color: var(--brass);
}

.process-grid {
  counter-reset: process;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 26px;
}

.process-grid span {
  color: var(--brass);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 42px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.document-section {
  background:
    linear-gradient(90deg, rgba(122, 31, 52, 0.08), transparent 36%),
    #ffffff;
}

.document-panel {
  align-items: center;
  background:
    linear-gradient(135deg, #fffdf8 0%, #ffffff 52%, #f3f7f0 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(30px, 5vw, 56px);
}

.document-panel h2 {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  margin-bottom: 18px;
}

.document-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.document-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 790;
  padding: 14px 16px;
}

.faq-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(223, 233, 223, 0.8), transparent 28%),
    #ffffff;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.faq-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 35, 34, 0.07);
  padding: 28px;
}

.split-section {
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 22%, rgba(223, 233, 223, 0.76), transparent 30%),
    linear-gradient(135deg, #fffaf1 0%, #ffffff 54%, #f1f5ef 100%);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
}

.profile-panel,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 35, 34, 0.08);
  padding: clamp(28px, 5vw, 54px);
}

.profile-panel p {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.profile-list span {
  background: var(--sage);
  border: 1px solid rgba(36, 35, 34, 0.12);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 780;
  padding: 10px 12px;
}

.contact-panel {
  background:
    linear-gradient(145deg, rgba(202, 161, 90, 0.14), transparent 42%),
    var(--graphite);
  color: white;
}

.contact-panel h2 {
  color: white;
}

.contact-panel address {
  display: grid;
  font-style: normal;
  gap: 14px;
  margin: 30px 0 24px;
}

.contact-panel address a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  padding-bottom: 14px;
}

.facebook-link {
  background: white;
  color: var(--graphite);
}

.footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 12px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .trust-band,
  .section-head,
  .service-grid,
  .detail-grid,
  .process-grid,
  .document-panel,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 164px;
  }

  .hero::after {
    transform: skewX(-8deg) translateX(48%);
    width: 70%;
  }

  .hero-frame {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
  }

  .profile-visual {
    justify-items: start;
    order: 2;
  }

  .profile-photo-card {
    height: 560px;
    max-width: 430px;
    width: min(100%, 430px);
  }

  .hero-docket {
    margin-top: -78px;
    width: min(100%, 410px);
  }

  .hero-rule {
    bottom: 148px;
  }

  .hero-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding: 94px 18px 214px;
  }

  .hero::after {
    opacity: 0.2;
    transform: skewX(-8deg) translateX(60%);
    width: 92%;
  }

  .hero-rule {
    display: none;
  }

  h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .hero-copy {
    padding-left: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .profile-visual::before,
  .profile-visual::after {
    display: none;
  }

  .profile-photo-card {
    border-width: 7px;
    height: 460px;
    width: 100%;
  }

  .profile-photo-card img {
    object-position: 50% 20%;
  }

  .hero-docket {
    margin-top: -62px;
    padding: 20px;
    width: calc(100% - 24px);
  }

  .hero-docket strong {
    font-size: 24px;
  }

  .hero-service-strip {
    bottom: 18px;
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
  }

  .hero-service-strip span {
    min-height: 44px;
  }

  .service-card {
    min-height: auto;
  }

  .detail-card,
  .process-grid article {
    min-height: auto;
  }

  .detail-card span,
  .process-grid span {
    margin-bottom: 24px;
  }

  .document-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-icon {
    margin-bottom: 28px;
  }
}
