:root {
  --bg: #14181d;
  --bg-2: #1c2128;
  --bg-3: #252b33;
  --copper: #c47533;
  --copper-light: #d68a4a;
  --copper-dim: rgba(196, 117, 51, 0.18);
  --cream: #f4ede0;
  --text: #d8dde2;
  --muted: #8a93a0;
  --border: rgba(196, 117, 51, 0.22);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Bitter", "Source Serif Pro", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
}

p { margin: 0 0 1em; }
a { color: var(--copper-light); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--cream); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 24, 29, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.brand:hover { color: var(--cream); }
.brand .mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bitter", serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--copper);
  background: rgba(196, 117, 51, 0.06);
}
.brand-text {
  font-family: "Bitter", serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--cream);
}
.brand-text small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--copper);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
nav.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--copper-light);
  border-bottom-color: var(--copper);
}
.menu-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(196, 117, 51, 0.12), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 117, 51, 0.06), transparent 60%),
    linear-gradient(180deg, #14181d 0%, #181d24 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,117,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,117,51,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 .accent { color: var(--copper-light); }
.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art svg {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 25px 50px rgba(196,117,51,0.18));
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--copper);
  color: var(--bg);
  background: var(--copper);
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--copper-light); color: var(--bg); border-color: var(--copper-light); }
.btn.ghost { background: transparent; color: var(--copper-light); }
.btn.ghost:hover { background: var(--copper); color: var(--bg); }
.btn + .btn { margin-left: 12px; }

/* ── Sections ──────────────────────────────────────── */
section { padding: 96px 0; }
section.alt { background: var(--bg-2); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.divider { width: 50px; height: 3px; background: var(--copper); margin: 0 auto 22px; }

/* ── Trust bar ─────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar .inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}
.trust-bar .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-bar .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.trust-bar .value {
  font-family: "Bitter", serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
}

/* ── Service grid (home preview) ───────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
}
section.alt .service-card { background: var(--bg-3); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
}
.service-card .icon {
  width: 40px;
  height: 40px;
  color: var(--copper);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: "Bitter", serif;
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ── Service detail (services page) ────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .icon {
  width: 52px;
  height: 52px;
  color: var(--copper);
  flex-shrink: 0;
}
.service-detail h3 {
  font-family: "Bitter", serif;
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-detail .summary { color: var(--text); margin-bottom: 14px; }
.service-detail ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-detail ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--copper);
}

/* ── About / Bio block ─────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.bio-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bio-photo svg {
  width: 60%;
  color: var(--copper-dim);
  opacity: 0.7;
}
.bio-photo .photo-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.bio-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-content h2 { margin-top: 0; }
.bio-content .role {
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 6px;
}
.bio-content .name {
  font-family: "Bitter", serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 14px;
}
.bio-content p { color: var(--text); }

.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.creds .item .num {
  font-family: "Bitter", serif;
  font-size: 1.4rem;
  color: var(--copper-light);
  font-weight: 700;
  display: block;
}
.creds .item .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── In Practice gallery ───────────────────────────── */
.scenes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 22px;
}
@media (max-width: 640px) {
  .scenes { grid-template-columns: 1fr; }
}
.scene {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: saturate(0.95) contrast(1.02);
}
.scene:hover img { transform: scale(1.04); }
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,29,0) 50%, rgba(20,24,29,0.92) 100%);
  pointer-events: none;
}
.scene .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 1;
}
.scene .caption .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}
.scene .caption h3 {
  font-family: "Bitter", serif;
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 4px 0 0;
  font-weight: 700;
}

/* ── Approach (3-step) ─────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step {
  padding: 28px;
  border-left: 3px solid var(--copper);
  background: var(--bg-2);
}
.step .num {
  font-family: "Bitter", serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 700;
}
.step h3 {
  font-family: "Bitter", serif;
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 8px 0 10px;
  font-weight: 700;
}
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ── CTA band ──────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #181d24 0%, #1f262e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 640px; margin: 0 auto 28px; }

/* ── Contact ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: "Bitter", serif;
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 1.1rem;
  color: var(--cream);
  margin-top: 26px;
  font-weight: 700;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--muted); margin: 0; }
.contact-info a { color: var(--copper-light); }

form.contact-form { display: grid; gap: 14px; }
form.contact-form label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  outline: none;
  border-color: var(--copper);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }

/* ── Footer ────────────────────────────────────────── */
footer.site-footer {
  background: #0e1217;
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
footer .inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer h4 {
  font-family: "Bitter", serif;
  color: var(--cream);
  font-size: 0.95rem;
  margin: 0 0 16px;
  font-weight: 700;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: var(--muted); }
footer ul a:hover { color: var(--copper-light); }
.footer-brand { max-width: 400px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 80px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 220px; }
  .bio-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-photo { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  footer .inner { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 70px 0; }
}

@media (max-width: 640px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  nav.main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); }
  nav.main-nav.open ul { flex-direction: column; padding: 16px 24px; gap: 12px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
  .brand-text { font-size: 0.92rem; }
  .brand-text small { font-size: 0.55rem; letter-spacing: 0.22em; }
  .btn + .btn { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
}
