/* =========================================================
   TECNOCOR — PINTURAS RESIDENCIAIS
   Design tokens replicados do site original (Lovable)
   ========================================================= */

:root {
  --bg: #ffffff;
  --fg: #14233a;
  --muted-fg: #637283;
  --primary: #208cd5;
  --primary-dark: #1a75b3;
  --navy: #14233a;
  --navy-deep: #0c1826;
  --secondary-bg: #eaf4fb;
  --muted-bg: #f3f5f7;
  --border: #e3e7eb;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow: 0 10px 30px -12px rgba(20, 35, 58, 0.15);
  --shadow-sm: 0 4px 14px -6px rgba(20, 35, 58, 0.12);
  --container: 1400px;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], #topo { scroll-margin-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--muted-fg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.9em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85em 1.6em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-pill { border-radius: 999px; }
.btn-lg { padding: 1em 1.9em; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #eef6fc; transform: translateY(-1px); }

.btn-phone { padding: 0.6em 1.3em; font-size: 0.88rem; }

/* Signature notched corner on primary CTAs, instead of a plain pill */
.btn-cut {
  border-radius: 10px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

/* Text-link style secondary action (replaces the generic outline pill) */
.btn-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0.85em 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.btn-link-light::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0.6em;
  height: 2px;
  background: #5eb8ec;
  transition: right 0.25s ease;
}
.btn-link-light:hover::after { right: 0; }
.btn-link-light svg { transition: transform 0.2s ease; }
.btn-link-light:hover svg { transform: translateY(2px); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.55em 1.1em;
  border-radius: 999px;
}
.badge-light { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.55em 1.1em 0.55em 0.9em;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5eb8ec;
  box-shadow: 0 0 0 4px rgba(94,184,236,0.25);
  flex-shrink: 0;
}

/* Paint-swipe highlight behind key words in headings */
.marker {
  background-image: linear-gradient(120deg, rgba(32,140,213,0.32) 0%, rgba(32,140,213,0.32) 100%);
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 88%;
  padding: 0 0.06em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  padding: 16px 20px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.2rem;
  height: 58px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  background: #eef1f4;
  border-radius: 999px;
  padding: 0 10px 0 24px;
  box-shadow: 0 14px 32px -14px rgba(0,0,0,0.45), 0 1px 0 rgba(20,35,58,0.04);
}
.header-actions { margin-left: auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: block; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.logo-text small {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
}
.main-nav { display: flex; gap: 1.7rem; white-space: nowrap; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 8.5rem 0 4.5rem;
  background: #0c1826 url("images/hero-bg.jpg") center center / cover no-repeat;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,28,0.55) 0%, rgba(8,16,28,0.78) 65%, rgba(8,16,28,0.92) 100%),
    linear-gradient(100deg, rgba(8,16,28,0.55) 0%, rgba(8,16,28,0.15) 55%, rgba(8,16,28,0.5) 100%);
}
.hero-bg .sheen {
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-160%);
  animation: sheen-sweep 12s ease-in-out infinite;
}
@keyframes sheen-sweep {
  0%, 55% { transform: translateX(-160%); }
  80%, 100% { transform: translateX(260%); }
}
.hero-bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg .sheen { animation: none; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 0.5em;
}
.text-accent { color: #5eb8ec; }
.hero-text { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin: 1.8rem 0 3rem; }

/* Photo collage used in the hero and in "Quem Somos" — straight, uncropped tiles
   (these photos already carry ANTES/DEPOIS labels + the TECNOCOR mark baked in,
   so tilting/overlapping them was cutting that text off) */
.hero-visual { position: relative; padding-bottom: 2.5rem; }
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: 460px;
  margin: 0 auto;
}
.photo-tile {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 20px 45px -18px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.1);
}
.photo-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile-b { margin-top: 2rem; }
.stat-chip {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #fff;
  color: var(--fg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.8rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
.stat-chip strong { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); }
.stat-chip span { font-size: 0.72rem; color: var(--muted-fg); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; }
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.8rem;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero-trust svg { color: #5eb8ec; flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-muted { background: var(--muted-bg); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { font-size: 1.02rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards / Services ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-left-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-left-color: var(--primary); }
.icon-circle {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary-bg);
  color: var(--primary);
  border-radius: 14px;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.icon-circle.small { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 0.4em; position: relative; z-index: 1; }
.service-card p { font-size: 0.92rem; margin: 0; position: relative; z-index: 1; }
.service-card .num {
  position: absolute;
  top: -6px; right: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--muted-bg);
  z-index: 0;
  line-height: 1;
  user-select: none;
}

/* ---------- Serviços (fotos, versão de teste) ---------- */
.services-photo-grid { gap: 1.1rem; }
.service-photo-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 1.6rem 1.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.service-photo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,16,28,0) 40%, rgba(8,16,28,0.55) 72%, rgba(8,16,28,0.88) 100%);
  z-index: -1;
  transition: background 0.25s ease;
}
.service-photo-tile:hover::before { background: linear-gradient(180deg, rgba(8,16,28,0.1) 30%, rgba(8,16,28,0.65) 72%, rgba(8,16,28,0.92) 100%); }
.service-photo-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.service-photo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
@media (max-width: 960px) {
  .service-photo-tile { min-height: 320px; }
}
@media (max-width: 680px) {
  .service-photo-tile { min-height: 300px; }
}

.highlight-banner {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), #4aa8e0);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

/* ---------- Quem Somos ---------- */
.about-visual { position: relative; padding-bottom: 3rem; }
.photo-duo-about { max-width: 480px; margin: 0; }
.photo-duo-about .photo-tile { border: 4px solid #fff; box-shadow: var(--shadow); }

.floating-card {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
.floating-card strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); }
.floating-card span { font-size: 0.82rem; color: var(--muted-fg); }

.about-content p { font-size: 1rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.2rem; margin: 1.6rem 0 2rem; }
.check-list li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 500; }
.check-list svg { flex-shrink: 0; }

.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.mini-card .icon-circle { color: var(--primary); margin-bottom: 0.8rem; }
.mini-card strong { display: block; font-family: var(--font-heading); font-size: 0.92rem; margin-bottom: 0.25em; }
.mini-card span { font-size: 0.82rem; color: var(--muted-fg); }

/* ---------- Como Trabalhamos ---------- */
.steps-grid { gap: 2rem; }
.step-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--secondary-bg);
  -webkit-text-stroke: 1.5px var(--primary);
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.step p { font-size: 0.9rem; }

/* ---------- Trabalhos (masonry de fotos reais) ---------- */
.work-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.work-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-item .work-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(12,24,38,0.88), transparent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.work-item:hover .work-caption { opacity: 1; transform: translateY(0); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-row .icon-circle.small { background: var(--secondary-bg); color: var(--primary); }
.contact-row strong { display: block; font-size: 0.85rem; color: var(--muted-fg); font-weight: 500; }
.contact-row a, .contact-row span { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }
.contact-row a:hover { color: var(--primary); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4em; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--muted-bg);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-note { font-size: 0.78rem; color: var(--muted-fg); text-align: center; margin: 0.9rem 0 0; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--primary) 0%, #2ba0e8 100%);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.cta-final p { color: rgba(255,255,255,0.9); max-width: 560px; margin-left: auto; margin-right: auto; font-size: 1.02rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 1.8rem 0 2.2rem; }
.cta-trust { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ---------- Footer ---------- */
.site-footer { background: #fff; padding-top: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 320px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 1.1rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a, .footer-col span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--muted-fg);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-fg);
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile menu open state ---------- */
.main-nav.open {
  display: flex;
  position: absolute;
  top: calc(100% + 10px); left: 0; right: 0;
  background: #fff;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.main-nav.open a { padding: 0.9rem 24px; border-bottom: 1px solid var(--border); }
.main-nav.open a:last-child { border-bottom: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2-cols { grid-template-columns: 1fr; gap: 4rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .photo-duo { max-width: 340px; }
  .photo-duo-about { max-width: 340px; margin: 0 auto; }
  .work-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { height: 54px; padding: 0 8px 0 18px; }
  .site-header { padding: 12px 14px; }
  .btn-phone span { display: none; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { flex-direction: column; gap: 0.7rem; }
  .section { padding: 3.5rem 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .floating-card { position: static; margin-top: 1rem; max-width: 100%; transform: none; }
  .cta-trust { gap: 1rem; flex-direction: column; }
  .photo-duo { max-width: 280px; }
  .stat-chip { position: static; margin: 1rem auto 0; transform: none; }
  .hero-visual { padding-bottom: 0; }
  .work-masonry { grid-template-columns: 1fr; }
  .service-card .num { font-size: 2.6rem; }
}
