@font-face {
  font-family: 'Parkinsans';
  src: url('/photos/Parkinsans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --noir: #1a1816;
  --creme: #f5f5f5;
  --cuivre: #ba906e;
  --cuivre-clair: #d4ad8c;
  --header-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Parkinsans', system-ui, -apple-system, sans-serif;
  background: var(--creme);
  color: var(--noir);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cuivre); text-decoration: none; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(245,245,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,24,22,0.08);
  z-index: 50;
  height: var(--header-h);
}
.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 14px; color: var(--noir); }
.logo-link img { height: 40px; width: auto; }
.logo-text { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.05em; color: var(--noir); }
.logo-text .accent { color: var(--cuivre); font-weight: 400; }
nav.site-nav ul { list-style: none; display: flex; gap: 32px; }
nav.site-nav a {
  color: var(--noir);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}
nav.site-nav a:hover, nav.site-nav a.is-active { border-color: var(--cuivre); }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  background: rgba(26,24,22,0.04);
  padding: 18px 40px;
  font-size: 0.82rem;
}
.crumbs nav { max-width: 1400px; margin: 0 auto; color: rgba(26,24,22,0.65); }
.crumbs a { color: rgba(26,24,22,0.7); }
.crumbs a:hover { color: var(--cuivre); }
.crumbs .sep { margin: 0 10px; opacity: 0.5; }
.crumbs span[aria-current] { color: var(--noir); font-weight: 500; }

/* ---------- Hero (service page) ---------- */
.service-hero {
  padding: 80px 40px 60px;
  background: linear-gradient(180deg, #ece6dd 0%, var(--creme) 100%);
  text-align: center;
}
.service-hero .inner { max-width: 820px; margin: 0 auto; }
.service-hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cuivre);
  margin-bottom: 22px;
}
.service-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.service-hero h1 .bracket { color: var(--cuivre); font-weight: 600; }
.service-hero .lead {
  font-size: 1.1rem;
  color: rgba(26,24,22,0.75);
  max-width: 640px;
  margin: 0 auto 36px;
}
.service-hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--cuivre);
  color: var(--noir);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--cuivre);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-outline {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline:hover { background: var(--noir); color: var(--creme); }

/* ---------- Sections ---------- */
.section { padding: 80px 40px; }
.section:nth-of-type(even) { background: rgba(26,24,22,0.025); }
.container { max-width: 1100px; margin: 0 auto; }
.narrow { max-width: 780px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cuivre);
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.section h2 .bracket { color: var(--cuivre); font-weight: 600; }
.section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 12px;
}
.section p {
  color: rgba(26,24,22,0.78);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.section ul { padding-left: 0; list-style: none; margin: 16px 0 24px; }
.section ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(26,24,22,0.78);
}
.section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: var(--cuivre);
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step {
  border-top: 1px solid rgba(26,24,22,0.12);
  padding-top: 24px;
}
.step .num {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--cuivre);
  font-weight: 600;
  margin-bottom: 12px;
}
.step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p { font-size: 0.95rem; }

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0 16px;
}
.photo-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid rgba(26,24,22,0.12);
  padding: 24px 0;
}
.faq details:first-of-type { border-top: 1px solid rgba(26,24,22,0.12); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 32px;
  outline: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cuivre);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 14px; color: rgba(26,24,22,0.75); }

/* ---------- Cross-links ---------- */
.cross-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.cross-links a {
  display: block;
  padding: 24px;
  background: var(--noir);
  color: var(--creme);
  text-align: center;
  transition: background 0.2s ease;
}
.cross-links a:hover { background: var(--cuivre); color: var(--noir); }
.cross-links a strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cross-links a span {
  font-size: 0.82rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--noir);
  color: var(--creme);
  padding: 80px 40px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--creme);
}
.cta-band h2 .bracket { color: var(--cuivre); font-weight: 600; }
.cta-band p {
  color: rgba(245,245,245,0.7);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ---------- Footer (matches main site) ---------- */
footer.site-footer {
  background: var(--noir);
  color: rgba(245,245,245,0.65);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.82rem;
  line-height: 1.7;
}
footer.site-footer .accent { color: var(--cuivre); }
footer.site-footer a { color: var(--cuivre); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-container { padding: 0 24px; }
  .logo-text { display: none; }
  nav.site-nav ul { display: none; }
  .service-hero { padding: 56px 24px 40px; }
  .section { padding: 56px 24px; }
  .cta-band { padding: 56px 24px; }
  .crumbs { padding: 14px 24px; font-size: 0.78rem; }
  .photo-strip img { height: 280px; }
}
