:root {
  --bg: #edf0f1;
  --surface: #f8f9f9;
  --surface-strong: #ffffff;
  --ink: #121719;
  --muted: #667177;
  --line: #cbd2d5;
  --line-dark: #abb5ba;
  --accent: #2f6572;
  --accent-dark: #214c56;
  --archive: #15191b;
  --archive-surface: #202629;
  --archive-line: #343d41;
  --archive-muted: #a6afb3;
  --max: 1240px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.meta,
.eyebrow,
.section-label,
.card-number,
.archive-kicker {
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}


/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0 20px;
  background: transparent;
  border: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(18, 23, 25, 0.28) 0%,
    rgba(18, 23, 25, 0.18) 34%,
    rgba(18, 23, 25, 0.08) 58%,
    rgba(18, 23, 25, 0) 82%
  );
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.site-nav > a,
.nav-dropdown-toggle,
.nav-contact-trigger {
  border: 0;
  background: transparent;
  padding: 7px 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"],
.nav-contact-trigger:hover {
  color: var(--accent-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 220px;
  display: none;
  padding: 8px;
  background: rgba(248, 249, 249, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.10);
  backdrop-filter: blur(10px);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--ink);
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("../../i/bryan-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  border-top: 0 !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(237, 240, 241, 1) 0%,
      rgba(237, 240, 241, 1) 30%,
      rgba(237, 240, 241, 0.97) 39%,
      rgba(237, 240, 241, 0.82) 48%,
      rgba(237, 240, 241, 0.42) 59%,
      rgba(237, 240, 241, 0.08) 71%,
      rgba(237, 240, 241, 0) 79%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 112px 0 52px;
}

.hero-content {
  width: min(58%, 780px);
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -0.065em;
}

.hero h1 {
  font-size: clamp(4.6rem, 8vw, 8.7rem);
  line-height: 0.84;
}

.hero h2 {
  margin-top: 8px;
  color: var(--accent);
  font-size: clamp(2.9rem, 5.25vw, 5.9rem);
  line-height: 0.92;
  white-space: nowrap;
}

.hero-lede {
  max-width: 720px;
  margin: 34px 0 0;
  padding-top: 25px;
  border-top: 4px solid var(--accent);
  font-size: clamp(1.14rem, 1.65vw, 1.48rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}



.hero-fact strong {
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-fact span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.wrong-bryan-hero {
  width: min(100%, 640px);
  margin-top: 36px;
  padding: 14px 16px;
  background: rgba(248, 249, 249, 0.74);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(6px);
}

.wrong-bryan-hero strong,
.wrong-bryan-hero span {
  display: block;
}

.wrong-bryan-hero strong {
  font-size: 0.76rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.wrong-bryan-hero span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}


/* MOBILE / TABLET HERO */

@media (max-width: 1100px) {
  .hero-content {
    width: min(64%, 720px);
  }

}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-bottom: 0 !important;
    background:
      linear-gradient(
        180deg,
        rgba(237, 240, 241, 1) 0%,
        rgba(237, 240, 241, 1) 42%,
        rgba(237, 240, 241, 0.92) 52%,
        rgba(237, 240, 241, 0.14) 68%,
        rgba(237, 240, 241, 0) 76%
      ),
      url("../../i/bryan-hero.png") 68% bottom / cover no-repeat;
  }

  .hero-overlay {
    display: none;
  }

  .hero-inner {
    min-height: 1120px;
    align-items: flex-start;
    padding: 65px 0 520px;
  }

  .hero-content {
    width: 100%;
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 6.4rem);
  }

  .hero h2 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .hero-lede {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(237, 240, 241, 1) 0%,
        rgba(237, 240, 241, 1) 47%,
        rgba(237, 240, 241, 0.9) 58%,
        rgba(237, 240, 241, 0.12) 72%,
        rgba(237, 240, 241, 0) 78%
      ),
      url("../../i/bryan-hero.png") 70% bottom / auto 700px no-repeat,
      var(--bg);
  }

  .hero-inner {
    min-height: 1180px;
    padding: 58px 0 560px;
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 20vw, 5.4rem);
  }

  .hero h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 42px;
    padding-inline: 16px;
  }

}


/* GENERAL SECTIONS */

section:not(.hero) {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading h2,
.contact-grid h2,
.wrong-bryan h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-intro {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}


/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: start;
}

.about-copy {
  font-family: Georgia, serif;
  font-size: clamp(1.22rem, 1.85vw, 1.55rem);
  line-height: 1.72;
}

.about-copy p:first-child {
  margin-top: 0;
}

.fact-panel {
  border-top: 1px solid var(--ink);
}

.fact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.fact-label {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.currently {
  margin-top: 72px;
  border-top: 1px solid var(--ink);
}

.current-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.current-label {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* PROJECT CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-dark);
}

.card h3 {
  margin: 40px 0 10px;
  font-size: 1.7rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  margin-top: 40px;
  font-weight: 700;
  text-decoration: none;
}


/* ARCHIVE */

.archive {
  background: var(--archive);
  color: #f1f3f3;
  border-top-color: var(--archive-line) !important;
}

.archive .section-label,
.archive .section-intro,
.archive .meta,
.archive .archive-kicker {
  color: var(--archive-muted);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.archive-item {
  background: var(--archive-surface);
  border: 1px solid var(--archive-line);
}

.archive-item:nth-child(1) {
  grid-column: span 7;
}

.archive-item:nth-child(2) {
  grid-column: span 5;
  margin-top: 78px;
}

.archive-item:nth-child(3) {
  grid-column: 2 / span 5;
}

.archive-item:nth-child(4) {
  grid-column: 7 / span 6;
  margin-top: 60px;
}

.old-homepage {
  min-height: 260px;
  padding: 45px 26px;
  background: #fff;
  color: #000;
  font-family: "Times New Roman", serif;
}

.old-homepage h4 {
  margin: 0;
  font-size: 1rem;
}

.archive-image {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, #252c30, #1d2225);
  color: #8f999e;
  font-family: "Courier New", monospace;
  text-align: center;
}

.archive-leadhog {
  background:
    radial-gradient(circle at 70% 30%, rgb(47 101 114 / 0.28), transparent 40%),
    linear-gradient(135deg, #20282c, #171c1f);
}

.archive-leadhog strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -0.06em;
}

.archive-leadhog small {
  display: block;
  margin-top: 5px;
  color: var(--archive-muted);
  font-size: 0.72rem;
}

.archive-caption {
  padding: 24px;
}

.archive-caption h3 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
}

.archive-caption p {
  margin: 0;
  color: var(--archive-muted);
  font-size: 0.92rem;
}


/* INTERESTS */

.interest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.interest-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
}

.interest-card:hover {
  border-color: var(--line-dark);
}

.interest-number {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.interest-card strong {
  margin-top: auto;
  font-size: 1.23rem;
}

.interest-card span:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}


/* AUDIO */

.audio-section {
  background: var(--surface);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.photo-stack {
  display: grid;
  gap: 18px;
}

.photo-placeholder {
  min-height: 270px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #d7dee1, #e8ecee);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
}

.photo-main {
  min-height: 610px;
}


/* CONTACT */







.contact-intro {
  margin: 28px 0 0;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.contact-secondary {
  max-width: 440px;
  color: var(--muted);
}



.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(47 101 114 / 0.10);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.error {
  color: #8a3025;
}

.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-success h3 {
  margin: 10px 0 12px;
  font-size: 2rem;
}

.contact-success p {
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

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


/* FOOTER */

footer {
  padding: 68px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.still-back {
  margin: 2px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: -0.04em;
}

.footer-small {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}


/* RESPONSIVE */

@media (max-width: 1040px) {

  .interest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 860px) {

  .site-nav {
    gap: 14px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .wrong-bryan-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .archive-item:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-main {
    min-height: 440px;
  }
}

@media (max-width: 680px) {

  .wrap {
    width: min(calc(100% - 30px), var(--max));
  }

  .site-header {
    position: relative;
  }


  .hero,

  .hero h1 {
    font-size: clamp(4rem, 23vw, 6.2rem);
  }

  .hero-photo-caption {
    display: block;
  }

  .hero-photo-caption span:last-child {
    display: block;
    margin-top: 5px;
  }

  section:not(.hero) {
    padding: 80px 0;
  }

  .fact-row,
  .current-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .interest-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    padding: 22px;
  }

  .footer-grid {
    display: block;
  }

  .footer-small {
    margin-top: 35px;
    text-align: left;
  }
}




/* BUTTONS */

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  min-height: 44px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-ghost {
  background: rgba(248, 249, 249, 0.66);
  border-color: var(--line-dark);
  color: var(--ink);
  backdrop-filter: blur(4px);
}

.button-ghost:hover {
  background: rgba(248, 249, 249, 0.92);
  border-color: var(--ink);
}

.button:focus-visible {
  outline: 3px solid rgb(47 101 114 / 0.22);
  outline-offset: 3px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button {
  flex: 0 0 auto;
  width: auto !important;
  max-width: max-content !important;
}


/* ABOUT INFOGRAPHIC */

.about-facts-wrap {
  margin-top: 74px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.about-fact {
  min-width: 0;
  padding: 8px 22px 4px;
  text-align: center;
  border-left: 1px solid var(--line-dark);
}

.about-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-fact:last-child {
  padding-right: 0;
}

.about-fact-icon {
  display: block;
  min-height: 38px;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.about-fact strong,
.about-fact span:last-child {
  display: block;
}

.about-fact strong {
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-fact span:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-facts {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .about-fact:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .about-facts {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .about-fact,
  .about-fact:first-child,
  .about-fact:nth-child(4) {
    padding: 0 14px;
    border-left: 1px solid var(--line-dark);
  }

  .about-fact:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about-fact:nth-child(even) {
    padding-right: 0;
  }

  .about-fact:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .hero h2 {
    white-space: nowrap;
    font-size: clamp(2.3rem, 11.2vw, 3.45rem);
  }
}


@media (max-width: 1120px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* MOBILE NAV + HERO ACTION SAFETY */

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    padding: 16px 0 13px;
  }

  .site-nav {
    display: flex;
    width: 100%;
    gap: 13px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    flex: 0 0 auto;
    font-size: 0.69rem;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .hero-inner {
    padding-top: 92px;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .button {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.74rem;
    line-height: 1;
    white-space: nowrap;
  }
}


.nav-contact-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 7px 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
}


/* PROJECT VISUAL CARDS */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-dark);
}

.project-visual {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.project-visual-label,
.project-visual-note {
  position: relative;
  z-index: 1;
}

.project-visual-label {
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.project-visual-note {
  margin-top: 4px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-visual-nocteris {
  background:
    radial-gradient(circle at 75% 24%, rgba(47, 101, 114, 0.34), transparent 34%),
    linear-gradient(145deg, #dce5e7, #f3f6f7);
}

.project-visual-bw {
  background:
    linear-gradient(135deg, rgba(18, 23, 25, 0.08), transparent 46%),
    linear-gradient(160deg, #e7ebed, #f8f9f9);
}

.project-visual-brys {
  background:
    radial-gradient(circle at 25% 35%, rgba(47, 101, 114, 0.18), transparent 28%),
    linear-gradient(145deg, #eef2f3, #d8e0e3);
}

.project-visual-leadhog {
  background:
    radial-gradient(circle at 72% 25%, rgba(47, 101, 114, 0.30), transparent 34%),
    linear-gradient(145deg, #d8e1e4, #f1f4f5);
}

.project-visual-coming {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(18, 23, 25, 0.025) 0,
      rgba(18, 23, 25, 0.025) 10px,
      rgba(18, 23, 25, 0.055) 10px,
      rgba(18, 23, 25, 0.055) 11px
    ),
    var(--bg);
}

.project-card-body {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.project-card h3 {
  margin: 38px 0 10px;
  font-size: 1.7rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.project-card-coming {
  opacity: 0.8;
}

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

@media (max-width: 980px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 180px;
  }

  .project-card-body {
    min-height: 280px;
  }
}


/* CONTACT MODAL */

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.contact-modal.open {
  display: grid;
  place-items: center;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 16, 0.70);
  backdrop-filter: blur(5px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 980px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 0;
  background: var(--surface-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.contact-modal-copy {
  padding: 44px;
  background: var(--bg);
  border-right: 1px solid var(--line);
}

.contact-modal-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-modal-form-area {
  padding: 44px;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  .contact-modal {
    align-items: end;
  }

  .contact-modal-dialog {
    width: 100%;
    max-height: 94vh;
    grid-template-columns: 1fr;
  }

  .contact-modal-copy {
    padding: 30px 24px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-modal-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .contact-modal-form-area {
    padding: 24px;
  }

  .contact-modal-close {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: calc(94vh - 50px);
  }
}


/* ============================================================
   V7 FINAL OVERRIDES
   ============================================================ */

:root {
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* Softer global geometry */

.button,
.nav-dropdown-menu,
.project-card,
.project-visual,
.contact-modal-dialog,
.form-row input,
.form-row textarea,
.contact-form-shell,
.fact-panel,
.wrong-bryan-hero {
  border-radius: var(--radius-sm);
}

.project-card,
.contact-modal-dialog {
  border-radius: var(--radius-md);
  overflow: hidden;
}


/* Navigation */

.site-header {
  background: transparent !important;
  border: 0 !important;
  overflow: visible;
}

.site-header::after {
  z-index: 0;
}

.header-inner,
.site-nav,
.nav-dropdown {
  position: relative;
  z-index: 5;
}

.nav-dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-dropdown-menu {
  top: calc(100% - 1px) !important;
  left: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(248, 249, 249, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.12);
  backdrop-filter: blur(12px);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
}

.site-nav > a,
.nav-dropdown-toggle,
.nav-contact-trigger {
  font-size: 0.86rem !important;
  font-weight: 650;
  line-height: 1 !important;
  padding: 7px 0 !important;
  letter-spacing: 0.045em;
}

.nav-contact-trigger {
  font-family: inherit;
}


/* All section H2s: one line, two colors */

.section-heading h2,
.contact-modal-copy h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-wrap: nowrap;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.65vw, 4.45rem);
}

.section-heading h2 span,
.contact-modal-copy h2 span {
  color: var(--ink);
  font-style: normal;
}

.section-heading h2 em,
.contact-modal-copy h2 em {
  color: var(--accent);
  font-style: normal;
}

@media (max-width: 1000px) {
  .section-heading h2 {
    font-size: clamp(1.95rem, 4.5vw, 3.8rem);
  }
}

@media (max-width: 680px) {
  .section-heading h2 {
    font-size: clamp(1.45rem, 6.1vw, 2.25rem);
    letter-spacing: -0.04em;
  }
}


/* Project cards */

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.project-visual {
  min-height: 225px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.project-browser-bar {
  position: relative;
  z-index: 4;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

.project-visual-stage {
  position: relative;
  z-index: 2;
  min-height: 191px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.brand-mark {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.brand-line {
  margin-top: 10px;
  max-width: 270px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.76;
}

.brand-ui-lines {
  width: min(70%, 230px);
  margin-top: 24px;
}

.brand-ui-lines i {
  display: block;
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.13;
}

.brand-ui-lines i:nth-child(2) { width: 78%; }
.brand-ui-lines i:nth-child(3) { width: 54%; }

.project-card-body {
  min-height: 320px;
}


/* Nocteris.com */

.project-nocteris .project-visual {
  background:
    radial-gradient(circle at 80% 24%, rgba(19,128,196,0.34), transparent 34%),
    linear-gradient(145deg, #05101E 0%, #08182A 62%, #0A2134 100%);
  color: #fff;
}

.project-nocteris .project-browser-bar {
  color: #1380C4;
}

.project-nocteris .brand-mark {
  color: #fff;
}

.project-nocteris .brand-line {
  color: #9ed8fb;
}


/* BW Web Dev */

.project-bw .project-visual {
  background:
    linear-gradient(145deg, rgba(19,43,66,0.06), transparent 52%),
    #F5F0E7;
  color: #132B42;
}

.project-bw .project-browser-bar {
  color: #D77643;
  background: rgba(19,43,66,0.045);
  border-bottom-color: rgba(19,43,66,0.08);
}

.project-bw .brand-mark {
  color: #132B42;
}

.project-bw .brand-line {
  color: #D77643;
}


/* NoAI Pledge Registry */

.project-noai-registry .project-visual {
  background:
    linear-gradient(180deg, #F3F1E9 0%, #F0F0EA 100%);
  color: #1B1D20;
}

.project-noai-registry .project-browser-bar {
  color: #C94A36;
  background: rgba(27,29,32,0.035);
  border-bottom-color: rgba(27,29,32,0.08);
}

.registry-stage {
  align-items: flex-start;
}

.registry-seal {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 2px solid #C94A36;
  border-radius: 50%;
  color: #C94A36;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.project-noai-registry .brand-line {
  color: #C94A36;
}


/* Nocteris.AI */

.project-nocteris-ai .project-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(65,230,134,0.12), transparent 35%),
    #020A06;
  color: #41E686;
}

.project-nocteris-ai .project-browser-bar {
  color: #41E686;
  background: rgba(65,230,134,0.05);
  border-bottom-color: rgba(65,230,134,0.12);
}

.ai-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.glow-one {
  width: 180px;
  height: 180px;
  right: -35px;
  top: 45px;
  background: rgba(65,230,134,0.24);
}

.glow-two {
  width: 120px;
  height: 120px;
  left: 10%;
  bottom: -35px;
  background: rgba(65,230,134,0.13);
}

.ai-stage {
  overflow: hidden;
}

.ai-orbit {
  position: absolute;
  width: 175px;
  height: 175px;
  right: 6%;
  top: 10%;
  border: 1px solid rgba(65,230,134,0.34);
  border-radius: 50%;
  box-shadow:
    0 0 25px rgba(65,230,134,0.18),
    inset 0 0 24px rgba(65,230,134,0.09);
}

.ai-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 13px;
  top: 25px;
  border-radius: 50%;
  background: #41E686;
  box-shadow: 0 0 14px #41E686;
}

.project-nocteris-ai .brand-mark {
  text-shadow: 0 0 22px rgba(65,230,134,0.26);
}


/* Bry's Place */

.project-brysplace .project-visual {
  background:
    radial-gradient(circle at 75% 25%, rgba(235,175,102,0.14), transparent 28%),
    linear-gradient(145deg, #030A12 0%, #07111E 100%);
  color: #DAD9D2;
}

.project-brysplace .project-browser-bar {
  color: #EBAF66;
}

.project-brysplace .brand-mark {
  color: #EBAF66;
}

.brys-tools {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}

.brys-tools span {
  padding: 5px 8px;
  border: 1px solid rgba(218,217,210,0.18);
  border-radius: 5px;
  color: #DAD9D2;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}


/* Lead Hog */

.project-leadhog .project-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #FDEBF3 0%, #FFF7FA 100%);
  color: #1A261F;
}

.project-leadhog .project-browser-bar {
  color: #FF87BA;
  background: rgba(26,38,31,0.035);
  border-bottom-color: rgba(26,38,31,0.08);
}

.project-leadhog .brand-mark {
  color: #1A261F;
}

.project-leadhog .brand-line {
  color: #9A4E70;
}

.leadhog-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.75;
}

.bubble-one {
  width: 120px;
  height: 120px;
  right: 7%;
  top: 22%;
  background: #BAFFDC;
}

.bubble-two {
  width: 85px;
  height: 85px;
  right: 24%;
  bottom: 5%;
  background: #FF87BA;
  opacity: 0.28;
}

@media (max-width: 980px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  .project-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Contact modal: compact placeholder-led form */

.contact-modal-dialog {
  border-radius: var(--radius-lg);
}

.contact-modal-copy,
.contact-modal-form-area {
  padding: 34px;
}

.contact-form {
  gap: 14px;
}

.form-row {
  gap: 5px;
}

.form-row label {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.form-row input,
.form-row textarea {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  background: #fff;
}

.form-row textarea {
  min-height: 120px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9AA2A6;
}

@media (max-width: 760px) {
  .contact-modal-copy,
  .contact-modal-form-area {
    padding: 24px;
  }
}


/* Mobile nav consistency + working Interests */

@media (max-width: 680px) {
  .site-nav {
    align-items: center;
    overflow: visible;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .site-nav > a,
  .nav-dropdown-toggle,
  .nav-contact-trigger {
    flex: 0 0 auto;
    font-size: 0.69rem !important;
    line-height: 1 !important;
    padding: 6px 0 !important;
    letter-spacing: 0.035em;
  }

  .nav-dropdown {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown-menu {
    top: calc(100% + 6px) !important;
    left: 0;
    width: 205px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
}


/* V8 overrides */
.section-heading{display:block!important;grid-template-columns:none!important;gap:0!important;margin-bottom:58px}.section-heading .section-label{display:block;margin-bottom:13px}.section-heading h2{display:block;width:100%;max-width:100%;margin:0;text-align:left;white-space:nowrap}.section-heading .section-intro{width:min(100%,780px);margin:20px 0 0}.archive .section-heading h2 span{color:#f2f4f5!important}.archive .section-heading h2 em{color:#69b7df!important}.brand-accordion{border-top:1px solid var(--line-dark)}.brand-panel{border-bottom:1px solid var(--line-dark)}.brand-tab{appearance:none;width:100%;display:grid;grid-template-columns:48px minmax(180px,.9fr) minmax(220px,1fr) 32px;align-items:center;gap:18px;min-height:78px;margin:0;padding:0 22px;border:0;background:transparent;color:var(--ink);text-align:left;cursor:pointer;transition:background-color .16s ease,padding-left .16s ease}.brand-tab:hover,.brand-panel.hovering .brand-tab{background:rgba(255,255,255,.33);padding-left:28px}.brand-tab-index{color:var(--muted);font-family:"Courier New",monospace;font-size:.72rem;letter-spacing:.08em}.brand-tab-name{font-size:clamp(1.15rem,2vw,1.65rem);font-weight:780;letter-spacing:-.03em}.brand-tab-tag{color:var(--muted);font-size:.77rem;letter-spacing:.06em;text-transform:uppercase}.brand-tab-toggle{justify-self:end;color:var(--accent);font-size:1.5rem;line-height:1}.brand-panel-content{display:grid;grid-template-rows:0fr;overflow:hidden;transition:grid-template-rows .36s cubic-bezier(.22,.61,.36,1)}.brand-panel-content>.brand-showcase{min-height:0;overflow:hidden}.brand-panel.open .brand-panel-content{grid-template-rows:1fr}.brand-showcase{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);align-items:stretch;min-height:430px;margin:0 0 24px;border:1px solid var(--line);border-radius:14px;background:var(--surface);overflow:hidden;box-shadow:0 18px 46px rgba(18,23,25,.05)}.brand-showcase.reverse{grid-template-columns:minmax(300px,.55fr) minmax(0,1.45fr)}.brand-copy{display:flex;flex-direction:column;justify-content:center;padding:44px}.brand-copy h3{margin:12px 0;font-size:clamp(2rem,3.4vw,3.5rem);line-height:.98;letter-spacing:-.05em}.brand-copy p{max-width:500px;margin:0;color:var(--muted);font-size:1rem;line-height:1.68}.brand-copy .card-link{display:inline-block;margin-top:28px}.brand-visual{position:relative;min-height:430px;overflow:hidden}.brand-visual-inner{position:relative;z-index:3;height:100%;display:flex;flex-direction:column;justify-content:center;padding:54px}.mini-kicker{font-family:"Courier New",monospace;font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;opacity:.76}.mini-headline{margin-top:18px;font-size:clamp(2.6rem,5vw,5.4rem);line-height:.91;letter-spacing:-.055em;font-weight:820}.mini-copy{max-width:480px;margin-top:22px;font-size:.88rem;line-height:1.6;opacity:.76}.mini-rule{width:120px;height:3px;margin-top:24px;background:currentColor;opacity:.7}.brand-visual-nocteris{background:radial-gradient(circle at 78% 28%,rgba(19,128,196,.32),transparent 34%),linear-gradient(145deg,#05101E 0%,#071A2C 58%,#0A2035 100%);color:#fff}.brand-visual-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:34px 34px;mask-image:linear-gradient(90deg,black 0%,transparent 88%)}.brand-nocteris .brand-tab-name{color:#0B5D91}.brand-visual-bw{background:linear-gradient(145deg,rgba(19,43,66,.035),transparent 52%),#F5F0E7;color:#132B42}.brand-visual-bw .mini-kicker{color:#D77643}.mini-bw-card{display:flex;flex-wrap:wrap;gap:8px;margin-top:30px}.mini-bw-card span{padding:8px 11px;border:1px solid rgba(19,43,66,.14);border-radius:7px;background:rgba(255,255,255,.38);font-size:.72rem}.brand-bw .brand-tab-name{color:#D77643}.brand-visual-registry{background:linear-gradient(180deg,#F3F1E9 0%,#F0F0EA 100%);color:#1B1D20}.registry-mark{position:absolute;right:7%;top:12%;width:140px;height:140px;display:grid;place-items:center;border:3px solid #C94A36;border-radius:50%;color:#C94A36;font-size:1.2rem;font-weight:850;letter-spacing:.08em;transform:rotate(-7deg);opacity:.82}.registry-lines{width:min(60%,330px);margin-top:30px}.registry-lines i{display:block;height:1px;margin-top:15px;background:#1B1D20;opacity:.18}.registry-lines i:nth-child(2){width:82%}.registry-lines i:nth-child(3){width:61%}.brand-registry .brand-tab-name{color:#C94A36}.brand-visual-ai{background:radial-gradient(circle at 52% 48%,rgba(65,230,134,.10),transparent 34%),#020A06;color:#41E686}.ai-halo{position:absolute;border-radius:50%;filter:blur(48px)}.halo-a{width:260px;height:260px;right:-40px;top:20px;background:rgba(65,230,134,.20)}.halo-b{width:180px;height:180px;left:5%;bottom:-45px;background:rgba(65,230,134,.12)}.ai-orbit-large{position:absolute;right:9%;top:17%;width:260px;height:260px;border:1px solid rgba(65,230,134,.33);border-radius:50%;box-shadow:0 0 38px rgba(65,230,134,.14),inset 0 0 36px rgba(65,230,134,.08)}.ai-console{display:flex;gap:7px;margin-top:30px}.ai-console span{width:50px;height:8px;border-radius:999px;background:#41E686;box-shadow:0 0 12px rgba(65,230,134,.45);opacity:.68}.brand-ai .brand-tab-name{color:#2BA761}.brand-visual-brys{background:radial-gradient(circle at 74% 28%,rgba(235,175,102,.13),transparent 28%),linear-gradient(145deg,#030A12 0%,#07111E 100%);color:#DAD9D2}.brand-visual-brys .mini-kicker,.brand-visual-brys .mini-headline{color:#EBAF66}.brys-console{display:grid;grid-template-columns:repeat(4,minmax(80px,1fr));gap:9px;margin-top:30px;width:min(100%,520px)}.brys-console span{padding:13px;border:1px solid rgba(218,217,210,.14);border-radius:8px;background:rgba(255,255,255,.025);font-size:.67rem;text-align:center;letter-spacing:.06em}.brand-brys .brand-tab-name{color:#B57B39}.brand-visual-leadhog{background:linear-gradient(145deg,#FDEBF3 0%,#FFF8FB 100%);color:#1A261F}.hog-bubble{position:absolute;border-radius:50%}.hog-a{width:220px;height:220px;right:7%;top:18%;background:#BAFFDC;opacity:.76}.hog-b{width:145px;height:145px;right:24%;bottom:4%;background:#FF87BA;opacity:.28}.hog-pill-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:30px}.hog-pill-row span{padding:8px 12px;border:1px solid rgba(26,38,31,.12);border-radius:999px;background:rgba(255,255,255,.42);font-size:.7rem}.brand-leadhog .brand-tab-name{color:#C14F7D}@media(max-width:900px){.brand-tab{grid-template-columns:40px minmax(150px,1fr) 28px}.brand-tab-tag{display:none}.brand-showcase,.brand-showcase.reverse{grid-template-columns:1fr}.brand-showcase.reverse .brand-copy{order:2}.brand-showcase.reverse .brand-visual{order:1}.brand-visual,.brand-showcase{min-height:360px}.brand-visual-inner{padding:38px}.brand-copy{padding:34px}}@media(max-width:680px){.section-heading h2{font-size:clamp(1.42rem,6vw,2.15rem)}.brand-tab{min-height:66px;grid-template-columns:32px 1fr 24px;gap:10px;padding:0 12px}.brand-tab-name{font-size:1.05rem}.brand-showcase{margin-bottom:14px;border-radius:10px}.brand-visual,.brand-showcase{min-height:320px}.brand-visual-inner{padding:28px}.mini-headline{font-size:clamp(2.35rem,14vw,4rem)}.brand-copy{padding:28px}.brys-console{grid-template-columns:repeat(2,1fr)}.registry-mark{width:100px;height:100px;font-size:.9rem}.ai-orbit-large{width:190px;height:190px}}


/* ============================================================
   V9 LAUNCH BASELINE — CLEAN REBUILD
   ============================================================ */

/* RackStar-style staged navigation.
   The entire header is staged at launch, so it is not rendered. */
.site-header.nav-staged,
.site-nav .nav-staged {
  display: none !important;
}

/* With no top nav at launch, the hero owns the top of the viewport. */
.hero-inner {
  padding-top: 64px !important;
}


/* ABOUT — clean editorial layout */

.about-section {
  position: relative;
}

.about-heading {
  display: block !important;
  margin-bottom: 64px;
}

.about-heading .section-label {
  display: block;
  margin-bottom: 13px;
}

.about-heading h2 {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

.about-heading .section-intro {
  width: min(100%, 780px);
  margin: 18px 0 0;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.about-story {
  max-width: 760px;
}

.about-story-label {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-family: "Courier New", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-story p {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-story .about-story-lead {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.15vw, 1.9rem);
  line-height: 1.55;
}

.about-visual {
  display: grid;
  gap: 18px;
}

.about-visual-frame {
  padding: 10px;
  background: rgba(255,255,255,.42);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-visual-placeholder {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 75% 20%, rgba(47,101,114,.16), transparent 28%),
    linear-gradient(145deg, #dde4e6, #eef1f2);
  border-radius: 11px;
  color: var(--muted);
  text-align: center;
}

.about-visual-placeholder span {
  font-family: "Courier New", monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.about-visual-placeholder small {
  display: block;
  max-width: 290px;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: .85rem;
  line-height: 1.55;
}

.about-side-note {
  padding: 23px 24px;
  background: rgba(248,249,249,.58);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.about-side-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: .95rem;
  line-height: 1.62;
}

.about-now {
  margin-top: 78px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.about-now-heading {
  margin-bottom: 22px;
}

.about-now-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-now-item {
  min-height: 155px;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}

.about-now-item:first-child {
  border-left: 0;
}

.about-now-label {
  display: block;
  color: var(--accent-dark);
  font-family: "Courier New", monospace;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .11em;
}

.about-now-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-editorial {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
    align-items: stretch;
  }

  .about-visual-placeholder {
    min-height: 310px;
  }

  .about-now-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-now-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-now-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero-inner {
    padding-top: 48px !important;
  }

  .about-heading {
    margin-bottom: 46px;
  }

  .about-heading h2 {
    white-space: normal;
  }

  .about-editorial {
    gap: 38px;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual-placeholder {
    min-height: 280px;
  }

  .about-now {
    margin-top: 58px;
  }

  .about-now-grid {
    grid-template-columns: 1fr;
  }

  .about-now-item,
  .about-now-item:first-child,
  .about-now-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-now-item:first-child {
    border-top: 0;
  }
}
