      :root {
        --bg: #030616;
        --bg-gradient: linear-gradient(160deg, #050b1d 0%, #020812 100%);
        --text: #f9fcff;
        --muted: #d7cbb3;
        --accent: #3c65ff;
        --accent-dark: #253ab5;
        --panel: rgba(4, 8, 22, 0.85);
        --border: rgba(255, 255, 255, 0.08);
        font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
      }

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

      body {
        background: var(--bg-gradient);
        color: var(--text);
        line-height: 1.6;
        min-height: 100vh;
        scroll-behavior: smooth;
        font-size: 22px;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

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

      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: transparent;
        backdrop-filter: none;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        overflow: visible;
        transition: background 0.3s ease, border-bottom-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
      }

      header.header--revealed {
        background: linear-gradient(135deg, rgba(5, 8, 22, 0.95), rgba(3, 6, 18, 0.92));
        border-bottom-color: var(--border);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(6px);
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem clamp(1rem, 4vw, 4rem);
        position: relative;
      }

      .nav__brand {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        font-size: 1.35rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
      }

      .nav__logo {
        width: 60px;
        height: auto;
        filter: drop-shadow(0 0 8px rgba(60, 101, 255, 0.4));
      }

      .nav__menu {
        display: flex;
        gap: 1.25rem;
        font-size: 1.2rem;
        transition: transform 0.4s ease, opacity 0.3s ease;
        align-items: center;
      }
      .nav__menu a {
        position: relative;
        padding-bottom: 0.3rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }

      .nav__menu a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
      }

      .nav__menu a:hover::after,
      .nav__menu a:focus-visible::after {
        width: 100%;
      }

      .nav__menu-brand {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .nav__menu-brand img {
        width: 90px;
        height: auto;
      }

      .nav__menu-brand span {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
      }

      .nav__toggle {
        display: none;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 1px solid rgba(244, 220, 180, 0.75);
        background: transparent;
        color: #f4dcb4;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        cursor: pointer;
        transition: border 0.3s ease, transform 0.3s ease;
      }

      .nav__toggle:focus-visible,
      .nav__toggle:hover {
        border-color: rgba(244, 220, 180, 1);
        transform: scale(1.05);
      }

      body.nav--open .nav__toggle {
        position: fixed;
        top: 1.2rem;
        right: clamp(1rem, 4vw, 2rem);
        z-index: 30;
        background: rgba(3, 4, 14, 0.85);
      }

      body.nav--open {
        overflow: hidden;
      }

      main {
        padding-top: 78px;
      }

      .hero {
        position: relative;
        min-height: 100vh;
        border-bottom: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: clamp(1.5rem, 4vw, 4rem);
        background-image: linear-gradient(120deg, rgba(2, 4, 15, 0.95) 0%, rgba(3, 4, 25, 0.75) 45%, rgba(4, 8, 22, 0.35) 70%, rgba(4, 8, 22, 0) 100%),
          url("images/hero/hero(1).jpg");
        background-position: center, center;
        background-size: cover, cover;
        background-attachment: scroll, fixed;
        color: #f9fcff;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: min(110vw, 1100px);
        height: min(110vw, 1100px);
        background-image: url("images/hero/flower-pattern.svg");
        background-repeat: repeat;
        background-size: clamp(180px, 22vw, 320px);
        opacity: 0.38;
        mix-blend-mode: screen;
        pointer-events: none;
        z-index: 0;
        mask-image: radial-gradient(circle at 28% 28%, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0) 75%);
        -webkit-mask-image: radial-gradient(circle at 28% 28%, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0) 75%);
      }

      .hero__content {
        width: min(760px, 100%);
        position: relative;
        z-index: 1;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .hero .eyebrow {
        color: #f4dcb4;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
      }

      .eyebrow {
        color: var(--accent);
        letter-spacing: 0.2em;
        font-size: 1.05rem;
        text-transform: uppercase;
      }

      h1 {
        font-size: clamp(3.2rem, 6vw, 5.2rem);
        margin: 1rem 0;
        line-height: 1.4;
        text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
      }

      .hero__identity {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
      }

      .hero__identity h1 {
        margin: 0;
        line-height: 1.05;
        color: var(--muted);
        width: 100%;
        text-align: center;
      }

      .hero__identity h1::after {
        content: "";
        display: block;
        height: 3px;
        width: 100%;
        max-width: 320px;
        background: var(--muted);
        margin: 0.55rem auto 0;
      }

      .hero__text {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
        width: min(800px, 100%);
      }

      .hero__logo {
        width: clamp(140px, 18vw, 200px);
        filter: drop-shadow(0 8px 30px rgba(9, 17, 53, 0.8));
      }

      .hero__roles {
        letter-spacing: 0.38em;
        font-size: clamp(1.5rem, 3.6vw, 2.2rem);
        color: #ffffff;
        margin-top: 0.2rem;
        width: 100%;
        text-align: center;
      }

      .hero__subtext {
        width: min(860px, 100%);
        color: rgba(249, 252, 255, 0.9);
        font-size: clamp(1.15rem, 2.1vw, 1.45rem);
        line-height: 1.6;
        margin-top: 0.75rem;
        font-weight: 400;
        text-align: center;
        align-self: center;
      }

      .hero__subtext span {
        display: block;
      }


      section {
        padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 6vw, 5.5rem);
        border-bottom: 1px solid var(--border);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-gradient);
        scroll-margin-top: 90px;
      }

      .section-content {
        width: min(1100px, 100%);
        margin: 0 auto;
      }

      .section--pattern {
        position: relative;
        overflow: hidden;
      }

      .section--pattern::after {
        content: "";
        position: absolute;
        inset: -12% -8% -18%;
        background-image: url("images/hero/flower-pattern.svg");
        background-repeat: repeat;
        background-size: clamp(150px, 20vw, 320px);
        opacity: 0.25;
        mix-blend-mode: screen;
        filter: sepia(0.6) hue-rotate(330deg) saturate(1.2) brightness(1.05);
        pointer-events: none;
        z-index: 0;
        mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
      }

      .section--pattern:nth-of-type(odd)::after {
        mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
      }

      .section--pattern > * {
        position: relative;
        z-index: 1;
      }

      #about .section-content,
      #music {
        position: relative;
        overflow: hidden;
      }

      #about .section-content,
      #music .section-content,
      #education .section-content,
      #books .section-content {
        width: min(1250px, 100%);
      }

      section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: 0.8rem;
      }

      section h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 90px;
        height: 3px;
        background: var(--muted);
        opacity: 0.8;
      }

      .education-layout h2::after {
        left: 50%;
        transform: translateX(-50%);
      }

      p.lead {
        font-size: 1.4rem;
        color: var(--muted);
        margin-bottom: 1.5rem;
      }

      .grid {
        display: grid;
        gap: 1.5rem;
      }

      .grid--two {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      }

      .card {
        background: rgba(247, 226, 185, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: 1.25rem;
        color: #1b1f29;
      }

      .card h3 {
        margin-bottom: 0.5rem;
        font-size: 1.15rem;
        color: #1b1f29;
      }

      .card p {
        color: #3b3f4c;
        font-size: 1.18rem;
      }

      .contact-links {
        display: grid;
        gap: 0.6rem;
      }

      .contact-link {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: inherit;
        text-decoration: none;
        font-size: 1.05rem;
      }

      .contact-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }

      .contact-layout {
        display: grid;
        grid-template-columns: minmax(220px, 1fr) minmax(320px, 2fr);
        gap: 2rem;
        align-items: start;
        margin-top: 2rem;
      }

      .contact-image {
        border-radius: 1.5rem;
        overflow: hidden;
        border: 1px solid var(--border);
        height: 100%;
      }

      .contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .contact-card--image {
        background: none;
        border: none;
        padding: 0;
      }

      .contact-card--image img {
        border-radius: 1.25rem;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }

      .muted-note {
        margin-top: 1.5rem;
        color: var(--muted);
        font-size: 1.08rem;
      }

      .about-layout {
        display: grid;
        gap: 2rem;
        grid-template-columns: minmax(220px, 1fr) minmax(280px, 2fr);
        align-items: center;
        margin-bottom: 2.5rem;
      }

      .books-layout {
        display: grid;
        gap: 2.5rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
      }

      .section-mobile-image {
        display: none;
        margin: 0 auto 1.5rem;
        border-radius: 1.25rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        aspect-ratio: 1 / 1;
        width: 100%;
      }

      .section-mobile-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .section-mobile-image--speaker img {
        object-position: left center;
      }

      .books-image {
        border-radius: 1.5rem;
        overflow: hidden;
      }

      .books-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .books-list {
        margin: 1rem 0 2rem;
      }

      .profile-image {
        border-radius: 1.5rem;
        overflow: hidden;
        border: 1px solid var(--border);
      }

      .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      #music {
        background-image: linear-gradient(90deg, rgba(3, 5, 18, 0.95) 0%, rgba(4, 7, 23, 0.88) 35%, rgba(4, 8, 26, 0.7) 60%, rgba(6, 10, 32, 0.45) 80%, rgba(6, 10, 32, 0.15) 100%),
          url("images/hero/music.jpg");
        background-position: center, center right;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
      }

      #music::before {
        content: "";
        position: absolute;
        top: -30%;
        left: -15%;
        width: min(110vw, 1000px);
        height: min(110vw, 1000px);
        background-image: url("images/hero/flower-pattern.svg");
        background-repeat: repeat;
        background-size: clamp(170px, 20vw, 300px);
        opacity: 0.2;
        mix-blend-mode: screen;
        filter: sepia(0.7) hue-rotate(330deg) saturate(1.4) brightness(1.1);
        pointer-events: none;
        mask-image: radial-gradient(circle at 28% 28%, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0) 70%);
        -webkit-mask-image: radial-gradient(circle at 28% 28%, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0) 70%);
      }

      .music-intro {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
      }

      .music-links {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 2rem;
      }

      .music-link {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.65rem 1.1rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(5, 7, 6, 0.65);
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        transition: border 0.3s ease, transform 0.3s ease, background 0.3s ease;
      }

      .music-link:hover,
      .music-link:focus-visible {
        border-color: var(--accent);
        background: rgba(5, 7, 6, 0.85);
        transform: translateY(-2px);
      }

      .music-link__icon {
        width: 28px;
        height: 28px;
        display: inline-flex;
      }

      .music-square {
        width: 110px;
        height: 110px;
        border-radius: 1rem;
        border: 1px solid var(--border);
        overflow: hidden;
        flex-shrink: 0;
      }

      .music-square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .music-highlight {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        align-items: center;
      }

      .music-photo {
        border-radius: 1.5rem;
        overflow: hidden;
        border: 1px solid var(--border);
        position: relative;
        min-height: 320px;
        background-size: cover;
        background-position: center;
      }

      .music-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8));
      }

      #education {
        background: var(--bg-gradient);
      }

      #education .section-content {
        position: relative;
        z-index: 1;
        text-align: center;
      }

      .education-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: center;
        justify-items: center;
        text-align: center;
      }

      .education-hero-image {
        margin: 0 auto;
        width: min(640px, 100%);
        aspect-ratio: 4 / 3;
        border-radius: 1.5rem;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
        position: relative;
        background: rgba(3, 6, 18, 0.55);
      }

      .education-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
      }

      .education-hero-image img.is-active {
        opacity: 1;
      }

      .education-detail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        margin: 1.5rem auto 0;
        align-items: center;
        justify-items: center;
        width: min(720px, 100%);
      }

      .education-symbol {
        width: 220px;
        height: 220px;
      }

      .education-symbol svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: rgba(244, 220, 180, 0.7);
        stroke-width: 2;
      }

      .education-symbol svg circle {
        opacity: 0;
        animation: draw-circle 5s infinite;
      }

      .education-symbol svg circle:nth-child(1) {
        animation-delay: 0s;
      }

      .education-symbol svg circle:nth-child(2) {
        animation-delay: 0.5s;
      }

      .education-symbol svg circle:nth-child(3) {
        animation-delay: 1s;
      }

      .education-symbol svg circle:nth-child(4) {
        animation-delay: 1.5s;
      }

      .education-symbol svg circle:nth-child(5) {
        animation-delay: 2s;
      }

      .education-symbol svg circle:nth-child(6) {
        animation-delay: 2.5s;
      }

      .education-symbol svg circle:nth-child(7) {
        animation-delay: 3s;
      }

      @keyframes draw-circle {
        0% {
          opacity: 0;
          stroke-dasharray: 0 251;
        }
        20% {
          opacity: 1;
          stroke-dasharray: 251 0;
        }
        45% {
          opacity: 1;
          stroke-dasharray: 251 0;
        }
        65% {
          opacity: 0;
          stroke-dasharray: 0 251;
        }
        100% {
          opacity: 0;
          stroke-dasharray: 0 251;
        }
      }

      ul {
        list-style: none;
        color: var(--muted);
      }

      ul li {
        margin-bottom: 0.6rem;
        position: relative;
        padding-left: 1.2rem;
      }

      ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.7em;
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background: var(--accent);
        transform: translateY(-50%);
      }

      .text-link {
        color: var(--accent);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease, color 0.2s ease;
      }

      .text-link:hover,
      .text-link:focus-visible {
        border-bottom-color: var(--accent);
      }

      .education-list--center {
        display: inline-block;
        text-align: left;
        margin-top: 1rem;
      }

      #vision {
        position: relative;
        background: url("images/hero/speaker.jpg") center/cover no-repeat;
        overflow: hidden;
      }

      #vision::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(3, 6, 18, 0) 0%, rgba(3, 6, 18, 0.45) 55%, rgba(3, 6, 18, 0.82) 100%);
      }

      #vision .section-content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: none;
      }

      .vision-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(1.5rem, 4vw, 3rem);
        align-items: stretch;
        width: 100%;
      }

      .vision-panel {
        background: rgba(4, 8, 22, 0.88);
        border: 1px solid var(--border);
        border-radius: 1.5rem;
        padding: clamp(1.5rem, 4vw, 3rem);
        backdrop-filter: blur(6px);
      }

      .vision-panel__spacer {
        display: block;
      }

      .projects {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      .projects-row {
        display: grid;
        gap: 1.75rem;
        grid-template-columns: repeat(3, minmax(240px, 1fr));
        align-items: stretch;
      }

      .projects-column {
        display: grid;
        grid-template-rows: auto repeat(2, 1fr);
        gap: 1.4rem;
        height: 100%;
        align-content: stretch;
      }

      .projects-column__title {
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
      }

      .projects article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 1.25rem;
        padding: 1.7rem;
        background: rgba(247, 226, 185, 0.93);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        color: #1b1f29;
        height: 100%;
      }

      .projects-column article {
        width: 100%;
        height: 100%;
      }

      .projects article h3,
      .projects article h4 {
        margin: 0;
        font-size: 1.2rem;
        color: #1b1f29;
      }

      .projects article p {
        color: #3b3f4c;
        font-size: 1.05rem;
        margin: 0;
      }

      .project-tagline {
        font-weight: 600;
        color: rgba(34, 22, 9, 0.82);
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 0.85rem;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .button::after {
        content: "→";
        font-size: 0.9rem;
      }

      .button--dark {
        background: #1e1308;
        color: #fceedc;
        border: none;
        box-shadow: 0 10px 25px rgba(30, 19, 8, 0.35);
      }

      .button--accent {
        background: #f5c991;
        color: #1e1308;
        border: none;
        box-shadow: 0 10px 25px rgba(244, 201, 145, 0.35);
      }

      .button--disabled {
        background: rgba(0, 0, 0, 0.15);
        color: rgba(255, 255, 255, 0.6);
        border: none;
        cursor: not-allowed;
        pointer-events: none;
      }

      .button--disabled::after {
        content: "";
      }

      .button:hover,
      .button:focus-visible {
        transform: translateY(-1px);
      }

      .projects article .button {
        margin-top: auto;
      }

      footer {
        padding: 2rem clamp(1rem, 6vw, 5.5rem);
        text-align: center;
        color: var(--muted);
      }

      @media (min-width: 1025px) {
        header {
          background: linear-gradient(135deg, rgba(5, 8, 22, 0.95), rgba(3, 6, 18, 0.92));
          border-bottom-color: var(--border);
          box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
          backdrop-filter: blur(6px);
        }
      }

      @media (max-width: 1024px) {
        main {
          padding-top: 0;
        }

        header:not(.header--revealed) {
          height: 0;
          min-height: 0;
          background: transparent !important;
          border-bottom-color: transparent !important;
          box-shadow: none !important;
          backdrop-filter: none !important;
          overflow: visible;
        }

        .nav {
          justify-content: flex-end;
          transition: justify-content 0.3s ease;
          padding: 0;
          min-height: 0;
        }

        header.header--revealed .nav {
          justify-content: space-between;
          padding: 0.7rem clamp(1rem, 5vw, 2rem);
          min-height: auto;
        }

        header:not(.header--revealed) .nav {
          padding: 0;
          height: 0;
          min-height: 0;
          overflow: visible;
        }

        .nav__menu {
          position: fixed;
          inset: 0;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 1.4rem;
          font-size: 1.28rem;
          background: linear-gradient(180deg, rgba(3, 6, 18, 0.98), rgba(2, 4, 12, 0.96));
          z-index: 20;
          transform: translateY(-100%);
          opacity: 0;
          pointer-events: none;
          padding: 3rem 1.5rem;
          text-align: center;
        }

        body.nav--open .nav__menu {
          transform: translateY(0);
          opacity: 1;
          pointer-events: auto;
        }

        .nav__toggle {
          display: inline-flex;
          width: auto;
          height: auto;
          border: none;
          border-radius: 0;
          background: none;
          box-shadow: none;
          font-size: 2rem;
          color: #f4dcb4;
          padding: 0.25rem;
          position: fixed;
          top: 1.2rem;
          right: clamp(1rem, 4vw, 2rem);
          z-index: 30;
        }

        body.nav--open .nav__toggle {
          background: none;
          border: none;
        }

        .nav__brand {
          display: none;
          opacity: 0;
          pointer-events: none;
          overflow: hidden;
        }

        header.header--revealed .nav__brand {
          display: flex;
          opacity: 1;
          pointer-events: auto;
        }

        .nav__menu-brand {
          display: flex;
          margin-bottom: 2rem;
        }

        .nav__menu a {
          font-size: 1.28rem;
          width: 100%;
          text-align: center;
        }

        .hero {
          min-height: 100vh;
          min-height: 100svh;
        }

        .hero__identity {
          text-align: center;
        }

        .hero__subtext {
          text-align: center;
        }

        .music-intro {
          flex-direction: column;
          align-items: flex-start;
        }
        .music-links {
          flex-wrap: wrap;
        }

        .about-layout,
        #music .about-layout,
        .education-layout,
        .contact-layout {
          grid-template-columns: 1fr !important;
        }

        .books-layout {
          grid-template-columns: 1fr;
        }

        .books-image {
          max-width: 420px;
          margin: 0 auto;
        }

        .education-gallery {
          width: 100%;
          height: 520px;
        }

        .projects {
          gap: 1.5rem;
        }

        .projects-row {
          grid-template-columns: 1fr;
        }

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

        .vision-content {
          grid-template-columns: 1fr;
        }

        .vision-panel__spacer {
          display: none;
        }
      }

      @media (max-width: 768px) {
        .hero {
          min-height: 100vh;
          min-height: 100svh;
          background-position: center, right center;
        }

        .hero__content {
          gap: 0.6rem;
        }

        .hero__logo {
          width: clamp(110px, 28vw, 150px);
        }

        .hero__identity h1 {
          font-size: 2.4rem;
          letter-spacing: 0.08em;
          white-space: nowrap;
        }

        .hero__roles {
          font-size: 1.1rem;
          letter-spacing: 0.28em;
          white-space: nowrap;
        }

        .hero__subtext {
          font-size: 1rem;
          max-width: 280px;
          line-height: 1.55;
          margin-top: 0.5rem;
        }

        .hero__subtext span {
          display: inline;
        }

        .section-mobile-image {
          display: block;
        }

        .vision-panel__spacer {
          display: block !important;
          margin-bottom: 1.5rem;
          width: 100%;
        }

        .vision-panel__spacer .section-mobile-image {
          width: 100%;
          margin: 0 auto;
        }

        #vision {
          background-position: right center;
        }
      }
