/* ============================================================
   Rockford Computer Tech Inc — site styles
   Brand: deep navy + electric cyan, amber accent
   Fonts: Montserrat (headings), Inter (body)
   ============================================================ */

:root {
  --navy-900: #0a1322;
  --navy-800: #0f1d33;
  --navy-700: #16294a;
  --navy-600: #1e3a66;
  --cyan: #19c4e8;
  --cyan-dark: #0e9cbb;
  --amber: #f5a623;
  --amber-dark: #d68a0e;
  --purple: #8b5cf6;
  --purple-dark: #6d3fd8;
  --ink: #1c2533;
  --ink-soft: #46556b;
  --paper: #f5f8fc;
  --white: #ffffff;
  --line: #dbe4ef;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 19, 34, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-800);
}

img { max-width: 100%; display: block; }

a { color: var(--cyan-dark); }

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 19, 34, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--cyan);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: auto;
  /* original logo art is black — invert it for the dark header */
  filter: invert(1);
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: #cfe0f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-links a.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.nav-links a.nav-games {
  color: #d8c9ff;
}
.nav-links a.nav-games:hover { color: var(--purple); }
.nav-links a.nav-games.active { color: var(--purple); border-bottom-color: var(--purple); }

.nav-cta {
  background: var(--amber);
  color: var(--navy-900) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: #ffc14d; color: var(--navy-900) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(25, 196, 232, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(139, 92, 246, 0.12), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  /* faint circuit grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 196, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 196, 232, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  padding: 5.5rem 0 5rem;
  max-width: 720px;
}

.hero .eyebrow {
  display: inline-block;
  background: rgba(25, 196, 232, 0.15);
  border: 1px solid rgba(25, 196, 232, 0.45);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin-bottom: 1rem;
}

.hero h1 .glow { color: var(--cyan); }

.hero p {
  font-size: 1.15rem;
  color: #b9cce2;
  margin-bottom: 2rem;
  max-width: 580px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(25, 196, 232, 0.35);
}

.btn-amber {
  background: linear-gradient(135deg, #ffb938, var(--amber-dark));
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.hero-phone {
  margin-top: 1.6rem;
  font-size: 1rem;
  color: #9fb6d0;
}
.hero-phone a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
}

/* ---------- Sections ---------- */

.section { padding: 4.5rem 0; }
.section-dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #c6d7ea;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 2.6rem; }

.section-head .kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.5rem;
}
.section-dark .kicker { color: var(--cyan); }

.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.7rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-head p { color: #a9bdd4; }

.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 14px rgba(10, 19, 34, 0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card.accent-amber { border-top-color: var(--amber); }
.card.accent-purple { border-top-color: var(--purple); }
.card.accent-navy { border-top-color: var(--navy-600); }

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(25, 196, 232, 0.15), rgba(25, 196, 232, 0.05));
}
.card.accent-amber .icon { background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(245, 166, 35, 0.05)); }
.card.accent-purple .icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(139, 92, 246, 0.05)); }
.card .icon svg { width: 30px; height: 30px; }

.card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card ul {
  margin-top: 0.8rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.card ul li { margin-bottom: 0.3rem; }

.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--cyan-dark);
}
.card .card-link:hover { text-decoration: underline; }

/* ---------- Feature split rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.2rem 0;
}
.split + .split { border-top: 1px solid var(--line); }
.section-dark .split + .split { border-top-color: rgba(255,255,255,0.1); }

.split h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.split p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.section-dark .split p { color: #a9bdd4; }

.split .check-list {
  list-style: none;
  margin-top: 0.4rem;
}
.split .check-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}
.section-dark .split .check-list li { color: #b9cce2; }
.split .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05em;
  height: 1.05em;
  border-radius: 50%;
  background: var(--cyan);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
}

.split-art {
  border-radius: var(--radius);
  min-height: 280px;
  box-shadow: var(--shadow);
}

.art-cameras {
  background:
    radial-gradient(circle at 75% 25%, rgba(25, 196, 232, 0.35), transparent 50%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid;
  place-items: center;
}
.art-network {
  background:
    radial-gradient(circle at 25% 75%, rgba(245, 166, 35, 0.3), transparent 50%),
    linear-gradient(210deg, var(--navy-700), var(--navy-900));
  display: grid;
  place-items: center;
}
.art-repair {
  background:
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.3), transparent 55%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid;
  place-items: center;
}
.split-art svg { width: 130px; height: 130px; opacity: 0.95; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(25, 196, 232, 0.25);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.step .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.93rem; color: #a9bdd4; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(25, 196, 232, 0.25), transparent 70%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 0.7rem; }
.cta-band p { color: #b9cce2; margin-bottom: 1.8rem; font-size: 1.08rem; }
.cta-band .phone-big {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--amber);
  text-decoration: none;
  margin-bottom: 1.4rem;
}

/* ---------- Page banner (inner pages) ---------- */

.page-banner {
  background:
    radial-gradient(ellipse 70% 90% at 80% 10%, rgba(25, 196, 232, 0.2), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 3.6rem 0 3.2rem;
}
.page-banner h1 { color: var(--white); font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 0.6rem; }
.page-banner p { color: #b9cce2; font-size: 1.1rem; max-width: 640px; }

.page-banner.banner-games {
  background:
    radial-gradient(ellipse 70% 90% at 80% 10%, rgba(139, 92, 246, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(25, 196, 232, 0.18), transparent 60%),
    linear-gradient(160deg, #140e2a, #1f1640 60%, #2a1b55);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.25rem; margin-bottom: 0.9rem; }
.contact-info p { color: var(--ink-soft); margin-bottom: 1rem; }

.info-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
}
.info-line .dot {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(25, 196, 232, 0.15), rgba(25, 196, 232, 0.04));
}
.info-line .dot svg { width: 22px; height: 22px; }
.info-line a { color: var(--navy-800); font-weight: 700; text-decoration: none; }
.info-line a:hover { color: var(--cyan-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 1rem 0 0.35rem;
  color: var(--navy-800);
}
.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.contact-form button {
  margin-top: 1.4rem;
  width: 100%;
  border: none;
  cursor: pointer;
}

/* honeypot */
.hp-field { display: none !important; }

.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- RCT Games ---------- */

.games-section {
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(139, 92, 246, 0.16), transparent 60%),
    linear-gradient(160deg, #140e2a, #1d1438);
  color: #cfc6e8;
}
.games-section h2, .games-section h3 { color: var(--white); }
.games-section .kicker { color: var(--purple); }
.games-section .section-head p { color: #b3a7d6; }

.game-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.18s, border-color 0.18s;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.game-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.game-card .tag,
.game-feature .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.game-card p { color: #b3a7d6; font-size: 0.96rem; }

/* featured game showcase */
.game-feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
}
.game-feature h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.game-feature p { color: #c4b8e6; }
.game-tagline {
  font-style: italic;
  font-weight: 600;
  color: #cbb3ff !important;
  font-size: 1.12rem;
  margin-bottom: 1.1rem !important;
}
.game-foot { font-style: italic; margin-top: 0.6rem; }
.feature-list {
  list-style: none;
  margin: 1.3rem 0 0.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0.55rem 1.6rem;
}
.feature-list li {
  color: #c4b8e6;
  font-size: 0.95rem;
  padding: 0.15rem 0;
}
.feature-list li strong { color: #fff; }
.store-badges { margin-top: 1.4rem; }
.badge-soon {
  display: inline-block;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #d8c9ff;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.shots-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 170px));
  justify-content: center;
  gap: 1rem;
}
.shot-placeholder {
  aspect-ratio: 9 / 19;
  border-radius: 16px;
  border: 1px dashed rgba(139, 92, 246, 0.5);
  background: linear-gradient(170deg, rgba(139, 92, 246, 0.14), rgba(25, 196, 232, 0.06));
  display: grid;
  place-items: center;
  text-align: center;
  color: #b3a7d6;
  padding: 1rem;
}
.shot-placeholder svg { width: 34px; height: 34px; opacity: 0.7; margin-bottom: 0.5rem; }
.shot-placeholder .s-label { font-size: 0.8rem; font-weight: 600; line-height: 1.4; }

/* ---------- Box Attack mini-game ---------- */

.ba-game {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.45);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 92, 246, 0.25), transparent 70%),
    linear-gradient(170deg, #1a1138, #0f0a22);
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 540px) {
  .ba-game { aspect-ratio: 3 / 4; }
}

#ba-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: crosshair;
}

.ba-hud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.ba-score {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ba-lives { display: flex; gap: 0.35rem; }

.ba-pip {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #ff6bcb;
  box-shadow: 0 0 8px rgba(255, 107, 203, 0.6);
  transition: background 0.2s, opacity 0.2s;
}
.ba-pip-off { background: rgba(255, 255, 255, 0.18); box-shadow: none; }

.ba-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(15, 10, 34, 0.72);
  backdrop-filter: blur(3px);
  transition: opacity 0.2s;
}
.ba-overlay.ba-hidden {
  opacity: 0;
  pointer-events: none;
}

.ba-overlay h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ba-overlay p {
  color: #c9bef0;
  font-size: 1rem;
  max-width: 320px;
  margin-bottom: 1.3rem;
}
.ba-overlay .ba-best {
  margin: 1rem 0 0;
  font-weight: 700;
  color: #f5a623;
}

/* ---------- Work gallery ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.work-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(10, 19, 34, 0.08);
  text-decoration: none;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item .work-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(10, 19, 34, 0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* placeholder tile (until real photos are dropped in) */
.work-item.work-placeholder {
  display: grid;
  place-items: center;
  border-style: dashed;
  border-color: rgba(25, 196, 232, 0.4);
}
.work-item.work-placeholder .ph-inner {
  text-align: center;
  color: #9fb6d0;
  padding: 1rem;
}
.work-item.work-placeholder svg { width: 44px; height: 44px; margin-bottom: 0.6rem; opacity: 0.8; }
.work-item.work-placeholder .ph-label { font-weight: 700; color: #c6d7ea; font-size: 0.95rem; }

/* ---------- Legal / privacy ---------- */

.legal {
  max-width: 780px;
}
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.7rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.8rem; }
.legal ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal .updated {
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: #8fa5bf;
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.site-footer img.footer-logo {
  height: 52px;
  width: auto;
  filter: invert(1);
  margin-bottom: 0.9rem;
  opacity: 0.9;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: #8fa5bf; text-decoration: none; transition: color 0.15s; }
.site-footer a:hover { color: var(--cyan); }

.footer-phone {
  color: var(--amber) !important;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* ---------- Responsive ---------- */

@media (min-width: 700px) {
  .brand-name { display: block; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 1.6rem; }
  .split-art { min-height: 200px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.6rem 5%;
    display: none;
    border-bottom: 2px solid var(--cyan);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
  }
  .nav-cta { margin: 0.8rem 0; text-align: center; border-radius: 10px; }
  .hero-inner { padding: 3.6rem 0 3.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
