/* =====================================================
   shawfair.dev — static stylesheet
   Modern, local, architectural design system.
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #F7F7F4;
  --surface: #FFFFFF;
  --fg: #1E2328;
  --fg-soft: rgba(30, 35, 40, 0.72);
  --muted: rgba(30, 35, 40, 0.6);
  --slate: #55606D;
  --stone: #D8D1C5;
  --stone-soft: #ECE7DD;
  --accent: #3F6A57;
  --accent-soft: rgba(63, 106, 87, 0.1);
  --sand: #C8A977;
  --border: #E4DFD3;
  --border-strong: #D8D1C5;

  --radius: 6px;
  --radius-sm: 4px;
  --shadow-soft: 0 1px 2px rgba(30,35,40,0.04), 0 4px 16px rgba(30,35,40,0.06);
  --shadow-elevated: 0 8px 30px rgba(30,35,40,0.10);
  --shadow-card: 0 1px 0 var(--border), 0 8px 24px -12px rgba(30,35,40,0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --container-tight: 1040px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ---------- Base ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}
::selection { background: var(--accent-soft); color: var(--fg); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-tight { width: 100%; max-width: var(--container-tight); margin: 0 auto; padding: 0 24px; }
.balance { text-wrap: balance; }
.accent { color: var(--accent); }
.section { padding: 96px 0; }
.section-lg { padding: 120px 0; }
.section--muted { background: rgba(216, 209, 197, 0.18); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--stone { background: linear-gradient(180deg, var(--bg), var(--stone-soft)); }
.section--dark { background: var(--fg); color: var(--bg); position: relative; overflow: hidden; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--bg); }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
}

/* Subtle grain on dark/stone surfaces */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 1px; background: var(--accent);
}
.section--dark .eyebrow { color: rgba(247,247,244,0.6); }

.section-title {
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  font-weight: 600; line-height: 1.05;
}
.hero-title {
  font-size: clamp(2rem, 1.2rem + 4vw, 4.25rem);
  font-weight: 600; line-height: 1.04;
  word-wrap: break-word;
}
.lead {
  color: var(--fg-soft); font-size: 1.0625rem; line-height: 1.65; max-width: 36rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 22px; height: 48px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: #2c333a; }
.btn--outline { background: transparent; color: var(--fg); border-color: rgba(30,35,40,0.18); }
.btn--outline:hover { background: rgba(30,35,40,0.04); }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), backdrop-filter 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(247,247,244,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em; color: var(--fg);
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--fg); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700;
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 4px; border: 1px solid rgba(247,247,244,0.4);
}
.logo .dot { color: var(--accent); }

.primary-nav { display: none; gap: 32px; align-items: center; }
.primary-nav a { font-size: 14px; color: var(--muted); transition: color 200ms var(--ease); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--fg); }

.header-cta { display: none; align-items: center; gap: 14px; }
.header-cta .phone { font-size: 14px; color: var(--muted); transition: color 200ms var(--ease); }
.header-cta .phone:hover { color: var(--fg); }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 16px; height: 1.5px; background: var(--fg);
  position: relative; transition: transform 200ms var(--ease), top 200ms var(--ease);
}
.menu-toggle span::before { content: ""; position: absolute; top: -5px; }
.menu-toggle span::after  { content: ""; position: absolute; top: 5px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav ul { display: flex; flex-direction: column; padding: 12px 24px 24px; }
.mobile-nav a { padding: 12px 0; font-size: 16px; color: var(--muted); }
.mobile-nav a[aria-current="page"] { color: var(--fg); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

#nav-toggle { display: none; }
#nav-toggle:checked ~ .mobile-nav { display: block; }

@media (min-width: 880px) {
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; gap: 56px; align-items: center;
  padding: 64px 0 96px;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 48px; padding: 96px 0 112px; }
}
.hero-copy { animation: fadeUp 0.8s var(--ease) both; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 28px; font-size: 12px; color: var(--muted);
  flex-wrap: wrap;
}
.hero-trust .pin { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; margin-top: 6px; flex-shrink: 0; }

.hero-media { position: relative; animation: fadeIn 1s ease-out both; }
.hero-media .frame {
  position: absolute; inset: -12px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  pointer-events: none;
}
@media (max-width: 480px) {
  .hero-media .frame { inset: -6px; }
  .hero-media img { height: 360px; }
}
.hero-media img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-elevated);
  position: relative;
}
@media (min-width: 768px) { .hero-media img { height: 520px; } }
.hero-stat {
  position: absolute; left: 16px; bottom: -20px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  max-width: 220px;
  display: none;
}
@media (min-width: 768px) { .hero-stat { display: block; } }
.hero-stat .num { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 600; }
.hero-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

.trust-strip {
  border-top: 1px solid var(--border);
  padding-top: 32px; padding-bottom: 56px; margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; text-align: center;
}
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-strip .t { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 14px; }
.trust-strip .d { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- Section heading row ---------- */
.section-head {
  display: grid; gap: 32px; align-items: end; margin-bottom: 56px;
}
@media (min-width: 768px) { .section-head { grid-template-columns: 7fr 5fr; gap: 40px; margin-bottom: 72px; } }

/* ---------- Services grid ---------- */
.grid-divided {
  display: grid; gap: 1px; background: var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border);
}
.grid-divided.cols-2 { grid-template-columns: 1fr; }
.grid-divided.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-divided.cols-2 { grid-template-columns: 1fr 1fr; }
  .grid-divided.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-divided.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 250ms var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.service-card:hover { background: var(--stone-soft); }
.service-card .icon-wrap {
  width: 44px; height: 44px;
  background: var(--fg); color: var(--bg);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-card .num {
  font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--muted);
  position: absolute; top: 36px; right: 32px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p.desc { font-size: 14px; color: var(--fg-soft); margin-bottom: 24px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-card li {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-soft);
}
.service-card li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--fg);
  transition: color 200ms var(--ease);
  margin-top: auto;
}
.service-card .more:hover { color: var(--accent); }

/* ---------- Why Us ---------- */
.why-grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { border-top: 1px solid rgba(30,35,40,0.18); padding-top: 24px; }
.why-item .num { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.why-item h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--fg-soft); }

/* ---------- Who we help ---------- */
.audience-grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(6, 1fr); } }
.audience-item {
  background: var(--bg);
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px; text-align: center;
  transition: background 250ms var(--ease);
}
.audience-item:hover { background: var(--stone-soft); }
.audience-item svg { color: var(--slate); transition: color 200ms var(--ease); }
.audience-item:hover svg { color: var(--accent); }
.audience-item p { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px; }

/* ---------- Process (dark) ---------- */
.process-grid {
  display: grid; gap: 1px; background: rgba(247,247,244,0.1);
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(247,247,244,0.1);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-step { background: var(--fg); padding: 30px 30px 32px; }
.process-step .num { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--accent); margin-bottom: 24px; }
.process-step h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(247,247,244,0.65); }

/* ---------- Work ---------- */
.work-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card .img-wrap {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-sm); background: var(--stone-soft);
  margin-bottom: 20px;
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease);
}
.work-card:hover img { transform: scale(1.03); }
.work-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(247,247,244,0.95); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 500;
}
.work-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.work-card dl { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.work-card dl > div { display: flex; gap: 12px; }
.work-card dt { width: 80px; flex-shrink: 0; color: var(--muted); }
.work-card dd { color: var(--fg-soft); }
.work-card dd.result { color: var(--accent); font-weight: 500; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; position: relative; padding-bottom: 2px;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease);
}
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: scaleX(1); }

/* ---------- Local focus ---------- */
.local-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .local-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.local-media { position: relative; }
.local-media img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-elevated);
}
@media (min-width: 768px) { .local-media img { height: 460px; } }
.local-card {
  position: absolute; right: 16px; bottom: -20px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
  display: none;
}
@media (min-width: 768px) { .local-card { display: block; } }
.local-card .label { font-family: 'Manrope', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 4px; }
.local-card .place { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 18px; }

.areas-grid {
  display: grid; gap: 12px 24px;
  grid-template-columns: repeat(2, 1fr); margin-top: 32px;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.areas-grid p {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-soft);
}
.areas-grid p::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--bg); padding: 36px 32px;
  display: flex; flex-direction: column;
}
.testimonial .qmark { color: var(--accent); margin-bottom: 24px; }
.testimonial blockquote {
  font-family: 'Manrope', sans-serif; font-size: 1.0625rem; line-height: 1.45;
  letter-spacing: -0.01em; flex: 1;
}
.testimonial figcaption {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.testimonial .name { font-size: 14px; font-weight: 500; }
.testimonial .role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; }
.cta-final .eyebrow { justify-content: center; }
.cta-final h2 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  font-weight: 600; margin-bottom: 24px;
}
.cta-final p { margin: 0 auto 40px; }
.cta-final .row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--fg); color: var(--bg);
  padding: 72px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; gap: 40px; }
}
.footer-brand .logo { color: var(--bg); }
.footer-brand .logo-mark { background: var(--bg); color: var(--fg); }
.footer-brand .logo-mark::after { border-color: rgba(30,35,40,0.4); }
.footer-brand p { color: rgba(247,247,244,0.7); font-size: 14px; max-width: 22rem; margin-top: 20px; line-height: 1.65; }
.footer-brand .tagline { font-family: 'Manrope', sans-serif; font-size: 14px; margin-top: 16px; color: rgba(247,247,244,0.9); }

.footer-col h3 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(247,247,244,0.5); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(247,247,244,0.8); transition: color 200ms var(--ease); word-break: break-word; }
.footer-col a:hover { color: var(--accent); }
.footer-col .row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(247,247,244,0.8); margin-bottom: 12px; flex-wrap: wrap; word-break: break-word; }
.footer-col .row svg { flex-shrink: 0; opacity: 0.8; }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(247,247,244,0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: rgba(247,247,244,0.5);
}
.footer-bottom a { color: rgba(247,247,244,0.5); text-decoration: underline; text-underline-offset: 3px; transition: color 200ms var(--ease); }
.footer-bottom a:hover { color: rgba(247,247,244,0.85); }

/* ---------- Legal / privacy policy ---------- */
.legal-content { max-width: 720px; }
.legal-content h2 { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; margin: 40px 0 10px; color: var(--fg); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 600; margin: 20px 0 8px; color: var(--fg); }
.legal-content p { font-size: 15px; color: var(--fg-soft); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content li { font-size: 15px; color: var(--fg-soft); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-underline-offset: 3px; }
.legal-content a:hover { text-decoration: underline; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}


/* =============================================================
   INNER PAGES — additional component styles
   ============================================================= */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  padding: 20px 0 0;
}
.breadcrumb a { color: var(--muted); transition: color 200ms var(--ease); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { opacity: 0.4; font-size: 11px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-inner {
  padding: 56px 0 72px;
  max-width: 760px;
  animation: fadeUp 0.7s var(--ease) both;
}
.page-hero h1 {
  font-size: clamp(2rem, 1rem + 3.5vw, 3.75rem);
  margin-bottom: 0;
}
.page-hero .lead { margin-top: 20px; max-width: 42rem; }
.page-hero .hero-cta-row { margin-top: 32px; }

/* ---------- Service hub page ---------- */
.service-hub-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .service-hub-grid { grid-template-columns: 1fr 1fr; } }

.service-hub-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
}
.service-hub-card:hover {
  border-color: var(--stone);
  box-shadow: var(--shadow-elevated);
  background: var(--stone-soft);
}
.service-hub-card .card-icon {
  width: 48px; height: 48px;
  background: var(--fg); color: var(--bg);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-hub-card .card-num {
  font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--muted);
  position: absolute; top: 40px; right: 36px;
}
.service-hub-card h3 { font-size: 1.375rem; margin-bottom: 12px; }
.service-hub-card .card-desc { font-size: 15px; color: var(--fg-soft); margin-bottom: 24px; line-height: 1.6; }
.service-hub-card ul {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1;
}
.service-hub-card li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-soft);
}
.service-hub-card li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0; margin-top: 9px;
}
.service-hub-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--fg); transition: color 200ms var(--ease);
  margin-top: auto; padding-top: 8px;
}
.service-hub-card .card-link:hover { color: var(--accent); }

/* ---------- Service detail: feature grid ---------- */
.feature-grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  background: var(--bg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 250ms var(--ease);
}
.feature-item:hover { background: var(--stone-soft); }
.feature-item .fi-icon {
  width: 40px; height: 40px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 6px;
}
.feature-item h3 { font-size: 1rem; }
.feature-item p { font-size: 13px; color: var(--fg-soft); line-height: 1.55; }

/* ---------- Two-col layout ---------- */
.two-col { display: grid; gap: 56px; align-items: start; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 5fr 4fr; gap: 64px; } }
@media (min-width: 1024px) { .two-col.reverse > :first-child { order: 2; } .two-col.reverse > :last-child { order: 1; } }

/* ---------- Check list ---------- */
.check-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--fg-soft); line-height: 1.5;
}
.check-list li .chk {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ---------- Who it's for panel ---------- */
.for-panel {
  background: var(--stone-soft); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 32px 28px;
}
.for-panel h3 { font-size: 1.0625rem; margin-bottom: 18px; }
.for-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.for-tag {
  padding: 6px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; color: var(--fg-soft);
  font-weight: 500;
}

/* ---------- Stats row ---------- */
.stats-row {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }
.stat-block {
  background: var(--bg); padding: 36px 28px; text-align: center;
}
.stat-block .stat-num {
  font-family: 'Manrope', sans-serif; font-size: 2.5rem; font-weight: 600;
  color: var(--accent); letter-spacing: -0.03em;
}
.stat-block .stat-lbl { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

/* ---------- Process mini (service pages) ---------- */
.process-mini {
  display: grid; gap: 1px; background: rgba(247,247,244,0.1);
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(247,247,244,0.1);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .process-mini { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-mini { grid-template-columns: repeat(4, 1fr); } }
.process-mini-step { background: var(--fg); padding: 28px 28px 30px; }
.process-mini-step .num { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--accent); margin-bottom: 20px; }
.process-mini-step h3 { font-size: 1rem; color: var(--bg); margin-bottom: 8px; }
.process-mini-step p { font-size: 13px; color: rgba(247,247,244,0.65); }

/* ---------- Related services ---------- */
.related-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 28px 24px; background: var(--bg);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  display: flex; flex-direction: column;
}
.related-card:hover { border-color: var(--stone); box-shadow: var(--shadow-soft); }
.related-card .rc-icon {
  width: 36px; height: 36px; background: var(--fg); color: var(--bg);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.related-card h3 { font-size: 1rem; margin-bottom: 8px; }
.related-card p { font-size: 13px; color: var(--fg-soft); margin-bottom: 16px; flex: 1; }
.related-card a {
  font-size: 13px; font-weight: 500; color: var(--fg);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 200ms var(--ease);
}
.related-card a:hover { color: var(--accent); }

/* ---------- CTA strip (accent green) ---------- */
.cta-strip {
  background: var(--accent); color: #fff;
  padding: 80px 0; text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.875rem, 1rem + 2.5vw, 3rem);
  color: #fff; margin-bottom: 16px; font-weight: 600;
}
.cta-strip p { color: rgba(255,255,255,0.82); max-width: 38rem; margin: 0 auto 36px; font-size: 1.0625rem; }
.cta-strip .btn--primary { background: #fff; color: var(--accent); }
.cta-strip .btn--primary:hover { background: rgba(255,255,255,0.92); }
.cta-strip .btn--outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.cta-strip .btn--outline:hover { background: rgba(255,255,255,0.1); }
.cta-strip .row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-strip .eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
.cta-strip .eyebrow::before { background: rgba(255,255,255,0.5); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; gap: 64px; align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 5fr 4fr; } }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 14px; font-weight: 500; color: var(--fg); }
.form-label .req { color: var(--accent); margin-left: 1px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2355606D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-hint { font-size: 12px; color: var(--muted); line-height: 1.5; }
.form-submit { align-self: flex-start; }

.form-sent {
  padding: 40px 0 24px;
}
.form-sent-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-sent h2 {
  font-size: 1.5rem; margin: 0 0 12px;
}
.form-sent > p {
  color: var(--fg-soft); font-size: 15px; line-height: 1.7; margin: 0 0 8px;
}
.form-sent-sub { font-size: 14px; color: var(--muted); }
.form-sent-sub a { color: var(--accent); font-weight: 600; }

.form-error {
  display: none;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-left: 3px solid #c53030;
  color: #c53030; border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: 14px; font-weight: 500; line-height: 1.5; margin-bottom: 24px;
}
.form-error.visible { display: block; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-input.is-invalid, .form-textarea.is-invalid, .form-select.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-field-error { font-size: 12px; color: #c0392b; font-family: 'Inter', sans-serif; }

.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.contact-info-box {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 28px 24px; background: var(--bg);
}
.contact-info-box h3 { font-size: 1rem; margin-bottom: 20px; }
.contact-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--fg-soft); margin-bottom: 16px;
}
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-row svg { flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.contact-info-row a { color: var(--fg-soft); transition: color 200ms var(--ease); }
.contact-info-row a:hover { color: var(--accent); }
.contact-info-row p { line-height: 1.5; }

/* ---------- FAQ (details/summary) ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 500; font-size: 15px;
  list-style: none; gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-icon { flex-shrink: 0; color: var(--slate); transition: transform 200ms var(--ease); }
details[open] .faq-q .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 0 20px; font-size: 14px; color: var(--fg-soft); line-height: 1.65; max-width: 600px; }

/* ---------- Section intro (tighter than section-head) ---------- */
.section-intro { max-width: 640px; margin-bottom: 56px; }
.section-intro .section-title { margin-top: 4px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: var(--fg); color: var(--bg);
  border-color: var(--fg);
  box-shadow: var(--shadow-elevated);
}

.pricing-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: var(--radius-sm);
  margin-bottom: 18px; align-self: flex-start;
}
.pricing-label {
  display: inline-flex; align-items: center;
  font-size: 10px; padding: 4px 10px;
  margin-bottom: 18px; align-self: flex-start;
  visibility: hidden;
}

.pricing-name {
  font-family: 'Manrope', sans-serif; font-size: 1.125rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.pricing-tagline {
  font-size: 13px; color: var(--fg-soft); margin-bottom: 24px; line-height: 1.55;
}
.pricing-card.featured .pricing-tagline { color: rgba(247,247,244,0.65); }

.pricing-price-row {
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-price-row { border-bottom-color: rgba(247,247,244,0.12); }
.pricing-from {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 4px;
}
.pricing-card.featured .pricing-from { color: rgba(247,247,244,0.45); }
.pricing-price {
  font-family: 'Manrope', sans-serif; font-size: 3rem; font-weight: 600;
  letter-spacing: -0.04em; line-height: 1; color: var(--fg);
}
.pricing-card.featured .pricing-price { color: var(--bg); }

.pricing-features {
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 32px; flex: 1; list-style: none; padding: 0;
}
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-soft); line-height: 1.45;
}
.pricing-card.featured .pricing-feature { color: rgba(247,247,244,0.8); }
.pricing-feature .pf-check {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--accent);
}

.pricing-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 48px; padding: 0 22px;
  font-size: 14px; font-weight: 500; font-family: inherit;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.pricing-card:not(.featured) .pricing-cta { background: var(--fg); color: var(--bg); }
.pricing-card:not(.featured) .pricing-cta:hover { background: #2c333a; }
.pricing-card.featured .pricing-cta { background: var(--bg); color: var(--fg); }
.pricing-card.featured .pricing-cta:hover { background: rgba(247,247,244,0.9); }
.pricing-cta .arrow { transition: transform 200ms var(--ease); }
.pricing-cta:hover .arrow { transform: translate(2px,-2px); }

.pricing-note {
  font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5;
}
.pricing-card.featured .pricing-note { color: rgba(247,247,244,0.35); }

.pricing-reassurance {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(63,106,87,0.2);
  border-radius: var(--radius);
  color: var(--fg);
}
.pricing-reassurance svg { flex-shrink: 0; color: var(--accent); }
.pricing-reassurance p { font-size: 14px; line-height: 1.5; margin: 0; }

/* ---------- Pricing period (e.g. /mo) ---------- */
.pricing-period { font-size: 15px; font-weight: 400; opacity: 0.5; font-family: 'Inter', sans-serif; }

/* ---------- Section sub-description ---------- */
.section-sub {
  font-size: 15px; color: var(--fg-soft); line-height: 1.65;
  margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center;
}

/* ---------- Platform / social content showcase ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  row-gap: 20px;
  margin-top: 52px;
  align-items: start;
}
.platform-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  align-items: start;
}
@media (max-width: 860px) {
  .platform-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .platform-card { display: flex; flex-direction: column; gap: 18px; grid-row: auto; }
}
.platform-head { display: flex; align-items: center; gap: 10px; }
.platform-ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.platform-ico--fb { background: #1877F2; }
.platform-ico--ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.platform-ico--tt { background: #010101; }
.platform-name {
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--fg); letter-spacing: -0.01em;
}
.platform-desc { font-size: 13px; color: var(--fg-soft); line-height: 1.65; margin: 0; }

/* Floating metric bubble */
.mock-post-wrap { position: relative; }
.mock-metric {
  position: absolute; top: -14px; right: -10px;
  background: var(--fg); color: var(--bg);
  border-radius: 10px; padding: 10px 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px;
  line-height: 1; text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  z-index: 2; pointer-events: none;
}
.mock-metric span {
  display: block; font-size: 9px; font-weight: 500; opacity: 0.6;
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}

/* Facebook mock */
.mock-post--fb {
  background: #fff; border: 1px solid #ddd;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  font-family: 'Inter', sans-serif;
}
.mock-post-top { display: flex; align-items: center; gap: 8px; padding: 10px 12px 6px; }
.mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--stone); flex-shrink: 0; }
.mock-biz { font-size: 13px; font-weight: 600; color: #050505; margin: 0; }
.mock-meta { font-size: 11px; color: #65676B; margin: 0; }
.mock-body { font-size: 13px; color: #050505; padding: 4px 12px 10px; line-height: 1.45; margin: 0; }
.mock-img { width: 100%; height: 120px; }
.mock-img--warm { background: linear-gradient(135deg, #ede3d5 0%, #d4b896 55%, #b89070 100%); }
.mock-img--salon { background: linear-gradient(135deg, #f5e6d3 0%, #e0c4a0 50%, #c9a070 100%); }
.mock-fb-bar { display: flex; padding: 4px; border-top: 1px solid #e4e6ea; }
.mock-fb-bar span {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 500; color: #65676B; padding: 5px 0;
}

/* Instagram mock */
.mock-post--ig {
  background: #fff; border: 1px solid #dbdbdb;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  font-family: 'Inter', sans-serif;
}
.mock-ig-top { display: flex; align-items: center; gap: 8px; padding: 10px 12px; }
.mock-avatar--ig {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  padding: 2px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mock-avatar--ig::after {
  content: ''; width: 24px; height: 24px;
  border-radius: 50%; background: #c9a070;
  display: block; border: 1.5px solid #fff;
}
.mock-ig-handle { font-size: 12px; font-weight: 600; color: #262626; margin: 0; }
.mock-ig-loc { font-size: 10px; color: #8e8e8e; margin: 0; }
.mock-ig-img { width: 100%; height: 140px; }
.mock-ig-actions {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px 2px; font-size: 17px; line-height: 1;
}
.mock-ig-likes { font-size: 12px; font-weight: 600; color: #262626; padding: 2px 12px; margin: 0; }
.mock-ig-caption { font-size: 11px; color: #262626; padding: 2px 12px 12px; line-height: 1.4; margin: 0; }

/* TikTok mock */
.mock-post--tt {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.28);
  position: relative; background: #111;
  min-height: 220px; display: flex;
}
.mock-tt-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.mock-tt-bg svg { width: 100%; height: 100%; display: block; }
.mock-tt-content {
  position: relative; z-index: 1;
  display: flex; width: 100%; padding: 14px 12px;
}
.mock-tt-main {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  gap: 4px; padding-right: 8px;
}
.mock-tt-username { font-size: 13px; font-weight: 700; color: #fff; margin: 0; }
.mock-tt-caption { font-size: 11px; color: rgba(255,255,255,0.85); line-height: 1.4; margin: 0; }
.mock-tt-tags { font-size: 10px; color: #69c9d0; margin: 0; }
.mock-tt-bar { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 10px; color: rgba(255,255,255,0.65); }
.mock-tt-right { display: flex; flex-direction: column; align-items: center; gap: 14px; justify-content: flex-end; }
.mock-tt-action { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #fff; }
.mock-tt-count { font-size: 10px; color: rgba(255,255,255,0.8); }

/* TikTok play button */
.mock-play-btn {
  position: absolute; top: 38%; left: 40%;
  transform: translate(-50%, -50%); z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.55);
  pointer-events: none;
}
.mock-play-btn::after {
  content: '';
  position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.85);
}

/* Facebook café image */
.mock-img--cafe {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.mock-img--cafe svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.mock-img-overlay {
  padding: 8px 10px; display: flex; flex-direction: column; gap: 3px;
  position: relative; z-index: 1;
}
.mock-img-headline {
  font-size: 11px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,0.7);
  margin: 0; font-family: 'Inter', sans-serif; line-height: 1.3;
}
.mock-place-tag {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,0.45); color: #fff;
  font-size: 9px; padding: 2px 6px; border-radius: 3px;
  font-family: 'Inter', sans-serif; width: fit-content;
}

/* Instagram before/after image */
.mock-img--ba { display: flex; overflow: hidden; }
.mock-ba-half { flex: 1; display: flex; align-items: flex-end; padding: 6px; }
.mock-ba-before { background: linear-gradient(150deg, #ccc6c0 0%, #8c8480 100%); }
.mock-ba-after { background: linear-gradient(150deg, #e8c89a 0%, #c8915a 100%); }
.mock-ba-divider { width: 2px; background: rgba(255,255,255,0.9); flex-shrink: 0; }
.mock-ba-label {
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(0,0,0,0.4); color: #fff;
  padding: 2px 5px; border-radius: 3px;
  font-family: 'Inter', sans-serif;
}

/* ---------- Portfolio / case study cards ---------- */
.portfolio-grid { display: grid; gap: 28px; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.portfolio-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: var(--stone);
}
.portfolio-card .pc-img {
  position: relative; aspect-ratio: 16 / 10;
  overflow: hidden; background: var(--stone-soft);
}
.portfolio-card .pc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.portfolio-card:hover .pc-img img { transform: scale(1.04); }

.portfolio-card .pc-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(247,247,244,0.95); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 500; color: var(--fg);
}
.portfolio-card .pc-body {
  padding: 24px 24px 20px;
  display: flex; flex-direction: column; flex: 1;
}
.portfolio-card .pc-title {
  font-family: 'Manrope', sans-serif; font-size: 1.0625rem; font-weight: 600;
  margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.2;
}
.portfolio-card .pc-desc {
  font-size: 13px; color: var(--fg-soft); line-height: 1.6;
  margin-bottom: 18px; flex: 1;
}
.portfolio-card .pc-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.portfolio-card .pc-result-num {
  font-family: 'Manrope', sans-serif; font-size: 1.375rem; font-weight: 600;
  color: var(--accent); flex-shrink: 0; letter-spacing: -0.02em;
}
.portfolio-card .pc-result-lbl {
  font-size: 12px; color: var(--fg-soft); line-height: 1.4;
}
.portfolio-card .pc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--fg);
  transition: color 200ms var(--ease);
  padding-top: 16px; margin-top: auto;
  border-top: 1px solid var(--border);
}
.portfolio-card .pc-link:hover { color: var(--accent); }

/* Portfolio section intro with subtitle */
.portfolio-intro { margin-bottom: 56px; }
.portfolio-intro .section-title { margin-top: 4px; margin-bottom: 16px; }
.portfolio-intro .portfolio-sub { font-size: 15px; color: var(--fg-soft); line-height: 1.65; max-width: 44rem; }
