:root {
   --surface: #ffffff;
   --surface-soft: #f5f5f5;
   --ink: #151515;
   --muted: #666666;
   --line: rgba(21, 21, 21, .16);
   --accent: #3458c5;
   --pad: clamp(1.25rem, 3vw, 3.5rem);
   --ease: cubic-bezier(.2, .75, .25, 1)
}

* {
   box-sizing: border-box
}

html {
   scroll-behavior: smooth;
   scroll-padding-top: 6rem
}

body {
   margin: 0;
   background: var(--surface);
   color: var(--ink);
   font-family: Figtree, Arial, sans-serif;
   font-size: 16px;
   line-height: 1.5;
   -webkit-font-smoothing: antialiased
}

body.menu-open {
   overflow: hidden
}

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

button,
input,
select,
textarea {
   font: inherit
}

button {
   color: inherit
}

.skip-link {
   position: fixed;
   z-index: 1000;
   top: 1rem;
   left: 1rem;
   padding: .7rem 1rem;
   background: var(--ink);
   color: #fff;
   transform: translateY(-200%)
}

.skip-link:focus {
   transform: none
}

:focus-visible {
   outline: 2px solid var(--accent);
   outline-offset: 4px
}

.site-header {
   position: fixed;
   z-index: 100;
   top: 0;
   left: 0;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem var(--pad);
   border-bottom: 1px solid transparent;
   transition: background .25s, border .25s, padding .25s
}

.site-header.scrolled {
   padding-top: .7rem;
   padding-bottom: .7rem;
   background: rgba(255, 255, 255, .93);
   border-color: var(--line);
   backdrop-filter: blur(14px)
}

.wordmark {
   font: clamp(1.8rem, 2.4vw, 2.5rem)/1 Figtree, Arial, sans-serif;
   letter-spacing: -.08em
}

.wordmark span {
   color: var(--accent)
}

.primary-nav {
   display: flex;
   align-items: center;
   gap: clamp(1.3rem, 2.5vw, 2.8rem);
   font-size: .83rem;
   font-weight: 600
}

.primary-nav>a:not(.nav-cta) {
   position: relative
}

.primary-nav>a:not(.nav-cta)::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -.35rem;
   width: 100%;
   height: 1px;
   background: currentColor;
   transform: scaleX(0);
   transform-origin: right;
   transition: transform .25s
}

.primary-nav>a:hover::after {
   transform: scaleX(1);
   transform-origin: left
}

.nav-cta {
   padding: .75rem 1rem;
   background: var(--ink);
   color: #fff
}

.nav-cta span {
   color: var(--accent)
}

.menu-toggle {
   display: none;
   background: none;
   border: 0;
   padding: .6rem 0
}

.eyebrow {
   margin: 0;
   color: var(--muted);
   font-size: .7rem;
   font-weight: 700;
   letter-spacing: .14em;
   line-height: 1.5;
   text-transform: uppercase
}

.section-shell {
   width: min(100%, 96rem);
   margin: 0 auto;
   padding-left: var(--pad);
   padding-right: var(--pad)
}

.hero {
   min-height: 100svh;
   display: flex;
   flex-direction: column;
   padding: clamp(7rem, 12vh, 9rem) var(--pad) 2rem
}

.hero-top,
.hero-bottom {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 2rem
}

.availability {
   display: flex;
   align-items: center;
   gap: .55rem;
   margin: 0;
   font-size: .78rem;
   font-weight: 600
}

.availability i {
   width: .5rem;
   height: .5rem;
   border-radius: 50%;
   background: var(--accent);
   box-shadow: 0 0 0 4px rgba(52, 88, 197, .12)
}

.hero-title-wrap {
   display: flex;
   flex: 1;
   align-items: center;
   padding: 4vh 0
}

.hero h1 {
   max-width: 15ch;
   margin: 0;
   font-size: clamp(3.8rem, 8.3vw, 10rem);
   font-weight: 600;
   letter-spacing: -.075em;
   line-height: .86
}

.hero h1 em {
   font-family: Figtree, Arial, sans-serif;
   font-weight: 400;
   color: var(--ink)
}

.hero-bottom {
   align-items: flex-end
}

.hero-bottom>p {
   max-width: 46rem;
   margin: 0;
   font-size: clamp(1.05rem, 1.6vw, 1.55rem);
   letter-spacing: -.025em;
   line-height: 1.45
}

.text-link {
   display: inline-flex;
   align-items: center;
   gap: 1rem;
   padding-bottom: .35rem;
   border-bottom: 1px solid;
   font-size: .8rem;
   font-weight: 700;
   white-space: nowrap
}

.text-link span {
   color: var(--accent)
}

.hero-index {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   margin-top: clamp(3rem, 7vh, 6rem);
   padding-top: 1.1rem;
   border-top: 1px solid var(--line);
   color: var(--muted);
   font-size: .67rem;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase
}

.hero-index b {
   color: var(--accent);
   font-size: 1rem
}

.proof-bar {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   background: var(--ink);
   color: #fff
}

.proof-bar p {
   min-height: 10rem;
   margin: 0;
   padding: 2rem var(--pad);
   border-right: 1px solid rgba(255, 255, 255, .16)
}

.proof-bar p:last-child {
   border: 0
}

.proof-bar strong,
.proof-bar span {
   display: block
}

.proof-bar strong {
   font-size: clamp(1rem, 1.5vw, 1.35rem);
   letter-spacing: -.025em
}

.proof-bar span {
   max-width: 18ch;
   margin-top: 1.6rem;
   color: #aaa;
   font-size: .74rem;
   line-height: 1.5
}

.work-section {
   padding-top: clamp(6rem, 10vw, 10rem);
   padding-bottom: clamp(6rem, 10vw, 10rem)
}

.section-heading {
   display: grid;
   grid-template-columns: 1.6fr 1fr;
   gap: 3rem;
   align-items: end;
   margin-bottom: clamp(3rem, 6vw, 6rem)
}

.section-heading h2,
.practice-intro h2,
.about-lead h2,
.contact-copy h2 {
   margin: .8rem 0 0;
   font-size: clamp(2.8rem, 5.6vw, 6.5rem);
   font-weight: 500;
   letter-spacing: -.065em;
   line-height: .94
}

.section-heading>p {
   max-width: 34rem;
   margin: 0;
   color: var(--muted);
   font-size: clamp(1rem, 1.35vw, 1.25rem)
}

.project-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: clamp(3rem, 6vw, 7rem) clamp(1rem, 2vw, 2rem)
}

.project {
   min-width: 0
}

.project-featured,
.project-wide {
   grid-column: 1/-1
}

.project a {
   display: block
}

.project-visual {
   position: relative;
   overflow: hidden;
   min-height: clamp(28rem, 54vw, 54rem);
   background: #ddd
}

.project-half .project-visual {
   min-height: clamp(30rem, 46vw, 45rem)
}

.project-visual::after {
   content: '';
   position: absolute;
   inset: 0;
   border: 1px solid rgba(0, 0, 0, .08);
   pointer-events: none
}

.project-visual>* {
   transition: transform .8s var(--ease)
}

.project a:hover .project-visual>* {
   transform: scale(1.025)
}

.project-info {
   display: grid;
   grid-template-columns: 1.05fr 1.2fr 1fr auto;
   gap: 2rem;
   padding-top: 1.25rem;
   border-top: 1px solid var(--line)
}

.project-info>div {
   display: flex;
   gap: 1.2rem;
   align-items: baseline
}

.project-number {
   margin: 0;
   color: var(--muted);
   font-size: .68rem
}

.project-info h3 {
   margin: 0;
   font-size: clamp(1.25rem, 2vw, 2rem);
   letter-spacing: -.045em
}

.project-summary {
   max-width: 33rem;
   margin: 0;
   color: var(--muted);
   font-size: .88rem
}

.project-info ul {
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   gap: .25rem .8rem;
   margin: 0;
   padding: 0;
   list-style: none;
   color: var(--muted);
   font-size: .68rem;
   text-transform: uppercase;
   letter-spacing: .08em
}

.project-link {
   font-size: .75rem;
   font-weight: 700;
   white-space: nowrap
}

.visual-thought {
   background: #181c3d
}

.audio-stage {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: clamp(1rem, 5vw, 5rem);
   padding: 8%;
   background: radial-gradient(circle at 70% 30%, #6957ca 0, transparent 38%), radial-gradient(circle at 10% 90%, #c54b7a 0, transparent 32%), #171a39
}

.audio-copy {
   align-self: flex-start;
   margin-top: 8%;
   color: #fff
}

.audio-copy span {
   display: block;
   font-size: clamp(2rem, 4.5vw, 5.5rem);
   font-weight: 700;
   letter-spacing: -.07em;
   line-height: .8
}

.audio-copy small {
   display: block;
   margin-top: 2rem;
   color: #bbb6dd;
   font-size: clamp(.75rem, 1vw, 1rem)
}

.phone {
   width: clamp(9rem, 17vw, 18rem);
   aspect-ratio: .51;
   border: clamp(5px, .7vw, 10px) solid #111;
   border-radius: clamp(1.5rem, 3vw, 3rem);
   padding: .4rem;
   background: #0a0a12;
   box-shadow: 0 3rem 6rem rgba(0, 0, 0, .4);
   transform: rotate(4deg)
}

.phone-b {
   margin-top: 12%;
   transform: rotate(-4deg)
}

.phone-ui {
   height: 100%;
   padding: 15% 10%;
   border-radius: inherit;
   background: linear-gradient(#ddd8ff, #ae9cef);
   color: #151235
}

.phone-ui>i {
   display: block;
   width: 35%;
   height: 3px;
   margin: 0 auto 35%;
   background: #19162c
}

.phone-ui p {
   font-size: clamp(.8rem, 1.6vw, 1.7rem);
   font-weight: 700;
   letter-spacing: -.04em
}

.phone-ui b {
   display: grid;
   place-items: center;
   width: 3rem;
   max-width: 40%;
   aspect-ratio: 1;
   border-radius: 50%;
   background: #17152f;
   color: #fff
}

.wave {
   height: 10%;
   margin-top: 15%;
   background: repeating-linear-gradient(90deg, #4f4976 0 2px, transparent 2px 7px);
   clip-path: polygon(0 45%, 10% 20%, 20% 65%, 30% 10%, 40% 80%, 50% 30%, 60% 55%, 70% 15%, 80% 70%, 90% 30%, 100% 50%, 100% 55%, 0 55%)
}

.phone-ui.dark {
   background: #111129;
   color: #fff
}

.phone-ui.dark small {
   color: #9691bb
}

.track {
   height: 18%;
   margin-top: 20%;
   border-radius: .5rem;
   background: #433c80
}

.track.short {
   width: 72%;
   margin-top: 8%;
   background: #2b2855
}

.visual-cannections {
   background: #c6db8d
}

.community-ui {
   position: absolute;
   inset: 9%;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   border-radius: .5rem;
   background: #f6f1e4;
   box-shadow: 0 2rem 5rem rgba(29, 67, 28, .22)
}

.community-nav {
   display: flex;
   justify-content: space-between;
   padding: 1.2rem 1.5rem;
   border-bottom: 1px solid #d6d2c6;
   font-size: .6rem
}

.community-nav b {
   font-size: .85rem;
   color: #22502e
}

.community-grid {
   display: grid;
   grid-template-columns: 1fr .75fr;
   flex: 1
}

.community-copy {
   padding: 15% 12%
}

.community-copy small {
   font-size: .55rem;
   letter-spacing: .12em
}

.community-copy strong {
   display: block;
   margin-top: 1rem;
   color: #244c2f;
   font-size: clamp(2rem, 4vw, 4.4rem);
   letter-spacing: -.07em;
   line-height: .88
}

.community-copy p {
   max-width: 18rem;
   font-size: .72rem
}

.community-phone {
   display: flex;
   flex-direction: column;
   gap: 4%;
   margin: 8%;
   padding: 8%;
   border: 6px solid #163522;
   border-radius: 2rem;
   background: #eef1df
}

.mini-card {
   flex: 1;
   border-radius: .5rem;
   background: #dcd8cb
}

.mini-card.orange {
   background: #df8159
}

.mini-card.green {
   background: #47734e
}

.visual-north {
   background: #d0c5b1
}

.north-stage {
   position: absolute;
   inset: 0;
   padding: 8%;
   background: linear-gradient(180deg, #d9d1c2, #b2a48e)
}

.north-mark {
   position: absolute;
   z-index: 2;
   top: 8%;
   left: 8%;
   font-size: clamp(1.2rem, 2.5vw, 2.5rem);
   font-weight: 700;
   letter-spacing: -.08em;
   line-height: .8
}

.north-stage>p {
   position: absolute;
   z-index: 2;
   right: 8%;
   bottom: 8%;
   margin: 0;
   color: #fff;
   font-family: Georgia, serif;
   font-size: clamp(1.3rem, 2.5vw, 2.7rem);
   font-style: italic;
   line-height: 1
}

.building {
   position: absolute;
   left: 12%;
   right: 12%;
   bottom: 0;
   height: 63%;
   background: #584f45;
   clip-path: polygon(0 28%, 18% 28%, 30% 10%, 60% 10%, 72% 28%, 100% 28%, 100% 100%, 0 100%);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   gap: 2%;
   padding: 18% 4% 3%
}

.building i {
   width: 15%;
   height: 75%;
   background: linear-gradient(90deg, #1c2021, #84918b, #232827);
   border: 3px solid #3a332d
}

.building i:first-child,
.building i:last-child {
   height: 55%
}

.visual-sound {
   min-height: clamp(25rem, 42vw, 42rem);
   background: #d7d0ff
}

.sound-ui {
   position: absolute;
   inset: 9% 7%;
   display: grid;
   grid-template-columns: 8% 1fr;
   overflow: hidden;
   border-radius: .6rem;
   background: #0f0d18;
   box-shadow: 0 2rem 6rem rgba(44, 25, 98, .3);
   color: #fff
}

.sound-sidebar {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.2rem;
   padding: 1.2rem .5rem;
   border-right: 1px solid #2f2a45
}

.sound-sidebar b {
   color: #c6ff4a
}

.sound-sidebar i {
   width: .8rem;
   height: .8rem;
   border-radius: 50%;
   background: #3f3959
}

.sound-main {
   padding: 4% 5%;
   background: radial-gradient(circle at 80% 20%, #6f4ee8 0, transparent 30%), #13101d
}

.sound-head {
   display: flex;
   justify-content: space-between;
   color: #aaa2bd;
   font-size: .65rem
}

.sound-main h4 {
   margin: 12% 0 8%;
   font-size: clamp(2.5rem, 6vw, 7rem);
   letter-spacing: -.075em;
   line-height: .85
}

.sound-wave {
   display: flex;
   align-items: center;
   gap: 1%;
   height: 18%
}

.sound-wave i {
   width: 2%;
   height: 35%;
   border-radius: 2px;
   background: #c5ff3f
}

.sound-wave i:nth-child(2n) {
   height: 80%
}

.sound-wave i:nth-child(3n) {
   height: 55%
}

.sound-wave i:nth-child(5n) {
   height: 100%
}

.more-work {
   display: grid;
   grid-template-columns: 1fr 3fr;
   gap: 3rem;
   margin-top: clamp(5rem, 9vw, 9rem);
   border-top: 1px solid var(--line)
}

.more-work>p {
   margin: 1.25rem 0;
   color: var(--muted);
   font-size: .72rem;
   text-transform: uppercase;
   letter-spacing: .1em
}

.more-work>div a {
   display: grid;
   grid-template-columns: 1fr 1fr auto;
   align-items: center;
   gap: 2rem;
   padding: 1.2rem 0;
   border-bottom: 1px solid var(--line);
   transition: padding .25s
}

.more-work>div a:hover {
   padding-left: .7rem
}

.more-work span {
   font-size: clamp(1.1rem, 1.8vw, 1.7rem);
   letter-spacing: -.035em
}

.more-work small {
   color: var(--muted)
}

.more-work b {
   color: var(--accent)
}

.practice-section {
   padding: clamp(6rem, 10vw, 10rem) 0;
   background: var(--ink);
   color: #fff
}

.practice-intro {
   display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 2rem
}

.practice-intro .eyebrow {
   grid-row: 1/3;
   color: #999999
}

.practice-intro h2 {
   max-width: 12ch;
   margin: 0
}

.practice-intro>p:last-child {
   grid-column: 2;
   max-width: 44rem;
   color: #aaa;
   font-size: clamp(1rem, 1.4vw, 1.3rem)
}

.practice-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0;
   margin-top: clamp(4rem, 8vw, 8rem);
   border-top: 1px solid #3a3a3a
}

.practice-grid article {
   min-height: 24rem;
   padding: 2rem 2rem 2rem 0;
   border-right: 1px solid #3a3a3a
}

.practice-grid article+article {
   padding-left: 2rem
}

.practice-grid article:last-child {
   border-right: 0
}

.practice-grid span {
   color: var(--accent);
   font-size: .7rem
}

.practice-grid h3 {
   max-width: 12ch;
   margin: 5rem 0 1.2rem;
   font-size: clamp(1.5rem, 2.4vw, 2.6rem);
   font-weight: 500;
   letter-spacing: -.05em;
   line-height: 1
}

.practice-grid p {
   max-width: 28rem;
   color: #aaa;
   font-size: .86rem
}

.practice-grid small {
   display: block;
   margin-top: 2rem;
   color: #777;
   font-size: .65rem;
   letter-spacing: .08em;
   text-transform: uppercase
}

.about-section {
   display: grid;
   grid-template-columns: 1.1fr .9fr;
   gap: clamp(3rem, 8vw, 9rem);
   padding-top: clamp(6rem, 11vw, 11rem);
   padding-bottom: clamp(6rem, 11vw, 11rem)
}

.about-lead h2 {
   font-size: clamp(3rem, 5vw, 6rem)
}

.about-copy {
   padding-top: 2rem
}

.about-copy>p {
   margin: 0 0 1.5rem;
   font-size: clamp(1rem, 1.45vw, 1.35rem);
   letter-spacing: -.02em
}

.about-copy .text-link {
   margin-top: 1.5rem
}

.experience-list {
   grid-column: 1/-1;
   margin-top: 2rem;
   border-top: 1px solid var(--line)
}

.experience-list>div {
   display: grid;
   grid-template-columns: 1fr 1.4fr 2fr;
   gap: 2rem;
   padding: 1.1rem 0;
   border-bottom: 1px solid var(--line);
   align-items: baseline
}

.experience-list span,
.experience-list p {
   color: var(--muted);
   font-size: .78rem
}

.experience-list h3,
.experience-list p {
   margin: 0
}

.experience-list h3 {
   font-size: 1rem
}

.testimonial-section {
   padding: clamp(6rem, 10vw, 10rem) 0;
   background: var(--accent);
   color: #fff
}

.testimonial-section blockquote {
   max-width: 25ch;
   margin: clamp(2rem, 5vw, 5rem) 0 2rem;
   font-size: clamp(2.4rem, 5.3vw, 6rem);
   font-weight: 500;
   letter-spacing: -.065em;
   line-height: .96
}

.quote-credit {
   font-size: .8rem;
   font-weight: 700
}

.quote-credit span {
   color: var(--muted);
   font-weight: 400
}

.review-link {
   float: right;
   margin-top: -2rem;
   padding-bottom: .25rem;
   border-bottom: 1px solid;
   font-size: .75rem;
   font-weight: 700
}

.contact-section {
   display: grid;
   grid-template-columns: .9fr 1.1fr;
   gap: clamp(3rem, 9vw, 10rem);
   padding-top: clamp(6rem, 10vw, 10rem);
   padding-bottom: clamp(6rem, 10vw, 10rem)
}

.contact-copy h2 {
   max-width: 10ch
}

.contact-copy>p:nth-of-type(2) {
   max-width: 35rem;
   color: var(--muted);
   font-size: 1.05rem
}

.contact-direct {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: .5rem;
   margin-top: 3rem;
   font-size: .8rem;
   font-weight: 700
}

.contact-direct a {
   border-bottom: 1px solid
}

.project-form {
   padding-top: 1.4rem;
   /* border-top: 1px solid var(--line) */
}

.project-form label {
   display: block;
   margin-bottom: 1.5rem;
   color: var(--muted);
   font-size: .7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .08em
}

.project-form label span {
   color: var(--accent)
}

.field-row {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1rem
}

.project-form input,
.project-form select,
.project-form textarea {
   width: 100%;
   margin-top: .55rem;
   padding: .85rem 0;
   border: 0;
   border-bottom: 1px solid var(--line);
   border-radius: 0;
   background: transparent;
   color: var(--ink);
   font-size: 1rem;
   text-transform: none;
   letter-spacing: 0;
   outline: 0
}

.project-form textarea {
   resize: vertical
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
   border-color: var(--accent)
}

.form-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 2rem
}

.form-footer p {
   margin: 0;
   color: var(--muted);
   font-size: .68rem
}

.form-footer button {
   border: 0;
   padding: 1rem 1.3rem;
   background: var(--ink);
   color: #fff;
   font-size: .78rem;
   font-weight: 700;
   cursor: pointer
}

.form-footer button span {
   margin-left: 1.5rem;
   color: var(--accent)
}

.form-footer button:disabled {
   opacity: .6
}

.site-footer {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr auto;
   align-items: end;
   gap: 2rem;
   padding: 4rem var(--pad) 2rem;
   background: var(--ink);
   color: #fff
}

.footer-mark {
   font-size: clamp(3rem, 6vw, 7rem)
}

.site-footer p {
   margin: 0;
   color: #999;
   font-size: .72rem
}

.site-footer>div {
   display: flex;
   gap: 1.5rem;
   font-size: .72rem
}

.copyright {
   text-align: right
}

.reveal {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in-view {
   opacity: 1;
   transform: none
}

@media(max-width:900px) {
   .site-header {
      padding-top: .8rem
   }

   .menu-toggle {
      display: flex;
      align-items: center;
      gap: .7rem;
      z-index: 2
   }

   .menu-toggle i,
   .menu-toggle i::before {
      display: block;
      width: 1.2rem;
      height: 1px;
      background: currentColor;
      content: '';
      transition: transform .25s
   }

   .menu-toggle i::before {
      transform: translateY(5px)
   }

   .menu-toggle[aria-expanded=true] i {
      transform: rotate(45deg)
   }

   .menu-toggle[aria-expanded=true] i::before {
      transform: rotate(-90deg)
   }

   .primary-nav {
      position: fixed;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 0;
      padding: 7rem var(--pad) 3rem;
      background: var(--surface);
      visibility: hidden;
      opacity: 0;
      transform: translateY(-1rem);
      transition: .25s
   }

   .primary-nav.open {
      visibility: visible;
      opacity: 1;
      transform: none
   }

   .primary-nav a {
      width: 100%;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
      font-size: clamp(1.8rem, 7vw, 3.5rem);
      font-weight: 500;
      letter-spacing: -.05em
   }

   .primary-nav .nav-cta {
      margin-top: 2rem;
      padding: 1rem;
      background: var(--ink);
      font-size: 1rem
   }

   .hero {
      min-height: auto;
      padding-top: 7rem
   }

   .hero-title-wrap {
      padding: clamp(6rem, 15vh, 10rem) 0
   }

   .hero h1 {
      font-size: clamp(3.4rem, 11vw, 7rem)
   }

   .proof-bar {
      grid-template-columns: repeat(2, 1fr)
   }

   .proof-bar p:nth-child(2) {
      border-right: 0
   }

   .proof-bar p:nth-child(-n+2) {
      border-bottom: 1px solid rgba(255, 255, 255, .16)
   }

   .project-info {
      grid-template-columns: 1fr 1fr
   }

   .project-summary {
      grid-column: 1/-1;
      grid-row: 2
   }

   .project-link {
      text-align: right
   }

   .practice-intro {
      grid-template-columns: 1fr
   }

   .practice-intro .eyebrow,
   .practice-intro>p:last-child {
      grid-column: auto;
      grid-row: auto
   }

   .practice-grid {
      grid-template-columns: 1fr
   }

   .practice-grid article,
   .practice-grid article+article {
      min-height: 0;
      padding: 2rem 0;
      border-right: 0;
      border-bottom: 1px solid #3a3a3a
   }

   .practice-grid h3 {
      margin: 3rem 0 1rem
   }

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

   .site-footer {
      grid-template-columns: 1fr 1fr
   }

   .site-footer .footer-mark {
      grid-column: 1/-1
   }

   .copyright {
      text-align: left
   }

   /* A backdrop filter makes fixed descendants relative to the filtered header.
   Disable it while the full-viewport menu is open so it remains viewport-fixed
   after the page has been scrolled. */
   body.menu-open .site-header.scrolled {
      backdrop-filter: none
   }
}

@media(max-width:650px) {
   .hero-top .availability {
      display: none
   }

   .hero-title-wrap {
      padding: 6rem 0 5rem
   }

   .hero h1 {
      font-size: clamp(3.3rem, 16vw, 5.6rem);
      line-height: .88
   }

   .hero-bottom {
      display: block
   }

   .hero-bottom>p {
      font-size: 1rem
   }

   .hero-bottom .text-link {
      margin-top: 2rem
   }

   .hero-index {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      font-size: .55rem
   }

   .proof-bar {
      grid-template-columns: 1fr
   }

   .proof-bar p {
      min-height: auto;
      padding: 1.4rem var(--pad);
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .16) !important
   }

   .proof-bar span {
      margin-top: .45rem;
      max-width: none
   }

   .section-heading {
      grid-template-columns: 1fr;
      gap: 1.2rem
   }

   .project-list {
      display: block
   }

   .project {
      margin-bottom: 4.5rem
   }

   .project-visual,
   .project-half .project-visual,
   .visual-sound {
      min-height: 29rem
   }

   .audio-stage {
      gap: .5rem;
      padding: 5%
   }

   .audio-copy {
      position: absolute;
      z-index: 2;
      left: 8%;
      top: 4%
   }

   .audio-copy small {
      display: none
   }

   .phone {
      width: 39%;
      margin-left: 36%
   }

   .phone-b {
      margin-left: 0
   }

   .project-info {
      grid-template-columns: 1fr auto;
      gap: 1rem
   }

   .project-info>div {
      gap: .6rem
   }

   .project-info ul {
      grid-column: 1/-1
   }

   .project-summary {
      grid-column: 1/-1;
      grid-row: auto
   }

   .project-link {
      grid-column: 2;
      grid-row: 1
   }

   .community-ui {
      inset: 7%
   }

   .community-grid {
      grid-template-columns: 1fr
   }

   .community-copy {
      padding: 10%
   }

   .community-phone {
      position: absolute;
      right: -5%;
      bottom: -5%;
      width: 46%;
      height: 62%
   }

   .more-work {
      grid-template-columns: 1fr;
      gap: 0
   }

   .more-work>div a {
      grid-template-columns: 1fr auto
   }

   .more-work small {
      grid-column: 1
   }

   .more-work b {
      grid-column: 2;
      grid-row: 1/3
   }

   .about-section {
      gap: 2rem
   }

   .experience-list>div {
      grid-template-columns: 1fr 2fr
   }

   .experience-list p {
      grid-column: 2
   }

   .testimonial-section blockquote {
      font-size: clamp(2.3rem, 11vw, 4rem)
   }

   .review-link {
      float: none;
      display: inline-block;
      margin-top: 2rem
   }

   .field-row {
      grid-template-columns: 1fr
   }

   .form-footer {
      display: block
   }

   .form-footer button {
      width: 100%;
      margin-top: 1.5rem
   }

   .site-footer {
      grid-template-columns: 1fr
   }

   .site-footer .footer-mark {
      grid-column: auto
   }

   .site-footer>div {
      padding: 1rem 0;
      border-top: 1px solid #333;
      border-bottom: 1px solid #333
   }
}

@media(prefers-reduced-motion:reduce) {
   html {
      scroll-behavior: auto
   }

   .reveal {
      opacity: 1;
      transform: none;
      transition: none
   }

   .project-visual>* {
      transition: none
   }
}