:root {
  --accent: #c9a227;
  --accent-dark: #15202b;
  --accent-light: #f4efe0;
  --ink: #15202b;
  --ink-soft: #4b5563;
  --bg: #f7f8f9;
  --bg-soft: #eef1f4;
  --line: rgba(21, 32, 43, 0.12);
  --white: #ffffff;
  --font-display: "IBM Plex Serif", Georgia, serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --container: min(1040px, calc(100% - 2.5rem));
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }
.top-bar {
  display: flex; background: var(--accent-dark); color: #e8d48b;
  font-size: 0.75rem; letter-spacing: 0.04em;
}
.top-bar-inner {
  display: flex; width: var(--container); margin-inline: auto;
  justify-content: space-between; padding: 0.4rem 0; gap: 1rem; flex-wrap: wrap;
}
.top-bar a { color: #e8d48b; }
.top-bar a:hover { text-decoration: underline; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 58px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand-mark { width: 28px; height: 28px; }
.brand-text { display: flex; flex-direction: row; align-items: baseline; gap: 0.45rem; }
.brand strong {
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 700;
  color: var(--ink); letter-spacing: 0;
}
.brand strong span { color: var(--ink); font-weight: 500; }
.brand small { display: none; }
.nav { display: flex; gap: 1.1rem; align-items: center; }
.nav a { font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav .cta {
  background: var(--accent-dark) !important; color: var(--accent) !important;
  padding: 0.45rem 0.85rem; font-weight: 600; font-size: 0.78rem;
}
.nav .cta:hover { filter: brightness(1.08); }
.menu-toggle {
  display: none; width: 38px; height: 38px;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--white); padding: 1.25rem; flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav nav a {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line);
}
.close-menu {
  width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; font-size: 1.4rem; cursor: pointer;
}

.hero-ledger { background: var(--accent-dark); color: var(--white); }
.hero-ledger .inner {
  width: var(--container); margin: 0 auto;
  display: grid; gap: 2rem; padding: 2.5rem 0 0;
}
@media (min-width: 900px) {
  .hero-ledger .inner { grid-template-columns: 1fr 1fr; align-items: end; }
}
.hero-kicker {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem; font-weight: 600;
}
.hero-ledger h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600; line-height: 1.15; max-width: 18ch; margin-bottom: 0.85rem;
}
.hero-lead { color: rgba(255,255,255,0.78); max-width: 460px; margin-bottom: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; padding-bottom: 2rem; }
.hero-ledger img { width: 100%; height: 280px; object-fit: cover; display: block; }

.btn {
  display: inline-flex; align-items: center;
  padding: 0.7rem 1.1rem; font-size: 0.8rem;
  font-weight: 600; border: 1px solid transparent; transition: 0.2s;
}
.btn-white, .btn-accent { background: var(--accent); color: var(--accent-dark); }
.btn-white:hover, .btn-accent:hover { filter: brightness(1.05); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--white); }

.section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-soft { background: var(--white); }
.eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #8a7018; margin-bottom: 0.5rem;
}
.title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600; line-height: 1.2; max-width: 22ch;
}
.lede { color: var(--ink-soft); font-size: 1rem; max-width: 640px; line-height: 1.7; margin-top: 0.75rem; }

.stats { display: grid; gap: 0; margin-top: 1.75rem; border: 1px solid var(--line); background: var(--white); }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  padding: 1.25rem 1.3rem; border-bottom: 1px solid var(--line);
  background: transparent; border-left: 0;
}
@media (min-width: 800px) {
  .stat { border-bottom: 0; border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
}
.stat strong {
  display: block; font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.stat span { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }

.story-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 280px; gap: 3rem; }
}
.story-image { overflow: hidden; min-height: 220px; border: 1px solid var(--line); }
.story-image img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }

.service-grid { display: grid; gap: 0; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.service-card {
  display: grid; gap: 1rem; align-items: center;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 1.15rem 0; overflow: visible;
}
.service-card:hover { box-shadow: none; }
.service-card img { display: none; }
.service-card-body { padding: 0; display: grid; gap: 0.25rem; }
@media (min-width: 700px) {
  .service-card-body { grid-template-columns: 180px 1fr auto; align-items: center; }
  .service-card p { margin: 0; }
  .service-card a { margin-top: 0; }
}
.service-card h3 {
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 700; margin-bottom: 0;
}
.service-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.service-card a {
  color: var(--ink); font-weight: 600; font-size: 0.78rem;
  white-space: nowrap;
}

.feature-list { margin-top: 1.25rem; }
.feature-list li {
  list-style: none; padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft); line-height: 1.55;
  display: grid; gap: 0.2rem;
}
.feature-list strong { color: var(--ink); font-size: 0.9rem; }

.page-hero {
  padding: 2rem 0 1.25rem;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 600; line-height: 1.15; max-width: 22ch;
}
.prose { max-width: 720px; }
.prose p { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.prose p + p { margin-top: 1rem; }

.service-detail {
  display: grid; gap: 1.5rem; padding: 1.5rem 0;
  border-top: 1px solid var(--line); align-items: start;
}
@media (min-width: 800px) {
  .service-detail { grid-template-columns: 200px 1fr; }
}
.service-detail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 600; margin-bottom: 0.6rem;
}
.service-detail p { color: var(--ink-soft); line-height: 1.65; margin-bottom: 0.6rem; }
.service-detail ul { color: var(--ink-soft); padding-left: 1.1rem; line-height: 1.65; }

.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); padding: 1.5rem; }
.contact-card h2 {
  font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.85rem;
}
.contact-card p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.7rem; }
.contact-card a { color: var(--ink); font-weight: 600; }
.form { display: grid; gap: 0.85rem; }
.form label {
  display: grid; gap: 0.3rem; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.form input, .form textarea, .form select {
  font: inherit; padding: 0.7rem 0.8rem; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid rgba(201, 162, 39, 0.35); border-color: var(--accent);
}
.form-note, .notice { font-size: 0.82rem; color: var(--ink-soft); }

.cta-panel { background: var(--accent-dark); color: var(--white); min-height: 0; display: block; }
.cta-panel img, .cta-panel .shade { display: none; }
.cta-panel .inner { position: relative; width: var(--container); margin: 0 auto; padding: 2.5rem 0; }
.cta-panel .title { color: var(--white); }

.site-footer {
  background: var(--accent-dark); color: rgba(255,255,255,0.65); padding: 2.5rem 0 1.25rem;
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand strong {
  display: block; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--white); margin-bottom: 0.6rem;
}
.footer-brand strong span { color: var(--accent); }
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.7rem;
}
.footer-col a { display: block; margin-bottom: 0.4rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
}
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 0.5s, transform 0.5s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 799px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
