/* Pitchfork Sound — Friday homepage (PRODUCT_UX_FRIDAY §A + WEB_HERO_FRIDAY)
   Dark immersive photoreal DAW hero (hero-daw-workspace.png) · board-04 chrome
   H1 Better Rooms. Truer Music. · GET STARTED / TUNE YOUR SPACE → contact
   Primary circular blue-EQ Brand SVG masters. No bridge. AES-off. No person in hero.
*/
:root {
  --ocean: #0EA5E9;
  --ocean-deep: #0284C7;
  --deep-navy: #0B2540;
  --deep-navy-mid: #0F3356;
  --teal: #06B6D4;
  --light-blue: #7DD3FC;
  --navy: #0B3D91;
  --strong: #1E7CCB;
  --sky: #46B3F0;
  --pale: #B7E1FF;
  --bg: #F5F8FB;
  --bg-alt: #EAF2FA;
  --surface: #ffffff;
  --ink: #1A1A1A;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --nav-muted: #475569;
  --border: rgba(11, 37, 64, 0.10);
  --border-strong: rgba(14, 165, 233, 0.35);
  --white: #ffffff;
  --proof-bg: #0B2540;
  --proof-bg-deep: #071828;
  --proof-text: #F5F8FB;
  --proof-muted: #7DD3FC;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(11, 37, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 37, 64, 0.14);
  --max: 1100px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean-deep); text-decoration: none; }
a:hover { color: var(--deep-navy); text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— White sticky header (04 mockup) ——— */
/* Mount placeholders — reserve compact header height to limit FOUC */
#site-header {
  min-height: 57px; /* ~40px mark + 0.4rem*2 nav pad + border */
  flex-shrink: 0;
}
#site-footer {
  flex-shrink: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  gap: 0.12rem;
}
.brand-name .wordmark {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.brand-name .wordmark-sound {
  color: var(--ocean);
  font-weight: 700;
}
.brand-name .brand-micro {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  align-items: center;
}
.nav-links a {
  color: var(--nav-muted);
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--deep-navy); }
.nav-links .nav-cta,
a.nav-cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 0.5rem 1.05rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links .nav-cta:hover,
a.nav-cta:hover {
  background: var(--ocean-deep);
  color: var(--white) !important;
  text-decoration: none;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover { background: var(--ocean-deep); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--deep-navy);
  border-color: rgba(11, 37, 64, 0.18);
}
.btn-secondary:hover {
  background: var(--bg-alt);
  color: var(--deep-navy);
  border-color: var(--ocean);
}
.btn-hero {
  background: var(--ocean);
  color: var(--white);
  padding: 0.85rem 1.55rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(14, 165, 233, 0.4);
}
.btn-hero:hover {
  background: var(--ocean-deep);
  color: var(--white);
  text-decoration: none;
}
.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ——— Full-bleed photoreal hero (Friday light DAW workspace) ——— */
.hero {
  position: relative;
  padding: 0;
  border-bottom: none;
  background: #1a1a1a;
  color: var(--white);
  overflow: hidden;
  min-height: min(78vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-photo {
  min-height: min(82vh, 700px);
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
}
.hero-photo-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(7, 24, 40, 0.88) 0%, rgba(11, 37, 64, 0.72) 38%, rgba(11, 37, 64, 0.45) 62%, rgba(7, 24, 40, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 24, 40, 0.35) 0%, transparent 40%, rgba(7, 24, 40, 0.72) 100%);
}
.hero-dark-immersive {
  background: #071828;
  min-height: min(82vh, 700px);
}
.hero-dark-immersive .hero-photo-img {
  object-position: center 50%;
  filter: brightness(0.92) contrast(1.05);
}
.hero::before,
.hero::after { display: none; content: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
.hero-photo-inner {
  padding: 4rem 0 3rem;
  position: relative;
}
.hero-copy { text-align: left; max-width: 34rem; }
.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero .hero-sub {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(245, 248, 251, 0.95);
  line-height: 1.45;
  max-width: 30rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-tie {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--light-blue);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
}
.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
}

/* MEASURE / CORRECT / CREATE icon strip (ICP) */
.hero-process {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}
.hero-process li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 4.5rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}
.hero-process .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
}
.hero-process .icon svg {
  width: 36px;
  height: 36px;
  display: block;
}
.hero-process strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.hero-corner-cue {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.75);
  z-index: 2;
}
@media (max-width: 720px) {
  .hero-corner-cue { display: none; }
}
.hero-aside,
.hero-studio-cue,
.hero-cue { display: none !important; }

/* Legacy process-strip (kept for light sections if reused) */
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 560px) {
  .process-strip { grid-template-columns: 1fr; }
}
.process-strip li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.process-strip strong {
  display: block;
  color: var(--deep-navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.process-strip span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Unused light-hero illustration helpers (retained, unused on home) */
.hero-visuals { display: none; }
.illus {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem 0.9rem;
  overflow: hidden;
}
.illus-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.65rem;
}
.illus svg { width: 100%; height: auto; display: block; }

/* ——— Sections below fold ——— */
section { padding: 2.75rem 0; }
section.alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}
.section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--deep-navy);
  letter-spacing: -0.02em;
}
.section-sub {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 40rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 0.5rem;
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card .price {
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--ocean-deep);
  font-size: 1.05rem;
}
.card a { font-weight: 600; color: var(--ocean-deep); }

/* Dark proof / trust band */
.proof-band {
  background: linear-gradient(180deg, var(--proof-bg) 0%, var(--proof-bg-deep) 100%);
  color: var(--proof-text);
  padding: 2.5rem 0;
}
.proof-band .section-title { color: var(--white); }
.proof-band .section-sub { color: var(--proof-muted); opacity: 0.9; }
.proof-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.proof-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
}
.proof-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.proof-facts li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.proof-facts strong {
  display: block;
  color: var(--light-blue);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.proof-facts span {
  color: rgba(245, 248, 251, 0.78);
  font-size: 0.92rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.page-hero h1 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  color: var(--deep-navy);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.content { padding: 2.25rem 0 3rem; }
.content h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  color: var(--deep-navy);
  font-size: 1.3rem;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.content p, .content li { color: var(--text); }
.content ul, .content ol { padding-left: 1.25rem; }
.content li { margin-bottom: 0.4rem; }
.content .muted { color: var(--muted); }
.content .callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--ocean);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-left-width: 4px;
}
.content .callout.warn {
  border-left-color: var(--deep-navy);
  background: #eef4fb;
}
.content .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content .price-table th,
.content .price-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
}
.content .price-table th {
  color: var(--deep-navy);
  font-weight: 600;
  background: var(--bg-alt);
}
.content .price-table td:last-child {
  font-weight: 700;
  color: var(--ocean-deep);
  white-space: nowrap;
}
.content .price-table tr:last-child td { border-bottom: none; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--deep-navy);
}
.faq details[open] summary { margin-bottom: 0.5rem; }
.faq details p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Forms */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 32rem;
  box-shadow: var(--shadow);
}
.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-navy);
  margin-bottom: 0.3rem;
}
.form .field { margin-bottom: 1rem; }
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(11, 37, 64, 0.2);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--ocean);
  border-color: var(--ocean);
  background: #fafcfe;
}
.form textarea { min-height: 110px; resize: vertical; }
.form .hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.contact-info h2 { margin-top: 0; color: var(--deep-navy); }
.contact-info a { font-weight: 600; }
.placeholder-box {
  background: var(--bg-alt);
  border: 1px dashed rgba(14, 165, 233, 0.4);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
}
.placeholder-box p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.92rem; }

/* Contact dark band */
.contact-dark-band {
  background: linear-gradient(180deg, var(--proof-bg) 0%, var(--proof-bg-deep) 100%);
  color: var(--proof-text);
  padding: 1.75rem 0;
  margin-top: 0;
}
.contact-dark-band .band-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-dark-band img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-dark-band p {
  margin: 0;
  color: var(--proof-muted);
  max-width: 40rem;
  font-size: 0.98rem;
}
.contact-dark-band a { color: var(--light-blue); font-weight: 600; }


/* Lean services + same-page contact (Friday) */
.cards-lean {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.contact-home {
  padding: 2.75rem 0 3.25rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-home-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  max-width: 36rem;
  box-shadow: var(--shadow);
}
.contact-home-box p { margin: 0 0 0.65rem; color: var(--text); }
.contact-home-box .hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-home-box a { font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--proof-bg-deep);
  color: var(--proof-muted);
  padding: 2rem 0 1.5rem;
  margin-top: 0;
  font-size: 0.9rem;
}
.site-footer a { color: var(--ocean); }
.site-footer a:hover { color: var(--light-blue); }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.footer-brand:hover { color: var(--pale); text-decoration: none; }
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-note {
  border-top: 1px solid rgba(125, 211, 252, 0.12);
  padding-top: 1rem;
  color: rgba(125, 211, 252, 0.55);
  font-size: 0.8rem;
  max-width: 48rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.center { text-align: center; }

@media (max-width: 480px) {
  .nav-links { gap: 0.25rem 0.7rem; font-size: 0.85rem; }
  .brand-name .wordmark { font-size: 0.95rem; }
  .brand img { width: 60px; height: 60px; }
  .brand-name .brand-micro { font-size: 0.5rem; letter-spacing: 0.1em; }
  .hero, .hero-photo { min-height: min(70vh, 520px); }
  .hero-inner, .hero-photo-inner { padding: 2.5rem 0 2rem; }
  .hero-photo-scrim {
    background:
      linear-gradient(90deg, rgba(8, 16, 28, 0.82) 0%, rgba(8, 16, 28, 0.5) 100%),
      linear-gradient(180deg, transparent 40%, rgba(8, 16, 28, 0.65) 100%);
  }
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.field-check { margin: 0.75rem 0 1rem; }
.check-label { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem; color: var(--muted); font-weight: 500; }
.check-label input { margin-top: 0.2rem; }

.form-status {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text, #e8e8e8);
  font-size: 0.95rem;
}

.intent-fieldset {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}
.intent-fieldset legend {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--text, #e8e8e8);
}
.intent-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.intent-option {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted, #b0b0b0);
  font-weight: 500;
  cursor: pointer;
}
.intent-option input {
  margin-top: 0.2rem;
}
.contact-secondary {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}
.page-hero .lead-support {
  max-width: 36rem;
}

.contact-path {
  margin: 0 0 0.65rem;
  color: var(--muted, #b0b0b0);
  font-size: 0.98rem;
}

/* Compact one-row footer (contact ship 2026-09-22) */
.site-footer-compact {
  padding: 0.85rem 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.site-footer-compact .footer-brand {
  gap: 0.45rem;
  font-size: 0.92rem;
}
.site-footer-compact .footer-brand img {
  width: 28px;
  height: 28px;
}
.footer-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  font-size: 0.85rem;
}
.footer-copy {
  color: rgba(125, 211, 252, 0.55);
}


/* ——— Shared page-shell chrome (home + contact) ——— */
/* Compact 40px header/footer coupled via site-chrome.js */
html:has(body.page-shell),
html.page-home-root,
html.page-contact-root {
  height: 100%;
}

body.page-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
/* Homepage only: lock to one viewport, no page scroll */
body.page-home {
  height: 100dvh;
  overflow: hidden;
}
/* Contact: keep shared chrome, allow normal page scroll + prior form layout */
body.page-contact {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body.page-shell .site-header {
  flex-shrink: 0;
  position: relative; /* not sticky — flex column owns the viewport */
  top: auto;
}
body.page-shell .nav {
  padding: 0.4rem 0;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
body.page-shell .brand {
  gap: 0.5rem;
}
body.page-shell .brand img {
  width: 40px;
  height: 40px;
}
body.page-shell .brand-name .wordmark {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
body.page-shell .nav-links .nav-cta,
body.page-shell a.nav-cta {
  padding: 0.38rem 0.85rem;
  font-size: 0.72rem;
}
body.page-shell .site-footer,
body.page-shell .site-footer-compact {
  flex-shrink: 0;
  margin-top: 0;
}

/* ——— Homepage one-screen + vertically centered hero (left-aligned copy) ——— */
body.page-home main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.page-home .hero,
body.page-home .hero-photo,
body.page-home .hero-dark-immersive {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  justify-content: center; /* vertical center over photo */
}
body.page-home .hero-dark-immersive .hero-photo-img {
  /* Crop top of DAW shot — bias framing toward desk / monitors */
  object-position: center 78%;
}
body.page-home .hero-inner,
body.page-home .hero-photo-inner {
  padding: 1.35rem 0 1.5rem;
  /* Vertical center comes from .hero justify-content:center; keep copy left */
  text-align: left;
  align-items: start;
  justify-items: start;
}
body.page-home .hero-copy {
  text-align: left;
  margin-inline: 0;
  max-width: 34rem;
}
body.page-home .hero h1 {
  font-size: clamp(1.55rem, 4vw, 2.55rem);
  margin: 0 0 0.45rem;
}
body.page-home .hero-tie {
  margin: 0 0 0.35rem;
}
body.page-home .hero-sub {
  margin: 0 0 0.85rem;
  max-width: 30rem;
}
body.page-home .btn-hero {
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
}
body.page-home .hero-ctas {
  margin-bottom: 0;
  justify-content: flex-start;
}

/* ——— Contact page (shared chrome; restore prior two-column form layout) ——— */
/* Do not force a centered narrow column — use default .contact-grid. */
body.page-contact main {
  flex: 1 1 auto;
}

@media (max-width: 480px) {
  body.page-shell .brand img {
    width: 36px;
    height: 36px;
  }
  body.page-shell .brand-name .wordmark {
    font-size: 0.88rem;
  }
  body.page-home .hero-inner,
  body.page-home .hero-photo-inner {
    padding: 1rem 0 1.15rem;
  }
  body.page-home .hero h1 {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }
}


/* ——— Contact: one-screen, dark field matching the footer ——— */
/* Reserve the scrollbar gutter on BOTH pages so chrome can never shift between them. */
html:has(body.page-shell),
html.page-home-root,
html.page-contact-root {
  scrollbar-gutter: stable;
}

/* Lock contact to one viewport, exactly like the homepage. */
body.page-contact {
  height: 100dvh;
  overflow: hidden;
  /* Canvas deliberately left as var(--bg) so the light frame shows at the top and
     in the reserved scrollbar gutter - exactly like the homepage. */
}
body.page-contact main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  /* Top-anchored with a viewport-scaled pad. Centring tied the H1 clearance to
     viewport height - 79px at 768 but 219px at 1050, so it crowded the header on
     laptops and floated on desktops. This keeps it steady at roughly 55-70px. */
  justify-content: flex-start;
  padding-top: clamp(1.25rem, 5vh, 3.25rem);
  overflow: hidden;
  /* Lighter blue-grey sampled from the RENDERED home hero (its p85 tone is #1B2939),
     nudged a touch bluer. Deliberately lighter than the footer #071828 so the two
     read as separate bands instead of blending. */
  background: #1B2B3B;
}

/* Dark field over the non-form areas; the white gradient band goes away. */
body.page-contact .page-hero {
  background: transparent;
  border-bottom: 0;
  padding: 0.35rem 0 0.5rem;
}
body.page-contact .content {
  /* A little more separation between the H1/lead block and 'How to reach us'.
     Applied to .content so both grid columns move together and stay aligned. */
  padding: 0.85rem 0 0.9rem;
}

/* Text colours lifted from the home hero, which sits on this same #071828. */
body.page-contact .page-hero h1 { color: var(--white); }
body.page-contact .page-hero p,
body.page-contact .lead-support { color: rgba(245, 248, 251, 0.95); }
body.page-contact .contact-info h2 { color: var(--white); }
body.page-contact .contact-info p,
body.page-contact .contact-path { color: rgba(245, 248, 251, 0.95); }
body.page-contact .contact-info a { color: var(--ocean); }
body.page-contact .contact-info a:hover { color: var(--light-blue); }

/* The form is deliberately left alone - white card, original field styling. */

/* Tighten spacing so the whole page clears one screen. */
body.page-contact .contact-grid { gap: 1.25rem; }
body.page-contact .form { padding: 1.15rem; }
body.page-contact .form .field { margin-bottom: 0.62rem; }
body.page-contact .form textarea { min-height: 110px; }

/* Short viewports (phone landscape especially): the homepage hero is centred inside a
   100dvh box with overflow:hidden, so once the copy is taller than the box it overflows
   BOTH ends - the H1 slides under the sticky header and the CTA disappears behind the
   footer. Same fallback the contact page uses: let the page grow and scroll instead of
   clipping. min-height keeps the one-screen look whenever the content does fit, so no
   scrollbar appears unless it is actually needed. */
@media (max-height: 720px) {
  body.page-home {
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
  }
  body.page-home main { overflow: visible; }
  body.page-home .hero,
  body.page-home .hero-photo,
  body.page-home .hero-dark-immersive {
    min-height: 0;
  }
}

/* Shorter laptops: claw back a little vertical room so the card never abuts the footer. */
@media (max-height: 830px) {
  /* Below ~830px there is not room for both generous header clearance and a
     one-screen fit, so trim the pad and the textarea to buy back the space. */
  body.page-contact main { padding-top: 0.75rem; }
  body.page-contact .content { padding-top: 0.35rem; }
  body.page-contact .form { padding: 1rem; }
  body.page-contact .form .field { margin-bottom: 0.5rem; }
  body.page-contact .form textarea { min-height: 84px; }
}

/* If the viewport is genuinely too short, scroll rather than clip the form. */
@media (max-height: 720px) {
  body.page-contact { height: auto; min-height: 100dvh; overflow-y: auto; }
  body.page-contact main { overflow: visible; }
}
