:root {
  --bg: #07070a;
  --bg-soft: #0f1016;
  --panel: rgba(16, 17, 25, 0.74);
  --panel-strong: rgba(18, 20, 31, 0.9);
  --text: #f3f5f7;
  --muted: #a9afb9;
  --line: rgba(255,255,255,0.1);
  --line-strong: rgba(255,255,255,0.16);
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --glow: 139, 92, 246;
  --radius: 24px;
  --shadow: 0 20px 70px rgba(0,0,0,.35);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(67, 56, 202, 0.18), transparent 30%), var(--bg);
  color: var(--text);
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 56px 0;
}

.glass {
  background: var(--panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bg-grid,
.bg-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  opacity: .18;
}

.bg-orb {
  filter: blur(80px);
  opacity: .22;
}
.orb-1 {
  width: 42vw;
  height: 42vw;
  top: 5%;
  left: -12%;
  background: #7c3aed;
  border-radius: 50%;
}
.orb-2 {
  width: 30vw;
  height: 30vw;
  right: -8%;
  top: 30%;
  background: #06b6d4;
  border-radius: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7,7,10,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 30px rgba(var(--glow), .6);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav-inner {
  display: grid;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.quick-nav-wrap {
  position: fixed;
  top: 106px;
  left: 18px;
  z-index: 36;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.quick-nav-toggle {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(13,14,20,.88);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
}
.quick-nav-panel {
  width: 210px;
  padding: 10px;
  border-radius: 22px;
  display: grid;
  gap: 6px;
  transform: translateX(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.quick-nav-wrap.open .quick-nav-panel {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.quick-nav-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
}
.quick-nav-panel a:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
}

.hero {
  padding-top: 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(var(--glow), .9);
}

.hero-copy h1,
.section-head h2,
.value-grid h2,
.contact-band-inner h2 {
  margin: 0;
  line-height: 1;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  letter-spacing: -0.05em;
}
.hero-copy h1 span {
  background: linear-gradient(135deg, #fff, #8b5cf6 45%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.section-head p,
.value-points p,
.timeline-item p,
.faq-item p,
.footer-copy,
.contact-band-inner p,
.project-body p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions,
.project-actions,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  font-weight: 600;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, rgba(139,92,246,.88), rgba(34,211,238,.82));
  border-color: rgba(255,255,255,.14);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.metric-card {
  padding: 18px;
  border-radius: 22px;
}
.metric-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.metric-card span {
  color: var(--muted);
  font-size: .95rem;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-stack {
  position: relative;
  width: 100%;
  min-height: 560px;
}
.floating-panel {
  border-radius: 28px;
}
.panel-main {
  position: absolute;
  inset: 56px 40px 80px 0;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(139,92,246,.2), rgba(34,211,238,.08));
}
.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.panel-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #e5e7eb;
  font-size: .92rem;
}
.panel-main h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.panel-main p {
  color: var(--muted);
  max-width: 34ch;
}
.panel-bars {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.panel-bars span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
}
.panel-bars span:nth-child(1) { width: 100%; }
.panel-bars span:nth-child(2) { width: 82%; }
.panel-bars span:nth-child(3) { width: 68%; }
.panel-side {
  position: absolute;
  right: 0;
  width: min(250px, 46vw);
  padding: 18px;
  background: var(--panel-strong);
}
.panel-side small {
  display: block;
  color: #cbd5e1;
  margin-bottom: 8px;
}
.panel-side strong { font-size: 1rem; line-height: 1.5; }
.panel-side-a { top: 14px; }
.panel-side-b { bottom: 20px; }

.trust-grid {
  padding: 14px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-grid > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}
.trust-grid span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: .88rem;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 14px; }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}
.filter-btn.active {
  background: linear-gradient(135deg, rgba(139,92,246,.28), rgba(34,211,238,.18));
  border-color: rgba(255,255,255,0.14);
}

.portfolio-grid,
.services-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-card,
.service-card,
.timeline-item,
.faq-item {
  border-radius: 28px;
}
.project-card {
  overflow: hidden;
}
.project-card.hidden {
  display: none;
}
.project-preview {
  position: relative;
  min-height: 240px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.project-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,14,.1), rgba(8,9,14,.18) 38%, rgba(8,9,14,.72) 100%);
}
.browser-ui {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.browser-ui span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.mock-title {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-weight: 700;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.mock-layout {
  display: none;
}
.lines-3,
.hero-room,
.food-block,
.two-columns,
.cards-3 { min-height: 116px; }
.lines-3::before,
.lines-3::after,
.lines-3,
.hero-room,
.food-block,
.two-columns,
.cards-3 {
  display: block;
  border-radius: 20px;
}
.lines-3 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.24) 12px, transparent 12px) top/70% 26px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.12) 10px, transparent 10px) 0 42px/92% 20px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.08) 10px, transparent 10px) 0 76px/54% 20px no-repeat;
}
.cards-3 {
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)) 0 0/31% 100% no-repeat,
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)) 34.5% 0/31% 100% no-repeat,
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)) 69% 0/31% 100% no-repeat;
}
.hero-room {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(0deg, rgba(0,0,0,.14), rgba(0,0,0,.14)),
    radial-gradient(circle at 70% 30%, rgba(255,227,166,.65), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
}
.two-columns {
  background:
    linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)) 0 0/48% 100% no-repeat,
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)) 100% 0/48% 100% no-repeat;
}
.food-block {
  background:
    radial-gradient(circle at 30% 35%, rgba(255,214,170,.6), transparent 23%),
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08));
}
.preview-barber { background: linear-gradient(135deg, #151516, #222127); }
.preview-kicks { background: linear-gradient(135deg, #111827, #1f2937); }
.preview-hotel { background: linear-gradient(135deg, #1a1a1e, #2b2118); }
.preview-mall { background: linear-gradient(135deg, #0f172a, #171717); }
.preview-cafe { background: linear-gradient(135deg, #291d18, #15100f); }

.project-body {
  padding: 18px;
}
.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #d1d5db;
  font-size: .85rem;
  margin-bottom: 8px;
}
.project-body h3,
.service-card h3,
.timeline-item h3,
.faq-item summary,
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.text-link {
  color: #fff;
  font-weight: 600;
}
.text-link::after {
  content: " ↗";
}
.cta-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.cta-mini {
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  margin-bottom: 14px;
}

.service-card {
  padding: 22px;
}
.service-number,
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
  font-weight: 700;
}
.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.value-grid {
  padding: 28px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value-grid h2 { font-size: clamp(1.8rem, 4vw, 3.3rem); }
.value-points {
  display: grid;
  gap: 18px;
}
.value-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-item {
  padding: 22px;
}

.contact-band-inner {
  padding: 28px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-band-inner h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 0 22px;
}
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding-bottom: 22px;
  margin: 0;
}

.site-footer {
  padding: 28px 0 110px;
}
.footer-grid {
  align-items: start;
}
.footer-brand { margin-bottom: 16px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
}
.floating-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(34,211,238,.84));
  color: white;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1100px) {
  .hero-grid,
  .value-grid,
  .contact-band-inner,
  .timeline,
  .portfolio-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-visual {
    min-height: 520px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: block; }
  .quick-nav-wrap { display: none; }
  .hero-grid,
  .value-grid,
  .contact-band-inner,
  .portfolio-grid,
  .services-grid,
  .footer-grid,
  .timeline,
  .hero-metrics,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }
  .hero-visual {
    min-height: 420px;
  }
  .hero-stack {
    min-height: 390px;
  }
  .panel-main {
    inset: 42px 12px 88px 0;
  }
  .panel-side {
    width: min(220px, 62vw);
  }
  .contact-band-inner {
    align-items: flex-start;
  }
  .band-actions,
  .stack-mobile,
  .hero-actions {
    width: 100%;
  }
  .band-actions .btn,
  .stack-mobile .btn,
  .hero-actions .btn {
    width: 100%;
  }
  .floating-cta {
    left: 16px;
    right: 16px;
  }
  .floating-cta a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }
  .section {
    padding: 42px 0;
  }
  .nav-wrap {
    min-height: 68px;
  }
  .hero-copy h1,
  .section-head h2,
  .value-grid h2,
  .contact-band-inner h2 {
    letter-spacing: -0.06em;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-stack {
    min-height: 340px;
  }
  .panel-main {
    inset: 30px 0 88px 0;
    padding: 18px;
  }
  .panel-main h2 {
    font-size: 1.6rem;
  }
  .panel-side {
    right: 0;
    width: min(210px, 72vw);
    padding: 14px;
  }
  .project-preview {
    min-height: 200px;
  }
  .contact-band-inner,
  .value-grid,
  .service-card,
  .timeline-item,
  .cta-card {
    padding: 20px;
  }
  .faq-item {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .menu-toggle span,
  .btn,
  .mobile-nav,
  .nav a,
  .filter-btn {
    transition: none !important;
  }
}


@media (max-width: 820px) {
  .site-header {
    position: relative;
    top: auto;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .hero-copy .lead,
  .section-head p,
  .project-body p,
  .service-card p,
  .timeline-item p,
  .faq-item p,
  .contact-band-inner p,
  .footer-copy {
    font-size: .97rem;
    line-height: 1.6;
  }

  .hero-actions,
  .band-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .btn {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .trust-grid > div,
  .metric-card,
  .project-body,
  .service-card,
  .timeline-item,
  .cta-card,
  .contact-band-inner,
  .value-grid {
    border-radius: 22px;
  }

  .project-preview {
    min-height: 170px;
    padding: 10px;
  }

  .browser-ui,
  .mock-title,
  .mock-layout {
    display: none !important;
  }

  .project-overlay {
    background: linear-gradient(180deg, rgba(8,9,14,.06), rgba(8,9,14,.14) 45%, rgba(8,9,14,.4) 100%);
  }
}

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

  .site-header {
    background: rgba(7,7,10,0.84);
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 12px;
    height: 12px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 12vw, 2.9rem);
    line-height: .97;
  }

  .eyebrow {
    font-size: .66rem;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }

  .lead,
  .section-head p,
  .project-body p,
  .service-card p,
  .timeline-item p,
  .faq-item p,
  .contact-band-inner p,
  .footer-copy {
    font-size: .92rem;
    line-height: 1.55;
  }

  .hero-visual {
    display: none;
  }

  .hero-metrics {
    gap: 10px;
    margin-top: 18px;
  }

  .metric-card {
    padding: 14px 16px;
  }

  .metric-card strong {
    font-size: 1.15rem;
  }

  .metric-card span {
    font-size: .88rem;
  }

  .trust-strip {
    padding-top: 10px;
  }

  .trust-grid {
    padding: 10px;
    gap: 10px;
    border-radius: 22px;
  }

  .trust-grid > div {
    padding: 14px 15px;
  }

  .trust-grid strong {
    font-size: 1.05rem;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    margin-bottom: 10px;
  }

  .portfolio-filters {
    gap: 8px;
    margin-bottom: 14px;
  }

  .filter-btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: .88rem;
  }

  .portfolio-grid,
  .services-grid,
  .timeline,
  .faq-list,
  .footer-grid {
    gap: 14px;
  }

  .project-card,
  .service-card,
  .timeline-item,
  .faq-item,
  .contact-band-inner,
  .value-grid {
    border-radius: 22px;
  }

  .project-preview {
    min-height: 140px;
    padding: 0;
  }

  .project-shot {
    object-position: top center;
  }

  .project-body {
    padding: 16px;
  }

  .project-topline {
    font-size: .78rem;
    margin-bottom: 6px;
  }

  .project-body h3,
  .service-card h3,
  .timeline-item h3,
  .faq-item summary,
  .site-footer h3 {
    font-size: 1rem;
  }

  .text-link {
    font-size: .95rem;
  }

  .service-card,
  .timeline-item,
  .cta-card,
  .contact-band-inner,
  .value-grid {
    padding: 16px;
  }

  .faq-item {
    padding: 0 14px;
  }

  .faq-item summary {
    padding: 18px 0;
  }

  .contact-band-inner h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .floating-cta {
    left: auto;
    right: 12px;
    bottom: 12px;
  }

  .floating-cta a {
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 16px 38px rgba(0,0,0,.35);
  }

  .floating-cta a::before {
    content: "WA";
    font-size: .96rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .03em;
  }
}
