/*
 * SERVICES PAGE — matches global White + Sage + Gold theme
 * Extends style.css with services-specific components
 */

/* ── HERO ── */
.sd-hero { position:relative; background:var(--light); padding:88px 6% 72px; border-bottom:1px solid var(--border); overflow:hidden; }
.sd-hero-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr auto; align-items:end; gap:3rem; }
.sd-eyebrow { display:inline-flex; align-items:center; gap:0.7rem; font-family:var(--display); font-size:var(--fs-xs); font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--sage); margin-bottom:1.4rem; }
.sd-eyebrow::before { content:''; display:block; width:22px; height:1px; background:var(--sage); }
.sd-hero h1 { font-family:var(--serif); font-size:var(--fs-hero); font-weight:600; color:var(--ink); line-height:1.1; margin-bottom:1.2rem; }
.sd-hero h1 em { font-style:italic; color:var(--gold); }
.sd-hero-desc { font-size:var(--fs-base); color:var(--muted); max-width:480px; line-height:1.8; margin-bottom:2rem; }
.sd-hero-meta { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.sd-hero-badge { display:inline-flex; align-items:center; gap:0.5rem; border:1px solid var(--sage-border); padding:0.45rem 0.9rem; font-family:var(--display); font-size:var(--fs-xs); font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--sage); background:var(--sage-tint); }
.sd-hero-stat { text-align:right; border-left:1px solid var(--border); padding-left:2rem; }
.sd-hero-stat .n { font-family:var(--serif); font-size:3.5rem; font-weight:600; color:var(--gold); line-height:1; display:block; }
.sd-hero-stat .l { font-family:var(--display); font-size:var(--fs-xs); font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:var(--muted); margin-top:0.3rem; display:block; }

/* ── STATS ROW ── */
.sd-stats { background:var(--off-white); border-bottom:1px solid var(--border); padding:0 6%; }
.sd-stats-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); }
.sd-stat-item { padding:2rem 1.8rem; border-right:1px solid var(--border); transition:background 0.2s; }
.sd-stat-item:first-child { border-left:1px solid var(--border); }
.sd-stat-item:hover { background:var(--sage-tint); }
.sd-stat-num { font-family:var(--serif); font-size:2.6rem; font-weight:600; color:var(--gold); display:block; line-height:1; }
.sd-stat-lbl { font-family:var(--display); font-size:var(--fs-xs); font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:var(--muted); margin-top:0.4rem; display:block; }

/* ── SECTION BASE ── */
.sd-section { padding:88px 6%; border-bottom:1px solid var(--border); background:var(--white); }
.sd-section-alt { background:var(--off-white); }
.sd-section-header { max-width:1200px; margin:0 auto 3rem; }
.sd-section-header.center { text-align:center; }
.sd-section-header.center .sd-divider { margin:1rem auto 0; }
.sd-section-label { font-family:var(--display); font-size:var(--fs-xs); font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--sage); display:block; margin-bottom:0.9rem; }
.sd-section-title { font-family:var(--serif); font-size:var(--fs-xl); font-weight:600; color:var(--ink); line-height:1.2; }
.sd-section-title em { font-style:italic; color:var(--gold); }
.sd-section-sub { font-size:var(--fs-base); color:var(--muted); margin-top:0.6rem; line-height:1.75; }
.sd-divider { width:32px; height:2px; background:var(--gold); margin-top:1rem; }

/* ── SERVICE CARDS GRID ── */
.sd-services-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.5rem; }
.sd-service-card { background:var(--white); border:1px solid var(--border); border-top:3px solid var(--sage); padding:2rem 1.8rem; position:relative; transition:box-shadow 0.2s; }
.sd-service-card:hover { box-shadow:0 6px 24px rgba(92,138,110,0.10); }
.sd-svc-num { font-family:var(--serif); font-size:1.4rem; color:var(--gold); font-weight:300; display:block; margin-bottom:0.8rem; opacity:0.8; }
.sd-svc-icon { width:42px; height:42px; border:1px solid var(--sage-border); background:var(--sage-tint); display:flex; align-items:center; justify-content:center; color:var(--sage); margin-bottom:1rem; }
.sd-svc-icon svg { width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.sd-service-card h3 { font-family:var(--display); font-size:var(--fs-sm); font-weight:600; color:var(--ink); margin-bottom:0.5rem; line-height:1.3; }
.sd-service-card p { font-size:var(--fs-sm); color:var(--muted); line-height:1.7; }
.sd-svc-arrow { position:absolute; bottom:1.4rem; right:1.4rem; width:16px; height:16px; color:var(--sage); opacity:0; transition:opacity 0.2s, transform 0.2s; }
.sd-svc-arrow svg { width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.sd-service-card:hover .sd-svc-arrow { opacity:0.7; transform:translate(2px,-2px); }

/* ── SPLIT PANELS ── */
.sd-split { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--border); }
.sd-split-panel { padding:3rem; position:relative; border-top:3px solid var(--sage); }
.sd-split-panel:first-child { border-right:1px solid var(--border); }
.sd-split-panel h3 { font-family:var(--serif); font-size:1.6rem; font-weight:600; color:var(--ink); margin-bottom:0.8rem; }
.sd-split-panel > p { font-size:var(--fs-base); color:var(--muted); line-height:1.8; margin-bottom:1.8rem; padding-bottom:1.8rem; border-bottom:1px solid var(--border); }
.sd-checklist { list-style:none; display:flex; flex-direction:column; gap:0; }
.sd-checklist li { display:flex; align-items:center; gap:0.9rem; padding:0.75rem 0; border-bottom:1px solid var(--border); font-size:var(--fs-sm); color:var(--muted); transition:color 0.2s; }
.sd-checklist li:last-child { border-bottom:none; }
.sd-checklist li:hover { color:var(--ink); }
.sd-check-icon { width:18px; height:18px; min-width:18px; color:var(--sage); }
.sd-check-icon svg { width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* ── PROCESS TIMELINE ── */
.sd-process-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(6,1fr); gap:1.5rem; }
.sd-process-step { background:var(--white); border:1px solid var(--border); padding:1.8rem 1.6rem; transition:border-color 0.2s, background 0.2s; }
.sd-process-step:hover { border-color:var(--sage-border); background:var(--light); }
.sd-step-num { font-family:var(--serif); font-size:2.8rem; font-weight:300; color:var(--gold); opacity:0.2; line-height:1; display:block; margin-bottom:0.8rem; transition:opacity 0.2s; }
.sd-process-step:hover .sd-step-num { opacity:0.6; }
.sd-process-step h3 { font-family:var(--display); font-size:var(--fs-sm); font-weight:600; color:var(--ink); margin-bottom:0.4rem; }
.sd-process-step p { font-size:var(--fs-sm); color:var(--muted); line-height:1.65; }

/* ── TOOLS GRID ── */
.sd-tools-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.sd-tool-card { background:var(--white); border:1px solid var(--border); border-top:3px solid var(--sage); padding:2rem 1.8rem; display:flex; gap:1.2rem; align-items:flex-start; transition:box-shadow 0.2s; }
.sd-tool-card:hover { box-shadow:0 6px 24px rgba(92,138,110,0.10); }
.sd-tool-icon { width:40px; height:40px; min-width:40px; border:1px solid var(--sage-border); background:var(--sage-tint); display:flex; align-items:center; justify-content:center; color:var(--sage); flex-shrink:0; }
.sd-tool-icon svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.sd-tool-card h3 { font-family:var(--display); font-size:var(--fs-sm); font-weight:600; color:var(--ink); margin-bottom:0.4rem; }
.sd-tool-card p { font-size:var(--fs-sm); color:var(--muted); line-height:1.65; }

/* ── CTA BAND ── */
.sd-cta { background:var(--light); border-top:1px solid var(--border); padding:88px 6%; }
.sd-cta-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr auto; align-items:center; gap:3rem; }
.sd-cta-label { font-family:var(--display); font-size:var(--fs-xs); font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:0.9rem; }
.sd-cta h2 { font-family:var(--serif); font-size:var(--fs-xl); font-weight:600; color:var(--ink); line-height:1.2; }
.sd-cta h2 em { font-style:italic; color:var(--gold); }
.sd-cta p { font-size:var(--fs-base); color:var(--muted); margin-top:0.8rem; line-height:1.7; }
.sd-cta-actions { display:flex; flex-direction:column; gap:0.8rem; align-items:flex-end; min-width:220px; }

/* ── BUTTONS ── */
.sd-btn-primary { display:inline-flex; align-items:center; gap:0.6rem; background:var(--sage); color:#FFF; font-family:var(--display); font-size:var(--fs-xs); font-weight:700; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; padding:0.9rem 1.8rem; border:1px solid var(--sage); transition:background 0.25s; white-space:nowrap; }
.sd-btn-primary:hover { background:var(--sage-mid); border-color:var(--sage-mid); }
.sd-btn-primary svg, .sd-btn-ghost svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.sd-btn-ghost { display:inline-flex; align-items:center; gap:0.6rem; background:transparent; color:var(--gold); font-family:var(--display); font-size:var(--fs-xs); font-weight:700; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; padding:0.9rem 1.8rem; border:1px solid var(--gold-border); transition:background 0.25s; white-space:nowrap; }
.sd-btn-ghost:hover { background:var(--gold-tint); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){ .sd-process-grid{grid-template-columns:repeat(3,1fr);} .sd-tools-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:768px){
  .sd-hero-inner{grid-template-columns:1fr;} .sd-hero-stat{display:none;}
  .sd-stats-inner{grid-template-columns:repeat(2,1fr);}
  .sd-split{grid-template-columns:1fr;} .sd-split-panel:first-child{border-right:none;border-bottom:1px solid var(--border);}
  .sd-process-grid{grid-template-columns:repeat(2,1fr);} .sd-tools-grid{grid-template-columns:1fr;}
  .sd-cta-inner{grid-template-columns:1fr;} .sd-cta-actions{align-items:flex-start;flex-direction:row;flex-wrap:wrap;}
  .sd-services-grid{grid-template-columns:repeat(2,1fr);} .sd-section{padding:64px 5%;} .sd-hero{padding:64px 5% 52px;}
}
@media(max-width:480px){ .sd-services-grid{grid-template-columns:1fr;} .sd-process-grid{grid-template-columns:1fr;} .sd-stats-inner{grid-template-columns:repeat(2,1fr);} }
