/* Shared styles for service subpages */
:root {
  --bg: #f4f1ea;
  --bg-warm: #ece5d6;
  --bg-deep: #2a3328;
  --ink: #1f2620;
  --ink-soft: #4a5347;
  --ink-muted: #7a8076;
  --accent: #5d7a5a;
  --accent-deep: #3d5a3a;
  --gold: #b89968;
  --gold-soft: #d4b886;
  --line: rgba(31,38,32,0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Topbar + nav reused */
.topbar {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.topbar a { color: var(--gold-soft); }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
}
.logo small {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); display: block; line-height: 1;
}
.logo-text { line-height: 1; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta {
  background: var(--accent-deep);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--ink); }
@media (max-width: 900px) { .nav-links { display: none; } }
.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Breadcrumb */
.crumb {
  padding: 28px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.crumb a { color: var(--ink-muted); }
.crumb a:hover { color: var(--accent-deep); }
.crumb span { margin: 0 8px; opacity: 0.5; }

/* Hero */
.svc-hero { padding: 32px 0 80px; }
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.svc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.svc-hero h1 em {
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  color: var(--accent-deep);
}
.svc-hero p.lede {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.svc-meta {
  display: flex; gap: 32px;
  margin: 0 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-meta div h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-meta div p { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--accent-deep);
  color: var(--bg);
  box-shadow: 0 8px 24px -8px rgba(61,90,58,0.5);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--ink); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

.svc-hero-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.25);
}
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Body content */
.svc-body { padding: 80px 0; background: var(--bg-warm); }
.svc-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.svc-body-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.svc-body-grid h2 em { font-family: 'Cormorant Infant', serif; font-style: italic; color: var(--accent-deep); }
.svc-body-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc-body-grid p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.svc-body-grid ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.svc-body-grid ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.svc-body-grid ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
}
@media (max-width: 900px) {
  .svc-body { padding: 56px 0; }
  .svc-body-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Steps */
.svc-steps { padding: 96px 0; }
.svc-steps-head { text-align: center; margin-bottom: 56px; }
.svc-steps-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.svc-steps-head h2 em { font-family: 'Cormorant Infant', serif; font-style: italic; color: var(--accent-deep); }
.svc-steps-head p { color: var(--ink-soft); max-width: 540px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  position: relative;
}
.step-num {
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) {
  .svc-steps { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }

/* FAQ */
.svc-faq { padding: 96px 0; background: var(--bg-warm); }
.svc-faq-head { text-align: center; margin-bottom: 48px; }
.svc-faq-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
}
.svc-faq-head h2 em { font-family: 'Cormorant Infant', serif; font-style: italic; color: var(--accent-deep); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-deep);
  transition: transform 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  margin-top: 14px;
  max-width: 700px;
}

/* CTA strip */
.cta-strip {
  background: var(--bg-deep);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-strip h2 em { font-family: 'Cormorant Infant', serif; font-style: italic; color: var(--gold-soft); }
.cta-strip p { color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-primary { background: var(--gold); color: var(--bg-deep); }
.cta-strip .btn-primary:hover { background: var(--gold-soft); }
.cta-strip .btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.cta-strip .btn-ghost:hover { border-color: white; }
.cta-strip-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Related */
.related { padding: 96px 0; }
.related-head { text-align: center; margin-bottom: 48px; }
.related-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
}
.related-head h3 em { font-family: 'Cormorant Infant', serif; font-style: italic; color: var(--accent-deep); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  transition: transform 0.2s;
  display: block;
}
.related-card:hover { transform: translateY(-4px); }
.related-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.related-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.related-card span {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--accent-deep);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .logo { color: white; }
.footer .logo small { color: rgba(255,255,255,0.5); }
.footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 20px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* Floating CTA */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  position: relative;
}
.float-btn:hover { transform: translateY(-3px); }
.float-call {
  background: var(--accent-deep);
  width: auto;
  border-radius: 999px;
  padding: 0 24px 0 18px;
  gap: 10px; font-weight: 500; font-size: 14px;
}
.float-call::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--accent-deep);
  opacity: 0.4; z-index: -1;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-fb { background: #1877f2; }
@media (max-width: 600px) {
  .floating-cta { bottom: 16px; right: 16px; }
  .float-call span { display: none; }
  .float-call { width: 56px; padding: 0; }
}
