
/* ─── Tokens ─── */
:root {
  --bg:       #f5f4f0;
  --black:    #111110;
  --graphite: #2c2c2b;
  --muted:    #6b6b69;
  --border:   #d8d6d0;
  --yellow:   #e8c614;
  --white:    #ffffff;

  --font-display: 'Helvetica Neue', 'Arial', sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --radius-sm: 2px;
  --radius:    4px;

  --nav-h: 72px;

  /* WordPress/FSE token aliases. These map to the visual tokens above and should not change the preview rendering. */
  --wp--preset--color--background: var(--bg);
  --wp--preset--color--foreground: var(--black);
  --wp--preset--color--primary: var(--yellow);
  --wp--preset--color--contrast: var(--white);
  --wp--preset--font-family--display: var(--font-display);
  --wp--preset--font-family--body: var(--font-body);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ─── Utility ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--nav-h);
  border-bottom: 1px solid #222;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  /* Logo must be readable in the header. */
  min-width: 160px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.15s;
}
.nav-phone:hover { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--yellow);
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 10px 18px;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: #d4b310; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: var(--graphite); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { font-size: 15px; padding: 14px 28px; }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 768px) {
  .nav-phone { display: none; }
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100dvh - var(--nav-h));
  background: var(--black);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--yellow);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%) contrast(1.05);
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,16,0.35) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 24px 48px;
    order: 2;
  }
  .hero-right {
    height: 340px;
    order: 1;
  }
}
@media (max-width: 600px) {
  .hero-left { padding: 48px 20px 44px; }
  .hero-right { height: 260px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ─── Section base ─── */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--white);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.section-dark .section-tag { color: rgba(255,255,255,0.38); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 48px;
}
.section-dark .section-title { color: var(--white); }

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

/* ─── Services (numbered index bands) ─── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--border);
  gap: 24px;
}
.services-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.6;
}
.service-list { list-style: none; }
.service-list a.service-item { color: inherit; }
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 0 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.service-item:hover { background: rgba(0,0,0,0.02); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 2px;
}
.service-content { min-width: 0; }
.service-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--black);
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
}
.service-arrow {
  color: var(--muted);
  opacity: 0.4;
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .services-header { flex-direction: column; align-items: flex-start; }
  .service-item {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
  }
  .service-arrow { display: none; }
}

/* ─── Stefan section ─── */
.stefan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stefan-img-wrap {
  position: relative;
}
.stefan-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%);
}
.stefan-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  right: 16px;
  top: 16px;
  border: 2px solid var(--yellow);
  z-index: -1;
  pointer-events: none;
}
.stefan-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}
.stefan-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.stefan-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.stefan-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stefan-fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stefan-fact-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}
.stefan-fact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  padding-top: 6px;
}
.stefan-fact-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .stefan-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stefan-img-wrap { max-width: 420px; }
  .stefan-img-wrap::before { display: none; }
}

/* ─── Werkwijze (process) ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 36px;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--black);
}
.process-step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .process-step {
    padding: 32px 24px 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process-step:nth-child(odd) { padding-right: 24px; }
  .process-step:nth-child(even) { padding-left: 24px; padding-right: 0; border-left: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; padding: 28px 0; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(even) { border-left: none; padding-left: 0; }
}

/* ─── Contact section ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--black);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-submit { margin-top: 8px; width: 100%; }

.contact-sidebar {
  background: var(--black);
  padding: 40px 36px;
  border-top: 3px solid var(--yellow);
}
.contact-sidebar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--white);
  line-height: 1.45;
}
.contact-detail-value a {
  color: var(--white);
  transition: color 0.15s;
}
.contact-detail-value a:hover { color: var(--yellow); }
.contact-whatsapp-btn {
  margin-top: 28px;
  width: 100%;
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.1s;
}
.contact-whatsapp-btn:active { transform: translateY(1px); }
.contact-whatsapp-btn:hover { background: #1eba58; }

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-sidebar { max-width: 480px; }
}

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  padding: 48px 0 32px;
  border-top: 1px solid #1e1e1e;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  min-width: 140px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-details {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.footer-details a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-details a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Mobile sticky bar ─── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 11px 8px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
  color: var(--white);
  text-decoration: none;
}
.mobile-bar-btn:active { transform: scale(0.97); }
.mobile-bar-btn-call { background: var(--yellow); color: var(--black); }
.mobile-bar-btn-wa { background: #25d366; }
.mobile-bar-btn-offerte { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.mobile-bar-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-bar-btn-call svg { stroke: var(--black); }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ─── Divider stripe ─── */
.yellow-stripe {
  height: 3px;
  background: var(--yellow);
}


/* Preview brand fix: transparent split logo with the original double-7 symbol separated from the wordmark. */
.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img,
.footer-logo img {
  display: block !important;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
  opacity: 1 !important;
  background: transparent !important;
}
.nav-logo img {
  height: 46px;
  max-width: 220px;
}
.footer-logo img {
  height: 36px;
  max-width: 195px;
}
@media (max-width: 768px) {
  .nav-logo img { height: 40px; max-width: 188px; }
}


/* WordPress package additions */
main { min-height: 60vh; }
.wp-site-blocks { background: var(--bg); }
.site-main { display: block; }
.narrow-content { max-width: 860px; }
.wp-block-post-content { margin-block-start: 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.15s;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
.nav-links a[aria-current="page"],
.nav-links a[aria-current="true"] { color: var(--yellow); }
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.footer-logo .brand-wordmark {
  min-height: 36px;
  font-size: 22px;
}
.mobile-site-nav {
  display: none;
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.04em;
}
.mobile-menu-toggle svg,
.mobile-menu-close svg {
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-menu-dialog {
  --mobile-menu-duration: 280ms;
  --mobile-menu-ease: cubic-bezier(0.22, 1, 0.36, 1);
  width: min(100vw, 440px);
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0 0 0 auto;
  border: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  box-shadow: -20px 0 60px rgba(0,0,0,0.28);
  transition:
    opacity var(--mobile-menu-duration) var(--mobile-menu-ease),
    transform var(--mobile-menu-duration) var(--mobile-menu-ease),
    display var(--mobile-menu-duration),
    overlay var(--mobile-menu-duration);
  transition-behavior: allow-discrete;
}
.mobile-menu-dialog:not([open]):not([data-fallback-open="true"]) {
  display: none;
}
.mobile-menu-dialog[open],
.mobile-menu-dialog[data-fallback-open="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mobile-menu-dialog[data-menu-state="closing"] {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
}
@starting-style {
  .mobile-menu-dialog[open] {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }
}
.mobile-menu-dialog::backdrop {
  background: rgba(0,0,0,0);
  transition:
    background var(--mobile-menu-duration) var(--mobile-menu-ease),
    display var(--mobile-menu-duration),
    overlay var(--mobile-menu-duration);
  transition-behavior: allow-discrete;
}
.mobile-menu-dialog[open]::backdrop {
  background: rgba(0,0,0,0.62);
}
.mobile-menu-dialog[data-menu-state="closing"]::backdrop {
  background: rgba(0,0,0,0);
}
@starting-style {
  .mobile-menu-dialog[open]::backdrop {
    background: rgba(0,0,0,0);
  }
}
.mobile-menu-dialog[data-fallback-open="true"] {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 500;
  display: block;
}
.mobile-menu-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 28px;
  padding: 22px;
  padding-top: calc(18px + env(safe-area-inset-top));
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-menu-shell > * {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 220ms var(--mobile-menu-ease),
    transform 220ms var(--mobile-menu-ease);
}
.mobile-menu-dialog[data-menu-state="open"] .mobile-menu-shell > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mobile-menu-dialog[data-menu-state="open"] .mobile-menu-shell > *:nth-child(2) { transition-delay: 35ms; }
.mobile-menu-dialog[data-menu-state="open"] .mobile-menu-shell > *:nth-child(3) { transition-delay: 70ms; }
.mobile-menu-dialog[data-menu-state="open"] .mobile-menu-shell > *:nth-child(4) { transition-delay: 105ms; }
.mobile-menu-dialog[data-menu-state="closing"] .mobile-menu-shell > * {
  opacity: 0;
  transform: translate3d(0, 4px, 0);
  transition-delay: 0ms;
  transition-duration: 120ms;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-menu-head p,
.mobile-menu-services > p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.mobile-menu-nav {
  display: grid;
  gap: 4px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 8vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}
.mobile-menu-nav a[aria-current="page"],
.mobile-menu-nav a[aria-current="true"] {
  color: var(--yellow);
}
.mobile-menu-services {
  display: grid;
  gap: 12px;
}
.mobile-menu-services div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-menu-services a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 650;
}
.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.mobile-menu-actions .btn {
  min-height: 48px;
  width: 100%;
}
.mobile-menu-actions .btn-ghost {
  border-color: rgba(255,255,255,0.22);
}
.mobile-menu-actions .btn-outline {
  border-color: #25d366;
  background: #25d366;
  color: var(--black);
}
.mobile-menu-actions .btn-outline:hover {
  background: #25d366;
  color: var(--black);
}
html.mobile-menu-open,
body.mobile-menu-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu-dialog {
    --mobile-menu-duration: 90ms;
    transform: none;
  }
  .mobile-menu-dialog[open],
  .mobile-menu-dialog[data-fallback-open="true"],
  .mobile-menu-dialog[data-menu-state="closing"] {
    transform: none;
  }
  .mobile-menu-shell > *,
  .mobile-menu-dialog[data-menu-state="open"] .mobile-menu-shell > *,
  .mobile-menu-dialog[data-menu-state="closing"] .mobile-menu-shell > * {
    transform: none;
    transition-duration: 90ms;
    transition-delay: 0ms;
  }
}
.mobile-site-nav a[aria-current="page"],
.mobile-site-nav a[aria-current="true"] {
  color: var(--yellow);
  border-color: rgba(255,204,0,0.42);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(232,198,20,0.72);
}
.mobile-bar-btn-wa { color: var(--black); }
form label {
  cursor: pointer;
}

/* Motion is progressive enhancement: content stays visible until JS enables it. */
:root {
  --motion-duration-fast: 150ms;
  --motion-duration: 420ms;
  --motion-distance: 14px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: seven-e-page-out 200ms ease both;
}
::view-transition-new(root) {
  animation: seven-e-page-in 340ms var(--motion-ease) both;
}
@keyframes seven-e-page-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes seven-e-page-in {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.motion-ready:not(.motion-reduced) [data-motion-load],
.motion-ready:not(.motion-reduced) [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
  transition-delay: calc(var(--motion-index, 0) * 45ms);
}
.motion-ready:not(.motion-reduced) [data-motion-load]:not(.is-visible),
.motion-ready:not(.motion-reduced) [data-reveal]:not(.is-visible) {
  will-change: opacity, transform;
}
.motion-ready:not(.motion-reduced) [data-motion-load].is-visible,
.motion-ready:not(.motion-reduced) [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
  [data-motion-load],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn:active,
  .contact-whatsapp-btn:active,
  .mobile-bar-btn:active,
  .service-choice-card:hover,
  .service-choice-card:hover .service-choice-media img,
  .service-item:hover .service-arrow {
    transform: none !important;
  }
}
.service-arrow {
  transition: opacity var(--motion-duration-fast), transform var(--motion-duration-fast);
}
.service-item:hover .service-arrow {
  opacity: 0.75;
  transform: translateX(3px);
}
.process-section .section-tag {
  margin-bottom: 12px;
}
.process-section .section-title {
  max-width: 760px;
  margin-bottom: 26px;
}
.process-section .process-steps {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-section .process-step {
  padding: 30px 28px;
}
.process-section .process-step:first-child {
  padding-left: 0;
}
.process-section .process-step-title {
  margin-bottom: 8px;
}
.process-step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .process-section .process-step {
    padding: 28px 24px;
  }
  .process-section .process-step:first-child {
    padding-left: 0;
  }
}
@media (max-width: 560px) {
  .process-section .section-title {
    margin-bottom: 18px;
  }
  .process-section .process-step,
  .process-section .process-step:first-child {
    padding: 22px 0;
  }
}
.page-hero {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 72px;
  align-items: end;
  min-height: 430px;
  padding-block: 96px 72px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.breadcrumb a { color: rgba(255,255,255,0.62); }
.breadcrumb a:hover { color: var(--yellow); }
.page-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 860px;
}
.page-title em { color: var(--yellow); font-style: normal; }
.page-intro {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.6;
}
.page-side-note {
  border-left: 2px solid var(--yellow);
  padding-left: 22px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
}
.page-side-note strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}
.page-side-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.page-side-actions .btn {
  min-height: 44px;
}
.service-index {
  list-style: none;
  border-top: 1px solid var(--border);
}
.service-index-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
}
.service-index-item:hover .service-index-title { color: var(--yellow); }
.service-index-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.service-index-title {
  display: block;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.08;
  transition: color 0.15s;
}
.service-index-text {
  display: block;
  max-width: 640px;
  margin-top: 8px;
  color: var(--muted);
}
.service-index-arrow {
  font-size: 34px;
  color: var(--yellow);
}
.service-name,
.service-desc {
  display: block;
}
.issue-grid,
.service-card-grid,
.mini-process,
.statement-grid,
.work-method-grid,
.fit-grid,
.contact-page-grid,
.detail-layout,
.profile-band {
  display: grid;
}
.issue-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.issue-card {
  background: var(--white);
  padding: 28px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--black);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.issue-card:hover,
.issue-card:focus-visible {
  color: var(--black);
  transform: translateY(-2px);
}
.issue-card span,
.service-choice-meta,
.mini-process-step span,
.work-method-card span,
.quote-panel figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.issue-card span { color: var(--muted); }
.issue-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 18px;
}
.issue-card p {
  color: var(--muted);
  margin-top: 18px;
}
.audience-note {
  margin-top: 24px;
  border-left: 3px solid var(--yellow);
  background: var(--white);
  padding: 22px 24px;
}
.audience-note strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}
.audience-note p {
  color: var(--muted);
  max-width: 780px;
}
.service-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-choice-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--black);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.service-choice-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.service-choice-card:nth-child(5) { grid-column: 1 / -1; }
.service-choice-media {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-choice-media img,
.service-detail-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.service-choice-media img {
  height: 100%;
  transition: transform var(--motion-duration-fast);
}
.service-choice-card:hover .service-choice-media img { transform: scale(1.012); }
.service-image-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  background: rgba(17,17,16,0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-choice-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 30px;
}
.service-choice-meta {
  color: var(--muted);
  margin-bottom: 18px;
}
.service-choice-card h2,
.content-block h2,
.detail-sidebar h2,
.cta-band h2,
.form-fieldset legend {
  font-family: var(--font-display);
  line-height: 1.05;
}
.service-choice-card h2 {
  font-size: clamp(28px, 3vw, 46px);
  margin-bottom: 18px;
}
.service-choice-card p {
  color: var(--muted);
  max-width: 560px;
}
.service-choice-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.service-choice-points li {
  border: 1px solid var(--border);
  padding: 7px 10px;
  font-size: 12px;
  color: var(--graphite);
}
.service-choice-arrow {
  color: var(--yellow);
  font-size: 38px;
  line-height: 1;
}
.service-detail-media {
  position: relative;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  background: var(--black);
  overflow: hidden;
}
.service-detail-media img {
  height: auto;
  aspect-ratio: 3 / 2;
}
.mini-process {
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.mini-process-step {
  padding: 26px;
  border-right: 1px solid var(--border);
}
.mini-process-step:last-child { border-right: 0; }
.mini-process-step span {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
}
.mini-process-step strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
.mini-process-step p {
  color: var(--muted);
  font-size: 14px;
}
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 3px solid var(--yellow);
}
.cta-band h2 {
  font-size: clamp(30px, 3vw, 52px);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.62);
  max-width: 640px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}
.content-block + .content-block { margin-top: 64px; }
.content-block h2,
.detail-sidebar h2 {
  font-size: clamp(28px, 3vw, 48px);
  margin-bottom: 28px;
}
.detail-sidebar,
.detail-sidebar h2 {
  overflow-wrap: anywhere;
}
.detail-sidebar h2 {
  font-size: clamp(26px, 2.2vw, 36px);
}
.check-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--graphite);
}
.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 10px;
  background: var(--yellow);
  border-radius: 50%;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--border);
  background: var(--white);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}
.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted);
}
.detail-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  background: var(--black);
  color: var(--white);
  padding: 32px;
  border-top: 3px solid var(--yellow);
}
.detail-sidebar p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.side-actions {
  display: grid;
  gap: 10px;
}
.side-actions .btn { min-height: 48px; }
.service-compact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.service-compact-list a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.service-compact-list a:hover,
.service-compact-list a[aria-current="page"] {
  color: var(--yellow);
}
.profile-band {
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: center;
}
.profile-band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.statement-grid {
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.statement {
  padding: 28px;
  border-right: 1px solid var(--border);
}
.statement:last-child { border-right: 0; }
.statement strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.statement span { color: var(--muted); }
.proof-section .section-title {
  max-width: 760px;
  margin-bottom: 28px;
}
.proof-grid {
  margin-bottom: 24px;
}
.proof-note {
  max-width: 760px;
  color: var(--muted);
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.story-panel { max-width: 620px; }
.story-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-top: 18px;
}
.quote-panel {
  margin-top: 34px;
  padding: 28px;
  background: var(--black);
  color: var(--white);
  border-left: 3px solid var(--yellow);
}
.quote-panel blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.08;
}
.quote-panel figcaption {
  margin-top: 18px;
  color: rgba(255,255,255,0.5);
}
.work-method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.work-method-card {
  background: var(--black);
  padding: 32px;
  color: var(--white);
}
.work-method-card span {
  display: block;
  color: var(--yellow);
  margin-bottom: 18px;
}
.work-method-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}
.work-method-card p { color: rgba(255,255,255,0.58); }
.fit-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fit-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 32px;
}
.fit-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.fit-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.fit-card li {
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.fit-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-page-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}
.form-fieldset {
  border: 0;
  display: grid;
  gap: 18px;
}
.form-fieldset legend {
  font-size: clamp(28px, 3vw, 46px);
  margin-bottom: 28px;
}
.form-help {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}
.contact-note {
  color: var(--muted);
  margin-top: 24px;
}
.contact-card {
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--yellow);
  padding: 32px;
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.contact-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.contact-card a {
  display: block;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-card a:hover {
  color: var(--yellow);
}
.form-placeholder {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 32px;
}
.form-placeholder h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.form-placeholder p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-placeholder input,
.form-placeholder select,
.form-placeholder textarea {
  width: 100%;
}
.projects-section {
  background: var(--bg);
}
.project-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
}
.project-card a {
  display: grid;
  color: inherit;
  min-height: 100%;
}
.project-card-media,
.project-card-placeholder,
.project-detail-placeholder {
  display: grid;
  place-items: center;
  background: #eceae3;
  color: var(--muted);
}
.project-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card-placeholder span,
.project-detail-placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-card-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}
.project-card-body span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-card-body h3 {
  font-size: 22px;
  line-height: 1.15;
}
.project-card-body p,
.empty-proof-panel p,
.review-copy p,
.google-review-card p {
  color: var(--muted);
  line-height: 1.65;
}
.empty-proof-panel {
  border: 1px solid var(--border);
  background: var(--white);
  padding: clamp(28px, 5vw, 56px);
  margin-top: 32px;
  max-width: 860px;
}
.empty-proof-panel h2,
.empty-proof-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.empty-proof-panel .btn {
  margin-top: 22px;
}
.project-detail-placeholder {
  min-height: 360px;
}
.review-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}
.review-copy {
  max-width: 760px;
}
.review-copy .section-title {
  margin-bottom: 18px;
}
.review-summary {
  min-width: 220px;
  border-top: 3px solid var(--yellow);
  background: var(--white);
  padding: 24px;
}
.review-summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 74px);
  line-height: 0.9;
}
.review-summary span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.google-review-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--yellow);
  background: var(--white);
  padding: 26px;
}
.google-review-card p {
  font-size: 18px;
  color: var(--black);
}
.google-review-card footer {
  display: grid;
  gap: 5px;
  margin-top: 28px;
}
.google-review-card footer strong {
  font-size: 15px;
}
.google-review-card footer span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.btn-disabled {
  background: #eceae3;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: not-allowed;
}
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field select,
.wpforms-container .wpforms-field textarea {
  width: 100% !important;
  max-width: 100% !important;
}
.wpforms-container .wpforms-field-small,
.wpforms-container .wpforms-field-medium,
.wpforms-container .wpforms-field-large {
  max-width: 100% !important;
}
.section-dark .section-tag,
.contact-detail-label,
.footer,
.footer-details a,
.breadcrumb {
  color: rgba(255,255,255,0.62);
}
.footer-details a:hover,
.breadcrumb a {
  color: rgba(255,255,255,0.78);
}
@media (max-width: 980px) {
  .page-hero-inner,
  .detail-layout,
  .profile-band,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-sidebar { position: static; }
  .statement-grid { grid-template-columns: 1fr; }
  .issue-grid,
  .service-card-grid,
  .mini-process,
  .fit-grid,
  .work-method-grid {
    grid-template-columns: 1fr;
  }
  .service-choice-card:nth-child(5) { grid-column: auto; }
  .cta-band,
  .review-header,
  .google-review-grid { grid-template-columns: 1fr; }
  .review-summary { min-width: 0; }
  .review-actions { justify-content: flex-start; }
  .statement {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .statement:last-child { border-bottom: 0; }
}
@media (max-width: 900px) {
  .nav-inner {
    min-height: var(--nav-h);
  }
  .nav-actions { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .brand-wordmark { font-size: 20px; }
  .page-hero-inner { min-height: auto; padding-block: 64px 52px; }
  .service-index-item { grid-template-columns: 44px minmax(0, 1fr); }
  .service-index-arrow { display: none; }
  .service-choice-card { grid-template-columns: 1fr; }
  .service-choice-body { padding: 26px; }
  .service-choice-arrow { display: none; }
  .cta-band { padding: 32px; }
}
