:root {
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --card: #1f1f1f;
  --text: #f6f1e8;
  --muted: #d6cfbf;
  --accent: #f1b51c;
  --accent-dark: #b88500;
  --border: rgba(255,255,255,0.1);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand img { height: 56px; width: auto; }
.site-nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
}
.site-nav a.active,
.site-nav a:hover { background: var(--accent); color: #111; }

.hero, .page-hero {
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
}
.hero { padding: 5rem 0 4rem; }
.page-hero { padding: 4rem 0 2rem; }
.hero-grid, .split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-card, .feature-panel, .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.hero-card { padding: 1.5rem; }
.feature-panel { padding: 2rem; }
.hero-card img { width: 100%; max-width: 420px; margin: 0 auto; }
.hero-card img[src*="logo-fork"] {
  background: #f6f1e8;
  border-radius: 16px;
  padding: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-soft); }
.section-heading { margin-bottom: 2rem; }

.about-photo-section { padding-top: 2rem; }
.about-photo-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-photo-split__text p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}
.about-photo-split__figure {
  margin: 0;
}
.about-photo-split__img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}
.about-photo-split__caption {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display: inline-block;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}
.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.text-link { color: var(--accent); font-weight: 700; }

.cards {
  display: grid;
  gap: 1.25rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 1.5rem; }
.service-card { min-height: 180px; }
.contact-card { height: 100%; }
.callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #221b05 0%, #161616 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
}
.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ticks li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.ticks li:last-child { border-bottom: 0; }
.panel-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 18px;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: #0d0d0d;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo { width: 180px; }

.find-us-section { padding-top: 3rem; padding-bottom: 4rem; }
.find-us-heading { margin-bottom: 1.5rem; }
.find-us-heading h2 { margin-bottom: 0.5rem; }
.find-us-sub {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}
.map-embed {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 10;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 860px) {
  .hero-grid, .split-grid, .three-up, .about-photo-split { grid-template-columns: 1fr; }
  .about-photo-split__figure { order: -1; }
  .nav-wrap, .callout { flex-direction: column; align-items: flex-start; }
  .brand img { height: 48px; }
}
