:root {
  --void: #060608;
  --void-soft: #0e0e14;
  --paper: #ece7de;
  --paper-warm: #e2dacf;
  --ink: #12121a;
  --muted: #5c5a66;
  --purple: #8b5cf6;
  --violet: #6d28d9;
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --grad: linear-gradient(128deg, #7c3aed 0%, #6366f1 38%, #22d3ee 100%);
  --grad-soft: linear-gradient(128deg, rgba(124,58,237,0.18), rgba(34,211,238,0.12));
  --line-dark: rgba(255,255,255,0.08);
  --line-light: rgba(18,18,26,0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--violet); color: #fff; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.display { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; }
.mono { font-family: 'IBM Plex Mono', monospace; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* grain */
.grain::after {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

.concept {
  background: var(--void);
  color: rgba(255,255,255,0.45);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.concept a { color: var(--cyan); }

.ripples {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ripples span {
  position: absolute;
  right: -8%;
  top: 50%;
  translate: 0 -50%;
  width: min(72vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.12);
}
.ripples span:nth-child(1) { scale: 1; opacity: 0.45; }
.ripples span:nth-child(2) { scale: 0.72; opacity: 0.55; border-color: rgba(99,102,241,0.16); }
.ripples span:nth-child(3) { scale: 0.48; opacity: 0.7; border-color: rgba(34,211,238,0.18); }
.ripples span:nth-child(4) { scale: 0.28; opacity: 0.85; border-color: rgba(34,211,238,0.28); background: radial-gradient(circle, rgba(34,211,238,0.05), transparent 70%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px 24px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  background: #fff;
  padding: 8px 14px 8px 10px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.brand img { width: min(168px, 38vw); }
.header-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
}
.header-phone:hover { color: var(--cyan); border-color: rgba(34,211,238,0.45); background: rgba(34,211,238,0.06); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 2px;
  cursor: pointer;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}
.main-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--cyan); }

/* Buttons — sharp stamp style, no gradient pills */
.cta-ring {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--cyan);
  background: var(--violet);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(34,211,238,0.22);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.cta-ring:hover {
  background: #5b21b6;
  border-left-color: #fff;
  box-shadow: 5px 5px 0 rgba(34,211,238,0.28);
  transform: translate(-1px, -1px);
}
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 12px 0;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.cta-ghost:hover { color: #fff; border-bottom-color: var(--cyan); }
.cta-ghost::after {
  content: '↗';
  font-size: 11px;
  opacity: 0.55;
}
.panel-light .cta-ring,
.panel-warm .cta-ring,
.prose-page .cta-ring {
  box-shadow: 3px 3px 0 rgba(109,40,217,0.18);
}
.cta-slab .cta-ring {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-left: 3px solid var(--cyan);
  box-shadow: none;
  flex-shrink: 0;
}
.cta-slab .cta-ring:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.45);
  box-shadow: none;
  transform: none;
}
.page-mast .cta-ring {
  flex-shrink: 0;
}
.contact-art button.cta-ring {
  width: 100%;
  justify-content: center;
}

/* HERO */
.hero {
  position: relative;
  background: var(--void);
  color: #fff;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px 0 36px;
}
.hero-layout > * { min-width: 0; }
@media (min-width: 961px) {
  .hero-layout {
    grid-template-columns: 1fr 0.92fr;
    gap: 40px 56px;
    padding: 32px 0 56px;
  }
}
.hero-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hero h1.display {
  font-size: clamp(36px, 5.4vw, 72px);
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: none;
  color: #fff;
  line-height: 0.98;
}
@media (min-width: 961px) {
  .hero h1.display { max-width: 12ch; }
}
.hero h1.display em {
  font-style: normal;
  color: var(--cyan);
}
@media (min-width: 961px) {
  .hero h1.display em { display: block; }
}
.hero-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  max-width: 44ch;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }

/* SERP preview — light results card */
.serp-window {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  color: var(--ink);
  max-width: 100%;
}
.serp-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}
.serp-dots { display: flex; gap: 6px; }
.serp-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}
.serp-dots i:nth-child(1) { background: #fca5a5; }
.serp-dots i:nth-child(2) { background: #fcd34d; }
.serp-dots i:nth-child(3) { background: #86efac; }
.serp-query {
  flex: 1;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #6b7280;
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}
.serp-body { padding: 8px 0 4px; }
.serp-hit {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.serp-hit:last-child { border-bottom: 0; }
.serp-hit-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.serp-pos {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #9ca3af;
  min-width: 18px;
}
.serp-you {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(109,40,217,0.08);
  padding: 3px 8px;
  border-radius: 4px;
}
.serp-hit--you {
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(34,211,238,0.05) 100%);
  border-left: 3px solid var(--violet);
  padding-left: 17px;
}
.serp-hit--you .serp-pos { color: var(--violet); }
.serp-hit .serp-url {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #059669;
  margin-bottom: 4px;
}
.serp-hit--you .serp-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a0dab;
  margin-bottom: 6px;
  line-height: 1.2;
}
.serp-hit--you .serp-snippet {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
}
.serp-hit--faded { opacity: 0.42; }
.serp-hit--faded .serp-url { color: #9ca3af; }
.serp-title-faded {
  font-size: 14px;
  color: #9ca3af;
}
.serp-foot {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 16px;
  background: var(--void-soft);
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* SECTIONS */
.panel-dark {
  background: var(--void);
  color: rgba(255,255,255,0.72);
  padding: 80px 0;
  position: relative;
}
.panel-light { background: var(--paper); padding: 80px 0; }
.panel-warm { background: var(--paper-warm); padding: 80px 0; }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  margin-bottom: 20px;
}
.panel-dark .section-label { color: var(--cyan); }
.section-head {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: none;
}
@media (min-width: 961px) {
  .section-head { max-width: 18ch; }
}
.panel-dark .section-head { color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  border-radius: 2px;
  filter: saturate(0.92) contrast(1.04);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.prose p { margin-bottom: 18px; color: var(--muted); }
.prose strong { color: var(--ink); font-weight: 600; }
.panel-dark .prose p { color: rgba(255,255,255,0.58); }
.panel-dark .prose strong { color: #fff; }

.benefits-banner {
  display: flex;
  justify-content: center;
}
.benefits-frame {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35);
  max-width: 720px;
  margin: 0 auto;
}
.benefits-frame img { width: 100%; opacity: 1; }

/* PACKAGES POSTER */
.packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line-light);
  margin-top: 48px;
}
.package {
  background: var(--paper);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.package::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}
.package:nth-child(2)::after { opacity: 0.7; }
.package-price {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--violet);
  margin-bottom: 8px;
}
.package-price small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.package h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 16ch;
}
.package p { color: var(--muted); font-size: 16px; }
.package img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 2px solid var(--paper-warm);
}

/* TESTIMONIALS EDITORIAL */
.quote-wall { columns: 2; column-gap: 40px; margin-top: 48px; }
.quote-block {
  break-inside: avoid;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  line-height: 0.6;
  position: absolute;
  top: 20px;
  left: -4px;
  color: var(--violet);
  opacity: 0.12;
  pointer-events: none;
}
.panel-warm .quote-block {
  border-top-color: var(--line-light);
}
.panel-warm .quote-block::before {
  color: var(--violet);
  opacity: 0.1;
}
.panel-warm .quote-block p {
  color: var(--ink);
  font-size: 17px;
}
.panel-warm .quote-block cite {
  color: var(--cyan-dim);
}
.quote-block p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  position: relative;
  z-index: 1;
  padding-left: 24px;
}
.quote-block cite {
  display: block;
  margin-top: 16px;
  padding-left: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* CLIENT INDEX */
.client-index { margin-top: 48px; }
.client-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}
.client-row:first-child { border-top: 1px solid var(--line-light); }
.client-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--violet);
  opacity: 0.5;
}
.client-row h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.client-row .query {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--cyan-dim);
}
.client-row .meta { font-size: 14px; color: var(--muted); margin-top: 4px; }
.client-row .years {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.client-preview {
  display: none;
}
.client-grid-art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.client-card-art {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 16px;
}
.client-card-art img { margin-bottom: 16px; border-radius: 2px; }
.client-card-art .domain { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--violet); word-break: break-all; margin-bottom: 8px; }
.client-card-art h3 { font-family: 'Syne', sans-serif; font-size: 18px; margin-bottom: 6px; }
.client-card-art .meta { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.client-card-art .years {
  display: inline-block;
  margin-top: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dim);
}

.cta-slab {
  padding: 48px 0;
  background: var(--void-soft);
  color: #fff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cta-slab .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-slab p, .cta-slab h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}

.notice {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
}

.services-duo-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.service-frame {
  border: 1px solid var(--line-dark);
  padding: 24px;
  background: rgba(255,255,255,0.02);
}
.service-frame img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 16px;
  opacity: 0.88;
}
.service-frame h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.service-frame p { font-size: 15px; color: rgba(255,255,255,0.52); }

.warranty-mark { max-width: 180px; margin-top: 24px; opacity: 0.9; }

/* INNER PAGES */
.page-mast {
  background: var(--void);
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-mast-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.page-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  max-width: 36ch;
  line-height: 1.5;
}
.page-mast h1.display {
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.98;
  max-width: none;
}
@media (min-width: 961px) {
  .page-mast h1.display { max-width: 20ch; }
}
.page-mast-lede {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.52);
  max-width: 44ch;
  line-height: 1.55;
}
.page-mast .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.prose-page { padding: 80px 0; }
.prose-page .prose { max-width: 68ch; }
.prose-page h2, .prose-page h3, .prose-page h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.1;
}
.prose-page h2 { font-size: 32px; }
.prose-page h3 { font-size: 24px; }
.prose-page #luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: none;
}
.prose-page #sideGallery3, .prose-page #sideGallery4 {
  border: 1px solid var(--line-light);
  padding: 20px;
  background: #fff;
}
.prose-page #sideGallery3 img, .prose-page #sideGallery4 img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 12px;
}
.prose-page h5 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin: 12px 0 8px;
}

.contact-art {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2px;
  background: var(--line-light);
  margin-top: 48px;
}
.contact-art > div {
  background: var(--paper);
  padding: 48px 40px;
}
.contact-art form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 8px;
}
.contact-art input, .contact-art textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  font-family: 'Outfit', sans-serif;
}
.contact-art textarea { min-height: 140px; resize: vertical; }
.contact-art button {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.city-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.city-wall a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  background: #fff;
  color: var(--ink);
}
.city-wall a:hover { border-color: var(--violet); color: var(--violet); }

.site-footer {
  background: var(--void-soft);
  color: rgba(255,255,255,0.45);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-brand {
  display: inline-flex;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.7fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-grid p { font-size: 14px; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  margin-top: 16px;
}
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,0.28);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6,6,8,0.96);
  border-top: 1px solid var(--line-dark);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 16px;
  background: var(--violet);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border-left: 3px solid var(--cyan);
  box-shadow: 3px 3px 0 rgba(34,211,238,0.25);
}
.mobile-bar a::before {
  content: 'Call';
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.65;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

@media (max-width: 960px) {
  .wrap { width: min(1180px, calc(100% - 32px)); }
  .concept { font-size: 9px; letter-spacing: 0.04em; padding: 8px 12px; line-height: 1.45; }
  .brand { padding: 6px 10px 6px 8px; }
  .brand img { width: min(132px, 40vw); }
  .hero-layout, .split, .packages, .services-duo-art, .contact-art, .footer-grid, .client-grid-art, .quote-wall { grid-template-columns: 1fr; columns: 1; }
  .site-header .wrap { grid-template-columns: 1fr auto; padding: 10px 0; }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
    border-top: 1px solid var(--line-dark);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .page-mast .cta-ring { display: none; }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-layout { padding: 20px 0 36px; gap: 28px; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.1em; line-height: 1.45; margin-bottom: 14px; }
  .hero h1.display {
    font-size: clamp(26px, 7vw, 34px);
    max-width: none;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: -0.025em;
  }
  .hero h1.display em { display: inline; }
  .hero-lede { font-size: 15px; max-width: none; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .cta-ring,
  .hero-actions .cta-ghost { justify-content: center; width: 100%; }
  .panel-dark, .panel-light, .panel-warm { padding: 48px 0; }
  .prose-page { padding: 48px 0; }
  .page-mast { padding: 36px 0 32px; }
  .page-mast-inner { flex-direction: column; align-items: flex-start; }
  .page-kicker { font-size: 9px; letter-spacing: 0.08em; max-width: none; line-height: 1.45; }
  .page-mast h1.display {
    font-size: clamp(26px, 6.8vw, 36px);
    max-width: none;
    line-height: 1.08;
    text-transform: none;
  }
  .page-mast-lede { font-size: 15px; max-width: none; }
  .section-head { max-width: none; font-size: clamp(24px, 5.8vw, 34px); margin-bottom: 20px; line-height: 1.08; }
  .section-label { margin-bottom: 14px; }
  .split { gap: 32px; }
  .benefits-frame { padding: 14px 16px; }
  .cta-slab { padding: 36px 0; }
  .cta-slab .wrap { flex-direction: column; align-items: stretch; gap: 20px; }
  .cta-slab .cta-ring { width: 100%; justify-content: center; }
  .cta-slab p, .cta-slab h2 { font-size: clamp(17px, 4.2vw, 20px); max-width: none; }
  .package-price { font-size: clamp(40px, 11vw, 56px); }
  .package { padding: 32px 24px; }
  .contact-art > div { padding: 28px 20px; }
  .contact-art { margin-top: 28px; }
  .site-footer { padding: 48px 0 24px; }
  .footer-grid { gap: 28px; margin-bottom: 32px; }
  .prose-page #luxury { grid-template-columns: 1fr; }
  .city-wall { grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 24px); }
  .hero h1.display { font-size: clamp(24px, 6.8vw, 32px); }
  .serp-chrome { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .serp-dots { display: none; }
  .serp-query { font-size: 11px; padding: 7px 12px; min-width: 0; }
  .serp-hit { padding: 12px 14px; }
  .serp-hit--you .serp-title { font-size: 16px; }
  .city-wall { grid-template-columns: 1fr; }
  .cta-ring { font-size: 12px; padding: 12px 16px; }
  .mobile-bar a { font-size: 12px; padding: 14px; }
}
