/*
Theme Name: RYCHO Blueprint
Theme URI: https://rycho.net
Author: RYCHO LLC
Author URI: https://rycho.net
Description: Single-page blueprint-style theme for RYCHO LLC — small studio, deep simulations. Dark technical grid in the bklit Lagoon palette, Geist typography, live HUD charts, dot-matrix operations map.
Version: 1.6.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rycho-blueprint
*/

/* ============================================================
   RYCHO LLC — bklit-inspired blueprint theme
   Fonts: Geist (display) / Geist Mono (technical)
   ============================================================ */

:root {
  --bg: #060a0c;
  --panel: #081014;
  --line: rgba(134, 216, 235, 0.08);
  --line-strong: rgba(134, 216, 235, 0.16);
  --text: #f2f7f8;
  --muted: #94a6ab;
  --dim: #56676c;
  /* bklit "Lagoon" chart theme (dark) — Tailwind cyan scale */
  --chart-1: #0e7490;
  --chart-2: #0891b2;
  --chart-3: #06b6d4;
  --chart-4: #22d3ee;
  --chart-5: #67e8f9;
  --chart-scale-01: #083344;
  --chart-scale-02: #155e75;
  --chart-scale-03: #0891b2;
  --chart-scale-04: #22d3ee;
  --chart-scale-05: #67e8f9;
  --chart-grid: rgba(134, 216, 235, 0.1);
  --accent: var(--chart-4);
  --green: var(--chart-4);
  --cell: 240px;
  --pad-x: clamp(20px, 6vw, 96px);
  --font-sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* lagoon depth — fixed ambient glows + fine dot grid (bklit dot-grid background) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(134, 216, 235, 0.07) 1px, transparent 1.4px),
    radial-gradient(55% 45% at 88% -8%, rgba(8, 51, 68, 0.6), transparent 65%),
    radial-gradient(45% 40% at -8% 108%, rgba(8, 51, 68, 0.45), transparent 65%),
    radial-gradient(30% 30% at 50% 50%, rgba(14, 116, 144, 0.08), transparent 70%);
  background-size: 22px 22px, 100% 100%, 100% 100%, 100% 100%;
}

::selection { background: var(--text); color: var(--bg); }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 1px dashed rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mark { width: 22px; height: 22px; color: var(--text); }
.nav-word {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-solid {
  background: var(--text);
  color: var(--bg);
}
.btn-solid:hover { background: #ffffff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.03); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.grid-field {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cpath d='M120 112v16M112 120h16' stroke='%2367e8f9' stroke-opacity='0.28' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: var(--cell) var(--cell);
  background-position: -120px -120px, 0 0, 0 0;
  mask-image: radial-gradient(120% 100% at 30% 40%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 100% at 30% 40%, #000 55%, transparent 100%);
}

.hatch {
  position: absolute;
  width: var(--cell);
  height: var(--cell);
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0 1px,
    transparent 1px 9px
  );
  border: 1px solid var(--line);
}
.hatch-a { left: calc(var(--cell) * 4); top: 0; }
.hatch-b { left: calc(var(--cell) * 5); top: calc(var(--cell) * 2); }
.hatch-c { left: calc(var(--cell) * 6); top: calc(var(--cell) * 1); }

.ruler {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  border-right: 1px solid var(--line);
  z-index: 2;
}
.ruler .tick {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--line-strong);
}
.ruler .tick.minor { width: 50%; border-top-color: var(--line); }
.ruler .tick span {
  position: absolute;
  top: 6px;
  left: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.coords {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 120px var(--pad-x) 80px;
  max-width: 1200px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.pill-tag {
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.pill-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 12px 5px 6px;
  transition: color 0.2s;
}
.pill-link:hover { color: var(--text); }
.pill .arrow { display: inline-block; transition: transform 0.2s; }
.pill-link:hover .arrow { transform: translateX(3px); }

.hero-title {
  font-size: clamp(2.3rem, 7.65vw, 6.89rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 20px 0 10px -0.05em;
}

.hero-sub {
  font-size: clamp(0.8rem, 1.6vw, 1.15rem);
  letter-spacing: 0.18em;
  color: var(--muted);
  min-height: 1.6em;
}

.cursor {
  display: inline-block;
  animation: blink 1.1s steps(2) infinite;
  color: var(--muted);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 36px 0 48px;
}
.hero-actions .btn {
  min-width: 172px;
  text-align: center;
}

.hero-annot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.annot-glyph { width: 16px; height: 16px; margin-top: 3px; color: var(--muted); }

/* hero load-in */
.load {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.load-1 { animation-delay: 0.05s; }
.load-2 { animation-delay: 0.15s; }
.load-3 { animation-delay: 0.3s; }
.load-4 { animation-delay: 0.45s; }
.load-5 { animation-delay: 0.6s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
  border-bottom: 1px solid var(--line);
  max-width: 1400px;
  margin: 0 auto;
}

.label {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(34, 211, 238, 0.8);
  margin-bottom: 48px;
}
.label::before {
  content: "//";
  margin-right: 10px;
  color: var(--line-strong);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ PRODUCT ============ */
.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.product-title {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 26px 0 14px -0.04em;
}
.product-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(103, 232, 249, 0.8);
}

.product-sub {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 24px;
}

.product-pitch {
  color: var(--muted);
  font-size: 17px;
  max-width: 54ch;
  margin-bottom: 32px;
}

.product-meta { margin-bottom: 36px; }

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: 0.14em;
}
.spec-row > span:first-child { color: var(--dim); }
.spec-row > span:last-child, .spec-row > a { color: var(--text); }
.spec-row > a:hover { color: var(--green); }

.status { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.dot-open { background: var(--accent); box-shadow: 0 0 8px rgba(34, 211, 238, 0.65); }
@keyframes pulse { 50% { opacity: 0.35; } }

/* viz panel */
.viz-panel {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 30px 80px rgba(0, 0, 0, 0.5);
}
.viz-head, .viz-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.viz-head { border-bottom: 1px solid var(--line); }
.viz-foot { border-top: 1px solid var(--line); color: var(--dim); }
.viz-live { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }

.skyline {
  height: 120px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.skyline svg { display: block; width: 100%; height: 100%; }
.skyline .win {
  fill: rgba(255, 255, 255, 0);
  animation: winOn 0.4s steps(1) forwards;
}
@keyframes winOn { to { fill: rgba(103, 232, 249, 0.85); } }

.vitality-chart {
  display: block;
  width: 100%;
  height: 230px;
}

/* HUD stat strip — PC / population */
.viz-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.viz-stat { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.vs-label { color: var(--dim); }
.vs-value { color: var(--text); }
.vs-delta { color: var(--accent); font-size: 9px; }
.vs-delta.down { color: var(--dim); }

/* HUD mini-chart grid — gauge / heatmap / sunburst */
.viz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.viz-cell {
  padding: 10px 12px 12px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.viz-cell:last-child { border-right: none; }
.viz-cell-head {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 8px;
}
.mini-chart {
  display: block;
  width: 100%;
  height: 140px;
}

@media (max-width: 560px) {
  .viz-grid { grid-template-columns: 1fr; }
  .viz-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .viz-cell:last-child { border-bottom: none; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.statement {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 56ch;
  margin-bottom: 18px;
}

.about-spec {
  border-top: 1px solid var(--line-strong);
  font-size: 11.5px;
}

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

.card {
  position: relative;
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
  transition: background 0.3s;
}
.card:hover { background: #0c0d0f; }

.card::before, .card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.card::before {
  top: 8px; left: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.card::after {
  bottom: 8px; right: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.card:hover::before, .card:hover::after { opacity: 1; }

.card-index {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.2em;
}
.card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.card-meta {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.18em;
  margin-bottom: 0;
}

/* ============ WORK ============ */
.work-list { border-top: 1px solid var(--line-strong); }

.work-row {
  display: grid;
  grid-template-columns: 140px 1fr 200px 140px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.work-row:hover { background: rgba(255, 255, 255, 0.015); }

.work-index { font-size: 11px; color: var(--dim); letter-spacing: 0.18em; }

.work-body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.work-featured .work-body h3 { color: var(--chart-4); }
.work-body p { color: var(--muted); font-size: 15px; max-width: 52ch; }

.work-status {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
}

.work-thumb {
  height: 76px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.035) 0 1px,
    transparent 1px 8px
  );
}
.work-thumb .mono { font-size: 10px; color: var(--dim); letter-spacing: 0.14em; }

.work-thumb-link { transition: background 0.25s, border-color 0.25s; }
.work-thumb-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.work-thumb-link:hover .mono { color: var(--text); }


/* ============ CONTACT ============ */
.section-contact { border-bottom: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-email {
  display: block;
  font-size: clamp(1.9rem, 4.7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--green); }

.btn-copy { font-size: 11px; letter-spacing: 0.18em; }

.contact-form { display: flex; flex-direction: column; }
.contact-form label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin: 0 0 8px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  margin-bottom: 22px;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--dim); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-form .btn { align-self: flex-start; }

.form-note {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-top: 14px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-cols {
  display: flex;
  gap: clamp(40px, 6vw, 96px);
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.footer-head { color: var(--dim); margin-bottom: 6px; }
.footer-col a, .footer-col span:not(.footer-head) { color: var(--muted); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--dim);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hatch { display: none; }
}

@media (max-width: 900px) {
  .product-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .work-row { grid-template-columns: 1fr; gap: 14px; }
  .work-thumb { width: 100%; }
  .work-status { order: -1; }
}

@media (max-width: 760px) {
  .nav-links, .ruler, .coords { display: none; }
  .hero { min-height: 78vh; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-wrap: wrap; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .dot, .cursor { animation: none; }
  .skyline .win { animation: none; fill: rgba(103, 232, 249, 0.85); }
}

/* ============================================================
   LAGOON ADDITIONS — ambient motion + location map
   ============================================================ */

/* drifting hatch stripes */
.hatch {
  animation: hatchDrift 14s linear infinite;
}
@keyframes hatchDrift {
  to { background-position: 45px 45px; }
}

/* floating scatter points across the hero */
.hero-scatter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* scanline sweeping the hero grid */
.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(34, 211, 238, 0.55) 50%, transparent 95%);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.35);
  opacity: 0;
  animation: sweep 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes sweep {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 0.8; }
  80% { opacity: 0.8; }
  98% { transform: translateY(88vh); opacity: 0; }
  100% { transform: translateY(88vh); opacity: 0; }
}

/* pulsing crosshair nodes on grid intersections */
.pulse-nodes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pulse-node {
  position: absolute;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--chart-5);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.8);
  opacity: 0;
  animation: nodePulse 7s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  6% { opacity: 0.9; transform: scale(1); }
  14% { opacity: 0; transform: scale(0.6); }
}

/* location section */
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.location-copy .about-spec { margin-top: 32px; }

.world-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}

/* contact phone line */
.contact-phone {
  display: inline-block;
  margin-left: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--accent); }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .contact-phone { display: block; margin: 14px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scanline, .pulse-nodes { display: none; }
  .hatch { animation: none; }
}
