:root {
  --ink: #111820;
  --ink-soft: #31404e;
  --paper: #f7f3ea;
  --surface: #ffffff;
  --line: rgba(17, 24, 32, 0.14);
  --gold: #b88a3d;
  --gold-dark: #6f4e1d;
  --green: #496a62;
  --wine: #6f2d3a;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

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

.site-header {
  min-height: 92vh;
  background:
    linear-gradient(110deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(184, 138, 61, 0.28), transparent 34%),
    linear-gradient(135deg, #101820, #253940 48%, #5d3142);
  color: #fff;
  overflow: hidden;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.75);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta,
.button {
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 12px 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-text {
  width: min(660px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  cursor: pointer;
}

.button.primary {
  color: #15120a;
  background: #d9b45f;
  border-color: #d9b45f;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.brand-panel {
  display: grid;
  overflow: hidden;
}

.brand-panel > img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  justify-self: center;
  padding: 30px 24px 18px;
}

.panel-bottom {
  justify-content: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid rgba(17, 24, 32, 0.1);
  color: var(--ink-soft);
}

.panel-bottom span {
  padding: 8px 11px;
  background: #f4efe4;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
}

.trust-strip div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.trust-strip span,
.section p,
.copy-stack,
.steps p,
.contact p,
.form-note {
  color: var(--ink-soft);
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

.section,
.feature-band,
.promo-band,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.service-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-card-wide {
  grid-column: span 2;
}

.icon {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: #fff;
  background: var(--green);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: start;
  padding-top: 10px;
}

.promo-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-family: Arial, sans-serif;
  line-height: 1.65;
  margin: 22px 0 28px;
}

.flyer-preview {
  margin: 0;
  background: #0a0a09;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 138, 61, 0.28);
  overflow: hidden;
}

.flyer-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.flyer-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flyer-gallery .flyer-preview:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy p:not(.eyebrow) {
  margin-top: 22px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 4px 18px;
  padding: 24px;
  background: #ede6d9;
  border-left: 4px solid var(--gold);
}

.steps span {
  grid-row: span 2;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.steps strong {
  font-size: 1.2rem;
}

.steps p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  padding-top: 18px;
}

.copy-stack p {
  margin: 0 0 18px;
}

.study-leads {
  border-top: 1px solid var(--line);
}

.profile-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.profile-layout + .profile-layout {
  margin-top: 24px;
}

.profile-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.profile-card img {
  width: min(100%, 240px);
  height: auto;
  display: block;
  margin-bottom: 14px;
  background: #fff;
}

.profile-card .profile-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  background: #151515;
  border: 1px solid rgba(217, 180, 95, 0.35);
}

.profile-card strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.profile-card span {
  color: rgba(255, 255, 255, 0.75);
  font-family: Arial, sans-serif;
}

.profile-copy {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.profile-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.practice-tags span {
  padding: 9px 12px;
  background: #f4efe4;
  color: var(--ink);
  border: 1px solid rgba(184, 138, 61, 0.22);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 70px;
  padding: 56px;
  background: var(--ink);
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-family: Arial, sans-serif;
}

.contact-list a,
.contact-list span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  color: var(--ink);
  background: #f8f6f1;
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(184, 138, 61, 0.45);
  border-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 4px;
  color: var(--ink-soft);
}

.footer a {
  color: var(--gold-dark);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #111820;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 20;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .feature-band,
  .promo-band,
  .split,
  .profile-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

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

  .service-card,
  .service-card-wide {
    grid-column: span 1;
  }

  .flyer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand small {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 18vw, 4.4rem);
  }

  .hero-panel {
    margin-top: 10px;
  }

  .legal-visual {
    min-height: 260px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .flyer-gallery {
    grid-template-columns: 1fr;
  }

  .flyer-gallery .flyer-preview:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .feature-band {
    padding: 66px 0;
  }

  .contact {
    width: 100%;
    margin-bottom: 42px;
    padding: 42px 16px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
