:root {
  --ink: #17120e;
  --ink-soft: #3a2f27;
  --cream: #f7f1e8;
  --cream-deep: #ede3d5;
  --white: #ffffff;
  --copper: #b5642f;
  --copper-bright: #d98344;
  --copper-pale: #f3ddca;
  --patina: #2f7a68;
  --line: rgba(23, 18, 14, 0.14);
  --shadow: 0 22px 60px rgba(40, 24, 12, 0.16);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Public Sans", Helvetica, Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Menlo, monospace;
  --shell: min(1160px, calc(100vw - 48px));
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--patina);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.22rem; line-height: 1.25; }
p { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 120;
  top: -90px; left: 12px;
  padding: 10px 18px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 0 0 8px 8px;
  transition: top 150ms ease;
}
.skip-link:focus { top: 0; }
.section-shell { width: var(--shell); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1.03rem; }

/* Explicit colors on every button: a broad nav-link rule must never win over these. */
.btn-copper, .site-nav .btn-copper {
  color: var(--white);
  background: var(--copper);
  border: 1px solid var(--copper);
}
.btn-copper:hover, .site-nav .btn-copper:hover { background: #a25626; border-color: #a25626; }

.btn-outline, .site-nav .btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23, 18, 14, 0.32);
}
.btn-outline:hover, .site-nav .btn-outline:hover { border-color: var(--ink); background: rgba(23, 18, 14, 0.05); }

.btn-ghost, .site-nav .btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  padding-inline: 12px;
}
.btn-ghost:hover, .site-nav .btn-ghost:hover { color: var(--copper); }

.btn-cream {
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--cream);
}
.btn-cream:hover { background: var(--white); border-color: var(--white); }

.btn-outline-cream {
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(247, 241, 232, 0.5);
}
.btn-outline-cream:hover { border-color: var(--cream); background: rgba(247, 241, 232, 0.1); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  /* Own opaque surface: contrast never depends on what the hero image shows behind it. */
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(181, 100, 47, 0.22), 0 10px 30px rgba(40, 24, 12, 0.06);
}
.header-inner {
  width: var(--shell);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; color: var(--ink); text-decoration: none; }
.brand img { width: 218px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav > a { color: var(--ink-soft); text-decoration: none; }
.site-nav > a:hover { color: var(--copper); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle-bars { display: grid; gap: 4px; }
.menu-toggle-bars i {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: 0; background: var(--ink); }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: clamp(320px, 52vw, 560px);
  object-fit: cover;
  object-position: 58% 60%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 14, 0.1) 0%, rgba(23, 18, 14, 0.55) 62%, var(--ink) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  margin-top: clamp(-160px, -18vw, -110px);
  padding-bottom: clamp(48px, 7vw, 76px);
  color: var(--cream);
  max-width: 760px;
  margin-inline: auto;
}
.hero-body h1 { color: var(--white); margin-bottom: 18px; }
.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: rgba(247, 241, 232, 0.85);
  max-width: 60ch;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 14px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-row-inline { margin-top: 40px; }
.cta-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(247, 241, 232, 0.6);
}

/* ---------- lane rule (signature) ---------- */
.lane-rule {
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--copper) 0 26px,
    transparent 26px 46px
  );
  opacity: 0.5;
}

/* ---------- shared section furniture ---------- */
section { padding-block: clamp(56px, 8vw, 92px); }
.marker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-lead {
  margin-top: 16px;
  max-width: 62ch;
  color: var(--ink-soft);
}

/* ---------- services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 42px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-deep); }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin: 22px 22px 8px; }
.service-card p { margin: 0 22px 24px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- process ---------- */
.process { background: var(--cream-deep); }
.step-list {
  list-style: none;
  counter-reset: step;
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.step-list li { position: relative; padding-top: 54px; }
.step-no {
  position: absolute;
  top: 0; left: 0;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--copper);
  border-radius: 50%;
}
.step-list h3 { margin-bottom: 8px; }
.step-list p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  margin-top: 42px;
}
.work-item { margin: 0; }
.work-item img {
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.work-item figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.honest-note {
  margin-top: 32px;
  padding: 16px 18px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  background: var(--copper-pale);
  border-left: 3px solid var(--copper);
  border-radius: 0 10px 10px 0;
  max-width: 70ch;
}

/* ---------- faq ---------- */
.faq { background: var(--cream-deep); }
.faq-list { margin-top: 38px; display: grid; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--copper);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 18px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- final cta ---------- */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-cta h2 { color: var(--white); }
.final-cta p {
  margin: 16px auto 0;
  max-width: 52ch;
  color: rgba(247, 241, 232, 0.78);
}
.final-cta .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  padding-block: 44px 28px;
  background: var(--ink);
  color: rgba(247, 241, 232, 0.72);
  border-top: 1px solid rgba(247, 241, 232, 0.1);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
/* Logo colors are baked into the SVG files: an <img>-loaded SVG cannot inherit page color. */
.footer-brand img { width: 226px; height: auto; }
.footer-brand p { margin-top: 10px; font-size: 0.92rem; }
.footer-contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-phone {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.footer-phone:hover { color: var(--copper-bright); }
.footer-book {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid rgba(247, 241, 232, 0.4);
  border-radius: 999px;
}
.footer-book:hover { border-color: var(--cream); }
.footer-legal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 232, 0.1);
  font-size: 0.82rem;
  color: rgba(247, 241, 232, 0.5);
}

/* ---------- sticky bar (mobile) ---------- */
.sticky-bar {
  display: none;
  position: fixed;
  z-index: 70;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(23, 18, 14, 0.97);
  border-top: 1px solid rgba(247, 241, 232, 0.16);
}
.sticky-call, .sticky-book {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
}
.sticky-call { flex: 1.35; color: var(--white); background: var(--copper); }
.sticky-book { color: var(--cream); border: 1px solid rgba(247, 241, 232, 0.42); }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 34px); }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 17px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 14px; }
  .nav-actions .btn { justify-content: center; }
  .btn-ghost, .site-nav .btn-ghost { border-color: rgba(23, 18, 14, 0.32); }

  .hero-body { margin-top: -96px; }
  .hero-media img { object-position: 62% 62%; }
  .cta-row .btn { flex: 1; justify-content: center; }

  .sticky-bar { display: flex; }
  .site-footer { padding-bottom: 96px; }
}

@media (max-width: 420px) {
  .brand img { width: 176px; }
  .hero-body { margin-top: -80px; }
}
