/* ============================================================
   TRUE DETAIL — Baltimore Mobile Car Detailing
   Dark carbon-fiber aesthetic · logo-matched palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ==== CORE TOKENS ==== */
:root {
  --bg-deep:      #0b0d0c;
  --bg-1:         #121417;
  --bg-2:         #1a1d22;
  --bg-3:         #23272d;
  --bg-glow:      #17253a;

  --blue:         #2FA9E8;
  --blue-bright:  #5BC0F1;
  --blue-deep:    #1A5F8E;
  --blue-navy:    #0F3556;

  --line:         rgba(255,255,255,0.06);
  --line-2:       rgba(255,255,255,0.12);
  --line-blue:    rgba(47,169,232,0.25);

  --text:         #f2f5f8;
  --text-muted:   #a9b2bd;
  --text-dim:     #6d7581;

  --grad-blue:    linear-gradient(135deg, #5BC0F1 0%, #2FA9E8 40%, #1A5F8E 100%);
  --grad-hero:    radial-gradient(ellipse at 50% 40%, rgba(47,169,232,0.18) 0%, rgba(26,95,142,0.08) 40%, rgba(11,13,12,0) 75%);
  --grad-glow:    radial-gradient(circle at center, rgba(47,169,232,0.35) 0%, rgba(47,169,232,0) 70%);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x:        clamp(20px, 4vw, 56px);
  --container:    1400px;

  --shadow-blue:  0 20px 60px -20px rgba(47,169,232,0.35);
  --shadow-lift:  0 30px 80px -30px rgba(0,0,0,0.8);

  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ==== RESET ==== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(47,169,232,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(26,95,142,0.06) 0%, transparent 60%);
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-bright); }
::selection { background: var(--blue); color: var(--bg-deep); }
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px;
}
.skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: var(--bg-deep); padding: 10px 18px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ==== CONTAINER ==== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ==== TYPOGRAPHY ==== */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text);
}
.h-mono {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blue);
}
.accent { color: var(--blue); }
.accent-bright { color: var(--blue-bright); }

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover {
  background: var(--blue-bright); color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 25px 60px -15px rgba(91,192,241,0.55);
}
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-bright); }
.btn-block { width: 100%; }
.btn-lg { padding: 24px 44px; font-size: 17px; letter-spacing: 0.04em; }

/* ==== NAVIGATION ==== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,12,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; display: block; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(47,169,232,0.25);
  border: 1px solid var(--line-blue);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text-main {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600;
  letter-spacing: 0; color: var(--text);
  line-height: 1.05;
}
.brand-text-main .accent { color: var(--blue); display: block; }
.brand-text-sub {
  font-size: 10px; letter-spacing: 0.3em; color: var(--text-dim);
  text-transform: uppercase; margin-top: 4px; font-weight: 600;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: block; padding: 12px 18px;
  font-size: 14px; font-weight: 600; color: var(--text);
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 2px; transition: all .2s var(--ease);
}
.nav-links a:hover { color: var(--blue-bright); background: rgba(47,169,232,0.06); }
.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-weight: 700; font-size: 14px; color: var(--text);
  border: 1px solid var(--line-2); border-radius: 2px;
  letter-spacing: 0.04em;
}
.nav-phone:hover { border-color: var(--blue); color: var(--blue-bright); }
.nav-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 10px; background: transparent;
  border: 1px solid var(--line-2); border-radius: 2px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--text);
  transition: all .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==== HERO ==== */
.hero {
  position: relative; min-height: 88vh;
  padding: 100px 0 80px; overflow: hidden;
  background: var(--bg-deep);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-hero); z-index: 0; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(47,169,232,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,169,232,0.015) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 1; pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
}
.hero-content { position: relative; }
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  background: rgba(47,169,232,0.08);
  border: 1px solid var(--line-blue);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 28px;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px var(--blue);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 500; line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 28px;
}
.hero-title span { display: block; }
.hero-title span span,
.hero-title .line-accent { display: inline; }
.hero-title .line-accent {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 30px rgba(47,169,232,0.3));
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55; color: var(--text-muted);
  max-width: 560px; margin-bottom: 36px;
}
.hero-lede strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600; line-height: 1.1;
  color: var(--blue-bright); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-meta-item .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lift), 0 0 80px -20px rgba(47,169,232,0.25);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 45%;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.hero-visual:hover img { transform: scale(1.12); }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,13,12,0.85) 100%);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2; display: flex; justify-content: space-between; align-items: end;
}
.hero-visual-caption .cap-title {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: -0.005em; color: var(--text);
}
.hero-visual-caption .cap-sub {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-dim); text-transform: uppercase;
  font-weight: 700; margin-top: 4px;
}
.hero-visual-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: rgba(47,169,232,0.2);
  border: 1px solid var(--blue); border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--blue-bright);
  text-transform: uppercase; backdrop-filter: blur(10px);
}

/* ==== SECTIONS ==== */
section { position: relative; padding: 100px 0; }
.sec-head { max-width: 860px; margin-bottom: 64px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .h-mono { display: block; margin-bottom: 16px; }
.sec-head .h-display { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; }
.sec-head .sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.55; max-width: 620px;
}
.sec-head.center .sub { margin-left: auto; margin-right: auto; }

/* ==== QUALITY BAR (stats replacement) ==== */
.quality-bar {
  padding: 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.qb-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.qb-item {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
}
.qb-item:last-child { border-right: 0; }
.qb-item:hover { background: rgba(47,169,232,0.03); }
.qb-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--blue);
  transition: width .4s var(--ease);
}
.qb-item:hover::before { width: 100%; }
.qb-icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 20px; }
.qb-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600; line-height: 1.05;
  color: var(--text); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.qb-num .unit { color: var(--blue); }
.qb-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 10px;
}
.qb-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ==== SERVICES ==== */
.services { background: var(--bg-deep); }
.svc-header {
  display: flex; justify-content: space-between; align-items: end;
  gap: 48px; margin-bottom: 56px; flex-wrap: wrap;
}
.svc-header .sec-head { margin-bottom: 0; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line); border: 1px solid var(--line);
}

/* Tier Matrix (Express / Standard / Signature pricing inside each service card) */
.tier-matrix {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  background: var(--bg-deep);
}
.tier-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .2s var(--ease);
}
.tier-row:last-child { border-bottom: 0; }
.tier-row:hover { background: rgba(47,169,232,0.04); }
.tier-row-featured {
  background: linear-gradient(90deg, rgba(47,169,232,0.12) 0%, rgba(47,169,232,0.04) 100%);
  border-left: 3px solid var(--blue);
  padding-left: 15px;
}
.tier-row-featured::after {
  content: 'MOST BOOKED';
  position: absolute;
  top: 50%; right: 18px;
  transform: translateY(-50%);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
  display: none;
}
.tier-row-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1;
}
.tier-row-featured .tier-row-name { color: var(--blue-bright); }
.tier-row-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.tier-row-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.tier-row-price .currency {
  color: var(--blue);
  font-size: 18px;
  margin-right: 1px;
}
.svc-card {
  background: var(--bg-1);
  padding: 40px 32px;
  position: relative;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { background: var(--bg-2); transform: translateY(-4px); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-featured {
  background: linear-gradient(180deg, rgba(47,169,232,0.08) 0%, var(--bg-1) 50%);
}
.svc-card-featured::before { transform: scaleX(1); }
.svc-ribbon {
  position: absolute; top: 24px; right: 24px;
  background: var(--blue); color: var(--bg-deep);
  padding: 5px 11px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.svc-card-img {
  aspect-ratio: 16/10; overflow: hidden;
  margin: -40px -32px 28px -32px;
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 55%;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.005em; line-height: 1;
  margin-bottom: 10px; color: var(--text);
}
.svc-card-sub {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.svc-card p.desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 28px; flex: 1;
}
.svc-card-foot {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.svc-price { display: flex; flex-direction: column; gap: 2px; }
.svc-price .label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.svc-price .amount {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500;
  line-height: 1; color: var(--text);
  letter-spacing: -0.005em;
}
.svc-price .amount .currency { color: var(--blue); }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  transition: all .2s var(--ease);
}
.svc-cta:hover { background: var(--blue); border-color: var(--blue); color: var(--bg-deep); }

/* ==== ADD-ONS ==== */
.addons { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.addon-rail {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; border: 1px solid var(--line); background: var(--bg-deep);
}
.addon-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.addon-item:hover { background: rgba(47,169,232,0.04); }
.addon-item h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.005em; color: var(--text);
  margin-bottom: 6px;
}
.addon-price {
  font-size: 13px; font-weight: 700;
  color: var(--blue); margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.addon-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ==== WORK / GALLERY ==== */
.work { background: var(--bg-deep); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line);
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-1); cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 8/5; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4/10; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 45%;
  transition: transform .7s var(--ease), filter .4s var(--ease);
  filter: brightness(0.92) saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.15); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(0deg, rgba(11,13,12,0.9) 30%, transparent);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: -0.005em;
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item figcaption .cap-kind {
  display: block; font-size: 10px;
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 4px;
}

/* ==== Before/After ==== */
.ba-wrap { margin-bottom: 64px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; border: 1px solid var(--line-2); user-select: none;
}
.ba-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-clip { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-tag {
  position: absolute; top: 20px;
  padding: 6px 14px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); background: rgba(11,13,12,0.75);
  border: 1px solid var(--line-2); backdrop-filter: blur(10px); z-index: 3;
}
.ba-tag-before { left: 20px; }
.ba-tag-after { right: 20px; background: var(--blue); color: var(--bg-deep); border-color: var(--blue); }
.ba-handle {
  position: absolute; top: 0; left: 50%;
  width: 4px; height: 100%;
  background: var(--blue); transform: translateX(-50%);
  cursor: ew-resize; z-index: 4;
  box-shadow: 0 0 20px rgba(47,169,232,0.5);
}
.ba-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--blue); border: 3px solid var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(47,169,232,0.6);
}
.ba-handle-knob svg { width: 20px; height: 20px; }

/* ==== MEMBERSHIP ==== */
.membership { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.tier {
  position: relative; background: var(--bg-deep);
  border: 1px solid var(--line-2);
  padding: 44px 36px;
  transition: all .3s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-blue); box-shadow: var(--shadow-lift); }
.tier-featured {
  background: linear-gradient(180deg, rgba(47,169,232,0.1) 0%, var(--bg-deep) 45%);
  border-color: var(--blue);
  box-shadow: 0 0 60px -15px rgba(47,169,232,0.4);
}
.tier-featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue); color: var(--bg-deep);
  padding: 5px 16px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
}
.tier-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.25em;
  color: var(--blue); margin-bottom: 12px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 500;
  letter-spacing: -0.005em; line-height: 1;
  color: var(--text); margin-bottom: 8px;
}
.tier-kick {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 28px; font-weight: 500;
}
.tier-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.tier-price .currency {
  font-family: var(--font-display);
  font-size: 26px; color: var(--blue); line-height: 1;
}
.tier-price .amount {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 500;
  line-height: 1; color: var(--text);
  letter-spacing: -0.005em;
}
.tier-price .period {
  font-size: 14px; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.04em;
}
.tier ul { list-style: none; padding: 0; margin: 0 0 36px 0; display: flex; flex-direction: column; gap: 12px; }
.tier ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-muted); line-height: 1.5;
}
.tier ul li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: rgba(47,169,232,0.15);
  border: 1px solid var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232FA9E8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.tier ul li em { color: var(--text); font-style: normal; font-weight: 600; }
.vip-note {
  max-width: 900px; margin: 56px auto 0;
  padding: 28px 36px;
  background: var(--bg-deep); border: 1px solid var(--line-blue);
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.vip-note strong {
  display: inline-block; margin-right: 14px;
  padding: 3px 10px;
  background: var(--blue); color: var(--bg-deep);
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
}

/* ==== ABOUT ==== */
.about { background: var(--bg-deep); }
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.about-copy p { margin-bottom: 20px; color: var(--text-muted); font-size: 17px; line-height: 1.7; }
.about-copy p.lede { font-size: 21px; color: var(--text); font-weight: 500; line-height: 1.5; }
.about-sig { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-sig-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: -0.005em;
  color: var(--blue-bright); margin-bottom: 4px;
}
.about-sig-sub {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--text-dim);
  text-transform: uppercase;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lift);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,13,12,0.8));
  pointer-events: none;
}
.about-visual-overlay { position: absolute; left: 32px; bottom: 32px; right: 32px; z-index: 2; }
.about-visual-overlay .motto {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: -0.005em;
  color: var(--text); line-height: 1; margin-bottom: 8px;
}
.about-visual-overlay .motto .accent { color: var(--blue-bright); }

/* ==== REVIEWS ==== */
.reviews { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rev-marquee {
  overflow: hidden;
  margin: 0 calc(-1 * var(--pad-x)); padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.rev-marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: scroll-reviews 60s linear infinite;
}
@keyframes scroll-reviews { to { transform: translateX(-50%); } }
.rev-card {
  flex-shrink: 0; width: 420px;
  padding: 36px;
  background: var(--bg-deep); border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 16px;
}
.rev-card-top { display: flex; justify-content: space-between; align-items: center; }
.rev-stars { color: var(--blue); font-size: 16px; letter-spacing: 3px; }
.rev-date {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}
.rev-card blockquote {
  font-size: 17px; line-height: 1.55;
  color: var(--text); font-weight: 400;
}
.rev-card footer {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.rev-card-name {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: -0.005em; color: var(--text);
}
.rev-card-place {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
}
.rev-foot {
  display: flex; gap: 12px;
  margin-top: 56px; justify-content: center; flex-wrap: wrap;
}

/* ==== SERVICE AREAS ==== */
.service-areas { background: var(--bg-deep); }
.sa-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.sa-copy p { margin-bottom: 20px; color: var(--text-muted); line-height: 1.7; font-size: 17px; }
.sa-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--line); border: 1px solid var(--line);
}
.sa-list li {
  padding: 20px;
  background: var(--bg-1);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text);
  transition: all .2s var(--ease); position: relative;
}
.sa-list li:hover {
  background: rgba(47,169,232,0.08);
  color: var(--blue-bright);
  padding-left: 28px;
}
.sa-list li::before {
  content: ''; position: absolute;
  left: 20px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--blue);
  opacity: 0; transition: opacity .2s var(--ease);
}
.sa-list li:hover::before { opacity: 1; }

/* ==== CONTACT ==== */
.contact {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  top: -30%; right: -20%;
  width: 600px; height: 600px;
  background: var(--grad-glow); pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; position: relative;
}
.contact-copy .h-display { font-size: clamp(38px, 5vw, 62px); margin-bottom: 20px; }
.contact-copy p { font-size: 17px; color: var(--text-muted); line-height: 1.6; margin-bottom: 36px; }
.contact-book { margin-bottom: 40px; }
.contact-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.contact-phone {
  flex: 1 1 200px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  transition: all .25s var(--ease);
}
.contact-phone:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-phone .cp-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
}
.contact-phone .cp-num {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: -0.005em; color: var(--text);
}
.contact-meta { display: flex; flex-direction: column; gap: 18px; }
.contact-meta > div {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.contact-meta dt {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.contact-meta dd { font-size: 14px; color: var(--text); }

.contact-side {
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  padding: 36px;
}
.contact-side h3 {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: -0.005em;
  margin-bottom: 24px; color: var(--text);
}
.contact-socials { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.contact-socials a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.contact-socials a:hover { padding-left: 10px; color: var(--blue-bright); }
.cs-ico {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-1); border: 1px solid var(--line-2);
}
.cs-ico img { width: 20px; height: 20px; object-fit: contain; }
.cs-ico svg { width: 18px; height: 18px; color: var(--text); }
.cs-ico-dark svg { color: var(--blue); }
.contact-socials a span:nth-of-type(1) { font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.contact-socials em {
  font-style: normal; font-size: 12px;
  color: var(--text-dim); letter-spacing: 0.04em;
}

/* ==== FOOTER ==== */
.foot { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 60px 0 32px; }
.foot-inner {
  display: grid; grid-template-columns: 1.2fr auto auto;
  gap: 56px; align-items: start;
}
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-name {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: -0.005em; color: var(--text);
}
.foot-motto {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; color: var(--text-muted); margin-top: 4px;
}
.foot-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-nav a {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.foot-nav a:hover { color: var(--blue-bright); }
.foot-info {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.8; text-align: right;
}
.foot-info a { color: var(--text); font-weight: 700; letter-spacing: 0.04em; }
.foot-info a:hover { color: var(--blue-bright); }
.foot-copy {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  font-size: 12px; color: var(--text-dim);
  text-align: center; letter-spacing: 0.04em;
}

/* ==== FLOATING CALL ==== */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: var(--blue); color: var(--bg-deep);
  border-radius: 100px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 15px 40px -10px rgba(47,169,232,0.6);
  transition: all .25s var(--ease);
}
.float-call:hover { background: var(--blue-bright); color: var(--bg-deep); transform: translateY(-3px); }
.fc-icon svg { width: 16px; height: 16px; }

/* ==== RESPONSIVE ==== */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .qb-grid { grid-template-columns: repeat(2, 1fr); }
  .qb-item:nth-child(2) { border-right: 0; }
  .qb-item:nth-child(1), .qb-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .about-grid, .sa-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 520px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/5; }
  .sa-list { grid-template-columns: repeat(2, 1fr); }
  .foot-inner { grid-template-columns: 1fr; text-align: left; }
  .foot-info { text-align: left; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 82%; max-width: 340px;
    background: var(--bg-deep);
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 100px 24px 32px;
    transition: right .3s var(--ease);
    gap: 0;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 18px 16px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 72px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .addon-rail { grid-template-columns: 1fr; }
  .addon-item { border-right: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .rev-card { width: 320px; padding: 28px; }
  .sa-list { grid-template-columns: 1fr; }
  .float-call { bottom: 16px; right: 16px; padding: 14px 20px; }
}
@media (max-width: 520px) {
  .qb-grid { grid-template-columns: 1fr; }
  .qb-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .qb-item:last-child { border-bottom: 0; }
  .hero-title { font-size: clamp(42px, 13vw, 72px); }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text-main { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
