:root {
  --accent: #c2410c;
  --accent-dark: #9a3412;
  --accent-light: #fff7ed;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --bg: #fff7ed;
  --bg-soft: #ffedd5;
  --line: rgba(28, 25, 23, 0.12);
  --white: #ffffff;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --container: min(1180px, 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.65;
  -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: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}
.brand strong span { color: #fdba74; }
.brand small { display: none; }
.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a { font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.72); }
.nav a:hover, .nav a[aria-current="page"] { color: #fdba74; }
.nav .cta {
  background: transparent !important; color: #fdba74 !important;
  padding: 0; font-weight: 600; border-bottom: 1px solid #fdba74;
}
.nav .cta:hover { color: var(--white) !important; border-color: var(--white); }
.menu-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25); background: transparent;
  cursor: pointer; color: var(--white);
  align-items: center; justify-content: center;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--ink); 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.8rem; padding: 0.9rem 0; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.close-menu {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; font-size: 1.4rem; cursor: pointer; color: var(--white);
}

.hero-split {
  display: grid; background: var(--white);
}
@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1fr 1.05fr; min-height: 560px; }
}
.hero-copy {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-kicker {
  font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 700;
}
.hero-copy h1, .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 400; line-height: 1.08; max-width: 12ch; margin-bottom: 1rem; color: var(--ink);
}
.hero-lead {
  max-width: 460px; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.btn {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.35rem; font-size: 0.85rem;
  font-weight: 600; border: 1px solid transparent; transition: 0.2s;
}
.btn-white, .btn-accent { background: var(--accent); color: var(--white); }
.btn-white:hover, .btn-accent:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.section { padding: clamp(3.2rem, 7vw, 5rem) 0; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.15; max-width: 16ch;
}
.lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 540px; line-height: 1.75; margin-top: 1rem; }

.stats { display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.stat {
  display: grid; gap: 0.5rem; padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent; border-left: none;
}
@media (min-width: 800px) {
  .stats { grid-template-columns: 1fr; }
  .stat { grid-template-columns: 220px 1fr; align-items: start; }
}
.stat strong {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
}
.stat span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

.story-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}
.story-image { overflow: hidden; min-height: 340px; }
.story-image img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

.service-grid { display: grid; gap: 0; margin-top: 2rem; }
.service-card {
  display: grid; gap: 1.25rem; align-items: center;
  background: transparent; border: none; border-top: 1px solid var(--line);
  padding: 1.5rem 0; overflow: visible;
}
.service-card:hover { box-shadow: none; }
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 700px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 200px 1fr; }
  .service-card img { aspect-ratio: 4/3; }
}
.service-card-body { padding: 0; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 400; margin-bottom: 0.4rem;
}
.service-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.service-card a {
  display: inline-block; margin-top: 0.7rem;
  color: var(--accent-dark); font-weight: 600; font-size: 0.85rem;
}

.feature-list { margin-top: 1.5rem; }
.feature-list li {
  list-style: none; padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft); line-height: 1.6;
}
.feature-list strong { color: var(--ink); display: block; margin-bottom: 0.15rem; }

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  background: var(--ink); color: var(--white);
  border-bottom: 3px solid var(--accent);
}
.page-hero .eyebrow { color: #fdba74; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 400; line-height: 1.08; max-width: 14ch;
}
.prose { max-width: 720px; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }
.prose p + p { margin-top: 1.25rem; }

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

.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--white); border: 1px solid var(--line); padding: 2rem;
}
.contact-card h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; margin-bottom: 1rem;
}
.contact-card p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.85rem; }
.contact-card a { color: var(--accent-dark); font-weight: 500; }
.form { display: grid; gap: 1rem; }
.form label {
  display: grid; gap: 0.4rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.form input, .form textarea, .form select {
  font: inherit; padding: 0.9rem 1rem; border: 1px solid var(--line);
  background: var(--white); color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid rgba(194, 65, 12, 0.28); border-color: var(--accent);
}
.form-note, .notice { font-size: 0.85rem; color: var(--ink-soft); }

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

.site-footer {
  background: var(--white); color: var(--ink-soft); padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; } }
.footer-brand strong {
  display: block; font-family: var(--font-display);
  font-size: 1.35rem; color: var(--ink); margin-bottom: 0.75rem; font-weight: 400;
}
.footer-brand strong span { color: var(--accent); }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.9rem;
}
.footer-col a { display: block; margin-bottom: 0.5rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s; }
.reveal.is-visible { opacity: 1; transform: none; }

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