/* theonenamedwill.com — ultra-minimal / bold (FLYNN 2026-06-12) */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #4da8ff;
  --accent-dim: #2f7fd4;
  --accent-glow: rgba(77, 168, 255, 0.14);
  --maxw: 1120px;
  --narrow: 720px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 4.5rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }

.muted { color: var(--muted); }
.accent { color: var(--accent); }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); line-height: 1.7; color: var(--muted); }
.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.container--narrow { max-width: var(--narrow); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand img {
  width: min(220px, 52vw);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--text);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--accent);
  border-color: var(--accent);
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: #fff;
  border-color: #fff;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Photo bands (full-bleed section backgrounds + SCRIM-01 sibling overlay) */
.hero--band,
.page-hero--band,
.section--band,
.cta-band--band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: #000;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.band-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(77, 168, 255, 0.1), transparent 55%);
}

.band-scrim--heavy {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.74) 50%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(ellipse at 70% 10%, rgba(77, 168, 255, 0.08), transparent 50%);
}

.band-content {
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .hero--band,
  .page-hero--band,
  .section--band,
  .cta-band--band,
  .veteran-band {
    background-attachment: fixed;
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .hero--band,
  .page-hero--band,
  .section--band,
  .cta-band--band,
  .veteran-band {
    background-attachment: scroll;
  }
}

.section--band .card,
.cta-band--band .card {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section--band .grid-3 {
  background: transparent;
  border: none;
  gap: 1px;
}

.section--band .grid-3 .card {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(3rem, 8vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.hero--band {
  padding: 0;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: flex-end;
  border-bottom: none;
}

.hero--band .band-content {
  width: 100%;
  padding: clamp(5rem, 14vh, 8rem) 0 0;
}

.hero__logo {
  width: min(420px, 88vw);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero__title {
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero__lead {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  padding: 1.125rem var(--pad);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-strip span:not(:last-child)::after {
  content: "·";
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid var(--border);
}

.section--band {
  padding: 0;
}

.section--band .band-content {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

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

/* Grid */
.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.card h3 { margin-bottom: 0.65rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

.card--link {
  display: block;
  transition: background 0.2s ease;
}

.card--link:hover {
  background: var(--bg-elevated);
}

.card--link:hover h3 { color: var(--accent); }

/* Quote */
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.5rem;
  max-width: 38rem;
}

.quote-block p {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
}

/* List */
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

/* CTA band */
.cta-band {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.cta-band--band {
  padding: 0;
  background: transparent;
}

.cta-band--band .band-content {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 34rem; margin: 0 auto 1.75rem; color: var(--muted); }

/* Veteran-owned pre-footer band */
.veteran-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: none;
  background-color: #000;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.veteran-band > .band-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.86) 32%, rgba(0, 0, 0, 0.92) 68%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(ellipse at 70% 5%, rgba(77, 168, 255, 0.05), transparent 45%);
}

.veteran-band__inner {
  width: 100%;
  text-align: center;
  padding: clamp(2.75rem, 6.5vw, 4.25rem) 0;
}

.veteran-band__title {
  font-size: clamp(0.95rem, 2.1vw, 1.3rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin: 0 auto 0.75rem;
  max-width: 44rem;
}

.veteran-band__text {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

.veteran-band__text p {
  margin: 0 0 0.85rem;
}

.veteran-band__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .veteran-band__title {
    max-width: 90%;
  }

  .veteran-band__text {
    width: 90%;
    max-width: 90%;
    font-size: clamp(0.82rem, 1.05vw, 0.92rem);
    line-height: 1.58;
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .veteran-band {
    max-height: none;
  }
}

/* Page masthead */
.page-hero {
  padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.page-hero--band {
  padding: 0;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  border-bottom: none;
}

.page-hero--band .band-content {
  width: 100%;
  padding: clamp(4.5rem, 12vh, 6.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 40rem; }

/* Prose */
.prose { max-width: 42rem; }
.prose p { margin-bottom: 1.15rem; color: var(--muted); }
.prose h2 { margin: 2.5rem 0 1rem; color: var(--text); }
.prose h3 { margin: 2rem 0 0.75rem; color: var(--text); }
.prose ul { margin: 0 0 1.25rem 1.25rem; list-style: disc; }
.prose li { margin-bottom: 0.5rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 48rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-q::after {
  content: "−";
}

.faq-a {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.contact-card h3 { margin-bottom: 0.75rem; }
.contact-card a:hover { color: var(--accent); }

.calendly-embed {
  min-height: 680px;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover { color: var(--accent); }

.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 1.5rem var(--pad);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--border);
  }

  body.nav-open .nav { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav { transition: none; }
}

/* Fixed back-to-top (BACK-TOP-FLYNN-01) */
.back-to-top-wrap {
  position: fixed;
  right: clamp(60px, 5vw + 48px, 100px);
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.back-to-top-wrap.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.nav-open .back-to-top-wrap {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.back-to-top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(77, 168, 255, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
}

.back-to-top-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  box-shadow: 0 0 20px var(--accent-glow);
}

.back-to-top-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top-wrap {
    transition-property: opacity, visibility;
    transition-duration: 0.14s;
    transform: translateY(0);
  }

  .back-to-top-wrap.is-visible {
    transform: translateY(0);
  }
}
