:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #c5a059;
  --on-dark: var(--accent);
  --on-dark-muted: var(--accent);
  --line: color-mix(in srgb, var(--on-dark) 18%, transparent);
  --page-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--primary);
  color: var(--on-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.wide { width: min(calc(100% - 48px), var(--page-width)); margin-inline: auto; }

.skip {
  position: fixed;
  z-index: 10;
  left: 1rem;
  top: -4rem;
  padding: .65rem .9rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}

.skip:focus { top: 1rem; }

.site-header { border-bottom: 1px solid var(--line); background: var(--primary); }

.header-inner, nav, .brand, .button, .nav-contact, .contact-grid { display: flex; align-items: center; }

.header-inner { justify-content: space-between; min-height: 76px; gap: 1.5rem; }

.brand { color: var(--on-dark); font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; text-decoration: none; }
.brand span { margin-left: .6rem; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

nav { gap: 1.35rem; }
nav a { color: var(--on-dark-muted); font-size: .93rem; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--on-dark); }

.nav-contact {
  gap: .5rem;
  padding: .58rem .8rem;
  border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
  color: var(--on-dark);
}

.hero { overflow: hidden; padding: clamp(6rem, 14vw, 10rem) 0; background: radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 38%), var(--primary); }

.hero-copy { max-width: 780px; animation: page-enter .8s cubic-bezier(.16, .84, .25, 1) both; }

.eyebrow { margin: 0 0 1rem; color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1 { max-width: 820px; margin-bottom: 1.25rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.045em; }
h2 { margin-bottom: 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; letter-spacing: -.035em; }
h3 { margin-bottom: .75rem; font-size: 1.25rem; }

.lead { max-width: 610px; margin-bottom: 2rem; color: var(--on-dark-muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }

.button {
  display: inline-flex;
  justify-content: center;
  gap: .8rem;
  min-height: 48px;
  padding: .75rem 1.1rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, filter .25s ease;
}

.button:hover, .button:focus-visible { filter: brightness(1.08); transform: translateY(-2px); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.about { background: var(--secondary); }
.two-column { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 8vw, 8rem); align-items: end; }
.body-copy { max-width: 610px; margin-bottom: 0; color: var(--on-dark-muted); font-size: 1.15rem; }

.practice { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.areas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 2.5rem; border-top: 1px solid var(--line); }
.areas article { padding: 2rem 1.75rem 1.75rem 0; border-bottom: 1px solid var(--line); }
.areas article + article { padding-left: 1.75rem; border-left: 1px solid var(--line); }
.areas span { display: block; margin-bottom: 2.2rem; color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.areas p { max-width: 420px; margin-bottom: 0; color: var(--on-dark-muted); }

.contact { background: var(--secondary); }
.contact-grid { justify-content: space-between; gap: 2rem; }
.contact-button { flex: 0 0 auto; }

footer { border-top: 1px solid var(--line); padding: 2.5rem 0; background: var(--primary); color: var(--on-dark-muted); font-size: .85rem; }
.footer-inner { display: grid; gap: .7rem; }
.footer-inner p, .footer-inner small { margin: 0; }

@keyframes page-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .wide { width: min(calc(100% - 32px), var(--page-width)); }
  .header-inner { min-height: auto; padding: 1rem 0; align-items: flex-start; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1rem; }
  .nav-contact { padding: .42rem .6rem; }
  .two-column, .areas { grid-template-columns: 1fr; }
  .areas article, .areas article + article { padding: 1.5rem 0; border-left: 0; }
  .areas span { margin-bottom: 1.25rem; }
  .contact-grid { align-items: flex-start; flex-direction: column; }
}

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