/* ============================================================
   From Above Elevated Displays
   ============================================================ */

:root {
  --bg:        #050505;
  --bg-2:      #090909;
  --panel:     #0c0c0c;
  --ink:       #f1f0eb;
  --muted:     #8e8e89;
  --line:      rgba(255,255,255,0.14);
  --silver-1:  #ffffff;
  --silver-2:  #c7cfe0;
  --silver-3:  #7d879c;
  --accent:    #f1f0eb;
  --accent-2:  #b7b7b2;
  --accent-3:  #777772;
  --glow:      none;
  --maxw:      1200px;
  --ease:      cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
               Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.grad {
  background: none;
  color: var(--muted);
  font-style: italic;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.muted { color: var(--muted); }

/* ============================================================
   INTRO — LED WALL LIGHTS UP
   ============================================================ */
.intro {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 40%, #0b1020 0%, #05060a 70%);
}

/* 10 columns x 6 rows — portrait-oriented tiles */
.wall {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 6px;
  padding: 6px;
  filter: saturate(1.1);
}

.panel {
  position: relative;
  border-radius: 4px;
  background: #0a0c14;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .7s var(--ease), box-shadow .7s var(--ease),
              background-color .7s var(--ease), transform .7s var(--ease);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.panel.lit {
  opacity: 1;
  transform: scale(1);
}

/* overlay tint per panel set via JS custom property --c */
.panel.lit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.intro-logo {
  position: relative;
  z-index: 10;
  isolation: isolate;
  width: min(560px, 82vw);
  opacity: 0;
  transform: translateY(-72px) scale(0.985);
  filter: drop-shadow(0 10px 50px rgba(0,0,0,0.7));
  transition: opacity 4.6s var(--ease), transform 5.4s cubic-bezier(.18, .72, .18, 1);
}
.intro-logo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -42% -28%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(5,5,5,.98) 0%,
    rgba(5,5,5,.9) 38%,
    rgba(5,5,5,.58) 62%,
    rgba(5,5,5,0) 84%
  );
}
.intro-logo img { position: relative; z-index: 1; }
.intro-logo.show { opacity: 1; transform: translateY(0) scale(1); }

/* subtle vignette so logo pops over the wall */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(65% 55% at 50% 50%, rgba(5,6,10,0.15) 0%, rgba(5,6,10,0.82) 78%);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.scroll-cue.show { opacity: 1; }
.chevron {
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: bob 1.6s infinite;
}
@keyframes bob {
  0%,100% { transform: rotate(45deg) translate(0,0); opacity: .5; }
  50%     { transform: rotate(45deg) translate(3px,3px); opacity: 1; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(5,6,10,0);
  backdrop-filter: blur(0px);
  transform: translateY(-100%);
  transition: transform .5s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.show { transform: translateY(0); }
.nav.solid {
  background: rgba(6,8,14,0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-brand img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.9rem;
}
.nav-links a { color: var(--silver-2); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform .2s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); }

/* ============================================================
   LAYOUT / SECTIONS
   ============================================================ */
main { position: relative; z-index: 1; }

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 12vw, 140px) clamp(20px, 5vw, 40px);
}
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* HERO */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 220px) clamp(20px, 5vw, 40px) clamp(60px, 10vw, 110px);
  text-align: center;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  margin-bottom: 1.6rem;
}
.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--silver-2);
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--silver-1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }

.stats {
  display: flex;
  gap: clamp(24px, 6vw, 70px);
  justify-content: center;
  flex-wrap: wrap;
}
.stats div { display: flex; flex-direction: column; }
.stats strong {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  background: linear-gradient(180deg, var(--silver-1), var(--silver-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* DEMO WALL */
.demo-wall-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9);
}
.demo-wall {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 5px;
  aspect-ratio: 10 / 6;
  border-radius: 10px;
  overflow: hidden;
  background: #06070c;
}
.demo-wall .px {
  border-radius: 3px;
  background: #0a0c14;
  transition: background-color .45s ease, box-shadow .45s ease;
}
.demo-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--silver-2);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: rgba(62,166,255,0.5); color: #fff; }
.chip.is-active {
  background: linear-gradient(120deg, rgba(62,166,255,0.2), rgba(155,107,255,0.2));
  border-color: rgba(62,166,255,0.6);
  color: #fff;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(62,166,255,0.35);
  box-shadow: 0 30px 60px -30px rgba(62,166,255,0.35);
}
.card-ic {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(120deg, rgba(62,166,255,0.15), rgba(155,107,255,0.15));
  border: 1px solid var(--line);
  color: var(--accent);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ABOUT */
.about { border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.about h2 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.about-logo {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(62,166,255,0.10), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

/* CONTACT */
.contact { border-top: 1px solid var(--line); }
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(90% 100% at 50% 0%, rgba(155,107,255,0.12), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(32px, 6vw, 60px);
}
.contact-card h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .8rem; }
.contact-card > p { color: var(--muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.contact-form .row { display: flex; gap: 12px; }
.contact-form .row input { flex: 1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(62,166,255,0.6);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; align-self: center; }
.form-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.form-note a { color: var(--accent); }

/* FOOTER */
.footer {
  text-align: center;
  padding: 60px 20px 50px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer img { height: 88px; width: auto; margin: 0 auto 18px; opacity: .9; }
.footer p { color: var(--muted); font-size: 0.9rem; }
.footer .fine { font-size: 0.78rem; margin-top: 8px; opacity: .7; }
.footer .credit { font-size: 0.82rem; margin-top: 18px; }
.footer .credit a {
  color: var(--silver-1);
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .2s;
}
.footer .credit a:hover { opacity: .8; }

/* ============================================================
   GET A QUOTE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 4, 8, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  position: relative;
  width: min(520px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(155,107,255,0.14), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 50px 120px -30px rgba(0,0,0,0.9);
  transform: translateY(-24px) scale(.97);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.modal-sub { color: var(--muted); margin-bottom: 1.6rem; }

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--silver-2);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; transform: rotate(90deg); }

.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color .2s;
}
.quote-form select { appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.quote-form select option { background: var(--panel); color: var(--ink); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: none; border-color: rgba(62,166,255,0.6); }
.quote-form textarea { resize: vertical; }
.quote-form .btn { margin-top: 6px; align-self: stretch; text-align: center; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
/* Gentle fade + slide-in-down (from above), unrushed */
.reveal {
  opacity: 0;
  transform: translateY(-42px);
  transition: opacity 1.25s var(--ease), transform 1.25s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* HERO: slow, staggered fade-in-DOWN (each line drifts down from above) */
.hero.reveal { opacity: 1 !important; transform: none !important; transition: none; }
.hero > * {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1.5s var(--ease), transform 1.5s var(--ease);
}
.hero.in > * { opacity: 1; transform: translateY(0); }
.hero.in > *:nth-child(1) { transition-delay: .10s; }
.hero.in > *:nth-child(2) { transition-delay: .30s; }
.hero.in > *:nth-child(3) { transition-delay: .50s; }
.hero.in > *:nth-child(4) { transition-delay: .70s; }
.hero.in > *:nth-child(5) { transition-delay: .90s; }

/* Stagger children of a group so they cascade in, not all at once */
.cards .reveal:nth-child(2),
.reveal[data-delay="1"] { transition-delay: .12s; }
.cards .reveal:nth-child(3) { transition-delay: .24s; }
.cards .reveal:nth-child(4) { transition-delay: .36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .contact-form .row { flex-direction: column; }
  .wall { gap: 4px; padding: 4px; }
  .demo-wall { gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .panel { opacity: 1; transform: none; }
  .reveal, .hero > * { opacity: 1; transform: none; }
}

/* ============================================================
   MONOCHROME PRIVATE-SHOWROOM ART DIRECTION
   ============================================================ */
.intro { background: #050505; }
.wall { gap: 0; padding: 1px; }
.panel {
  border-radius: 0;
  background: #050505;
  box-shadow: none;
  opacity: 1;
  transform: none;
}
.panel::before,
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0;
  mix-blend-mode: normal;
  box-shadow: none;
}
.panel::before {
  background: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) top / 100% 1px no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(.32, 0, .18, 1);
}
.panel::after {
  background: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) left / 1px 100% no-repeat;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.15s .08s cubic-bezier(.32, 0, .18, 1);
}
.panel.lit::before { transform: scaleX(1); }
.panel.lit::after { transform: scaleY(1); }
.panel:nth-child(10n)::after {
  background:
    linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) left / 1px 100% no-repeat,
    linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) right / 1px 100% no-repeat;
}
.panel:nth-child(n+51)::before {
  background:
    linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) top / 100% 1px no-repeat,
    linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) bottom / 100% 1px no-repeat;
}
.panel.lit {
  background: #050505;
}
.intro::before { background: radial-gradient(55% 48% at 50% 50%, rgba(5,5,5,.1), rgba(5,5,5,.9) 85%); }
.nav.solid { background: rgba(5,5,5,.88); backdrop-filter: blur(18px); }
.nav-cta,
.btn { border-radius: 0; letter-spacing: .06em; }
.nav-cta { background: transparent; border: 1px solid rgba(255,255,255,.5); box-shadow: none; }
.btn-primary { background: var(--ink); color: #070707; box-shadow: none; }
.btn-primary:hover { background: #fff; box-shadow: 0 10px 40px rgba(255,255,255,.08); }
.btn-ghost { background: transparent; }
.kicker { color: var(--ink); font-weight: 500; }
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.stats strong { background: none; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.signature-display {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #030303;
}
.linework { position: absolute; inset: 0; pointer-events: none; }
.linework i { position: absolute; display: block; background: rgba(255,255,255,.11); }
.linework i:nth-child(1) { width: 1px; height: 100%; left: 16%; top: 0; }
.linework i:nth-child(2) { width: 1px; height: 100%; right: 16%; top: 0; }
.linework i:nth-child(3) { height: 1px; width: 100%; top: 19%; left: 0; }
.linework i:nth-child(4) { height: 1px; width: 100%; bottom: 19%; left: 0; }
.display-frame {
  position: relative;
  width: min(74%, 820px);
  aspect-ratio: 16 / 8.2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(125deg, transparent 30%, rgba(255,255,255,.035), transparent 68%),
    #060606;
  box-shadow: 0 45px 100px rgba(0,0,0,.8), inset 0 0 0 6px #030303;
}
.display-frame::before,
.display-frame::after { content: ""; position: absolute; background: rgba(255,255,255,.2); }
.display-frame::before { width: calc(100% + 70px); height: 1px; left: -35px; top: 50%; }
.display-frame::after { height: calc(100% + 70px); width: 1px; top: -35px; left: 50%; }
.display-mark { z-index: 1; padding: 25px 40px; background: #060606; text-align: center; }
.display-mark span { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 3vw, 2.4rem); letter-spacing: .2em; }
.display-mark small { display: block; margin-top: 12px; color: var(--muted); font-size: .62rem; letter-spacing: .35em; }
.display-caption { position: absolute; bottom: 25px; left: 0; right: 0; display: flex; justify-content: center; gap: clamp(20px, 6vw, 70px); color: var(--muted); font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; }

.card { border-radius: 0; background: transparent; border-width: 1px 0 0; padding: 30px 12px 42px 0; }
.card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.55); box-shadow: none; }
.card-ic { width: auto; height: auto; display: block; border: 0; border-radius: 0; background: none; color: var(--muted); font-size: 1rem; }
.about-logo, .contact-card, .modal { border-radius: 0; background: #080808; }
.about-logo { border-width: 1px 0; }
.contact-card { border-width: 1px 0; }
.quote-form input, .quote-form select, .quote-form textarea { border-radius: 0; background: transparent; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: rgba(255,255,255,.65); }
.form-note a, .footer .credit a { color: var(--ink); background: none; }
.footer { background: #050505; }

@media (max-width: 620px) {
  .wall {
    width: min(100%, 60vh);
    height: auto;
    aspect-ratio: 6 / 10;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(10, 1fr);
  }
  .panel:nth-child(10n)::after {
    background: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) left / 1px 100% no-repeat;
  }
  .panel:nth-child(6n)::after {
    background:
      linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) left / 1px 100% no-repeat,
      linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) right / 1px 100% no-repeat;
  }
  .panel:nth-child(n+51)::before {
    background: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) top / 100% 1px no-repeat;
  }
  .panel:nth-child(n+55)::before {
    background:
      linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) top / 100% 1px no-repeat,
      linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)) bottom / 100% 1px no-repeat;
  }
  .signature-display { min-height: 440px; }
  .display-frame { width: 82%; }
  .display-caption { flex-direction: column; align-items: center; gap: 6px; bottom: 16px; }
}
