@font-face {
font-family: 'Barlow Condensed';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(../fonts/font-1.woff2) format('woff2');
unicode-range:
U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
U+FFFD;
}
@font-face {
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(../fonts/font-2.woff2) format('woff2');
unicode-range:
U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
U+FFFD;
}
@font-face {
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(../fonts/font-2.woff2) format('woff2');
unicode-range:
U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
U+FFFD;
}
@font-face {
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(../fonts/font-2.woff2) format('woff2');
unicode-range:
U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
U+FFFD;
}
:root {
color-scheme: dark;
--color-bg: #0b0b0b;
--color-surface: #151515;
--color-text: #f2f0eb;
--color-muted: #aaa9a6;
--color-border: #363636;
--color-accent: #fb0532;
--font-body: 'Manrope', Arial, sans-serif;
--font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
--font-editorial: Georgia, 'Times New Roman', serif;
--page-gutter: clamp(1.25rem, 5vw, 6rem);
--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
figure {
margin: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.6;
overflow-wrap: break-word;
}
img {
display: block;
max-width: 100%;
}
a {
color: inherit;
text-decoration: none;
}
button {
font: inherit;
color: inherit;
cursor: pointer;
border: 0;
}
a,
button {
-webkit-tap-highlight-color: transparent;
}
button,
a {
touch-action: manipulation;
}
:focus-visible {
outline: 2px solid var(--color-text);
outline-offset: 6px;
}
::selection {
background: var(--color-accent);
color: white;
}
[hidden] {
display: none !important;
}
.skip-link {
position: fixed;
z-index: 100;
top: 1rem;
left: 1rem;
padding: 1rem;
background: white;
color: black;
transform: translateY(-200%);
}
.skip-link:focus {
transform: none;
}
section {
position: relative;
scroll-margin-top: 1.5rem;
}
.section-top {
display: flex;
justify-content: space-between;
gap: 1.5rem;
border-top: 1px solid var(--color-border);
padding-top: 1.5rem;
}
.eyebrow,
.section-note {
font-size: 0.75rem;
letter-spacing: 0.12em;
font-weight: 500;
}
.eyebrow {
color: var(--color-accent);
}
.section-note {
color: var(--color-muted);
}
.cta {
display: inline-flex;
align-items: center;
justify-content: space-between;
gap: 2.5rem;
min-height: 60px;
padding: 1rem 1.4rem;
background: var(--color-accent);
color: white;
font-size: 0.9375rem;
font-weight: 600;
transition:
background 0.25s,
transform 0.35s var(--ease-out);
}
.cta:hover {
background: #d6042a;
transform: translateY(-3px);
}
.cta-arrow {
font-size: 1.6rem;
}
.cta-note {
color: var(--color-muted);
font-size: 0.875rem;
}
@media (max-width: 760px) {
.section-note {
display: none;
}
}
:root {
--color-accent-text: #ff526e;
}
.eyebrow {
color: var(--color-accent-text);
}
.cta:not(.hero-cta) {
background: #d9042d;
}
.cta:not(.hero-cta):hover {
background: #b90326;
}
.hero {
isolation: isolate;
min-height: max(760px, 100svh);
display: flex;
flex-direction: column;
overflow: clip;
}
.visual {
position: absolute;
inset: 0 0 0 38%;
z-index: -2;
overflow: hidden;
background: #141414;
}
.visual img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 60%;
filter: grayscale(1) contrast(1.1);
transform-origin: 62% 43%;
}
.image-shade {
position: absolute;
inset: 0;
background:
linear-gradient(90deg, #0b0b0b, #0b0b0b10 45%),
linear-gradient(0deg, #0b0b0b 0%, transparent 22%, #0b0b0b55 100%);
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem var(--page-gutter);
gap: 2rem;
}
.header nav {
display: flex;
gap: clamp(1rem, 2vw, 2.3rem);
}
.header nav a {
display: flex;
align-items: center;
gap: 0.5rem;
min-height: 44px;
font-size: 0.8125rem;
}
.header nav a:hover {
color: var(--color-accent);
}
.nav-dot {
width: 4px;
height: 4px;
background: var(--color-accent);
}
.brand {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 600;
letter-spacing: 0.02em;
line-height: 1;
white-space: nowrap;
}
.brand-dot {
color: var(--color-accent);
margin-left: 0.2rem;
}
.brand-caption {
display: block;
font-family: var(--font-body);
font-size: 0.625rem;
letter-spacing: 0.15em;
margin-top: 0.6rem;
}
.hero-edition {
position: absolute;
top: 50%;
right: 1.25rem;
writing-mode: vertical-rl;
font-size: 0.625rem;
letter-spacing: 0.2em;
color: #ddd;
}
.hero-content {
padding: 4rem var(--page-gutter) 6rem;
margin-block: auto;
position: relative;
}
.hero-kicker {
font-size: 0.75rem;
letter-spacing: 0.17em;
margin-bottom: 1.4rem;
color: #d7d5d0;
}
h1 {
font-size: 0.875rem;
font-weight: 400;
color: var(--color-muted);
}
.display {
font-family: var(--font-display);
font-weight: 600;
text-transform: uppercase;
font-size: clamp(6rem, 13.6vw, 14rem);
line-height: 0.94;
letter-spacing: -0.035em;
margin-top: 2.3rem;
}
.display-prefix {
display: block;
font-size: 0.32em;
line-height: 1.2;
letter-spacing: 0.055em;
margin-bottom: 0.18em;
}
.word-line {
display: flex;
align-items: baseline;
min-height: 1.08em;
}
#changing-word {
display: inline-block;
white-space: nowrap;
}
.title-dot {
color: var(--color-accent);
}
.cta-row {
display: flex;
align-items: center;
gap: 1.5rem;
margin-top: 2.5rem;
}
.hero-art-caption {
position: absolute;
bottom: 7rem;
right: var(--page-gutter);
font-size: 0.625rem;
line-height: 1.8;
letter-spacing: 0.12em;
text-align: right;
color: #bab8b4;
}
.hero-footer {
margin: 0 var(--page-gutter);
padding: 1.25rem 0;
border-top: 1px solid #ffffff30;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
font-size: 0.75rem;
letter-spacing: 0.07em;
}
.explore-link {
display: flex;
gap: 2.5rem;
align-items: center;
min-height: 44px;
}
.explore-link span {
color: var(--color-accent);
}
.style-label {
display: flex;
align-items: center;
gap: 1rem;
}
.accent-rule {
width: 24px;
height: 1px;
background: var(--color-accent);
}
.motion-toggle {
background: transparent;
display: flex;
align-items: center;
gap: 0.7rem;
min-height: 44px;
font-size: 0.75rem;
}
.menu-toggle {
display: none;
}
.reveal {
transition:
opacity 0.9s var(--ease-out),
transform 1.1s var(--ease-out);
}
@media (max-width: 900px) {
.header {
position: relative;
z-index: 5;
padding-block: 1.5rem;
}
.menu-toggle {
display: flex;
flex-direction: column;
justify-content: center;
gap: 7px;
width: 44px;
height: 44px;
padding: 0;
background: transparent;
}
.menu-toggle span {
width: 27px;
height: 1px;
background: white;
transition: transform 0.25s;
}
.menu-toggle[aria-expanded='true'] span:first-child {
transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span:last-child {
transform: translateY(-4px) rotate(-45deg);
}
.header nav {
display: none;
position: absolute;
top: 100%;
left: var(--page-gutter);
right: var(--page-gutter);
padding: 1.5rem;
background: #141414;
border: 1px solid var(--color-border);
}
.header nav.open {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.header nav a {
font-size: 1rem;
}
}
@media (max-width: 760px) {
.hero {
min-height: max(760px, 100svh);
}
.brand {
font-size: 1.6rem;
}
.visual {
inset: 0;
}
.visual img {
object-fit: cover;
object-position: 55% 30%;
}
.image-shade {
background: linear-gradient(
0deg,
#0b0b0b 2%,
#0b0b0bdb 33%,
#0b0b0b10 75%,
#0b0b0b99
);
}
.hero-content {
padding-top: 14rem;
padding-bottom: 3rem;
}
.hero-kicker {
font-size: 0.625rem;
}
h1 {
max-width: 22rem;
font-size: 0.875rem;
}
.display {
font-size: clamp(4.5rem, 18vw, 8rem);
margin-top: 1.5rem;
}
.display-prefix {
font-size: 0.38em;
}
.cta-row {
flex-direction: column;
align-items: flex-start;
gap: 0.8rem;
margin-top: 1.5rem;
}
.hero-art-caption,
.hero-edition,
.style-label {
display: none;
}
.motion-label {
position: absolute;
width: 1px;
height: 1px;
clip-path: inset(50%);
overflow: hidden;
}
.motion-toggle {
min-width: 44px;
justify-content: center;
}
}
.hero-cta {
background: transparent;
padding: 0.8rem 0;
border-bottom: 1px solid var(--color-accent);
gap: 2rem;
font-weight: 500;
}
.hero-cta:hover {
background: transparent;
transform: none;
}
.hero-cta .cta-arrow {
color: var(--color-accent);
transition: transform 0.3s;
}
.hero-cta:hover .cta-arrow {
transform: translate(3px, -3px);
}
.nav-dot {
border-radius: 50%;
}
@media (prefers-reduced-motion: reduce) {
.header nav.open {
animation: none;
}
.hero-cta .cta-arrow {
transition: none;
}
}
.display {
font-size: clamp(5rem, 11.8vw, 12rem);
}
@media (max-width: 760px) {
.display {
font-size: clamp(3.2rem, 15.5vw, 7rem);
}
}
.header nav {
gap: clamp(0.65rem, 1.4vw, 1.5rem);
}
.nav-instagram {
border-bottom: 1px solid var(--color-accent);
}
.nav-instagram span {
color: var(--color-accent-text);
}
@media (min-width: 901px) and (max-width: 1150px) {
.header {
gap: 1rem;
padding-inline: 1.25rem;
}
.header nav a {
font-size: 0.75rem;
}
.brand {
font-size: 1.4rem;
}
}
.lightbox {
width: 100vw;
height: 100dvh;
max-width: none;
max-height: none;
padding: 1.25rem 2rem;
border: 0;
background: #0b0b0bfa;
color: var(--color-text);
margin: 0;
}
.lightbox[open] {
display: flex;
flex-direction: column;
}
.lightbox::backdrop {
background: #000;
}
.lightbox-top,
.lightbox-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
min-height: 52px;
}
.lightbox button {
background: transparent;
border: 1px solid #555;
min-height: 44px;
min-width: 44px;
padding: 0.6rem 1rem;
}
.lightbox button:hover {
border-color: var(--color-accent);
}
.lightbox-stage {
display: grid;
grid-template-columns: 48px minmax(0, 1fr) 48px;
gap: 1rem;
flex: 1;
min-height: 0;
align-items: center;
}
.photo-frame {
height: 100%;
min-height: 0;
overflow: auto;
display: flex;
align-items: center;
justify-content: center;
}
.lightbox-photo {
width: 100%;
height: 100%;
object-fit: contain;
}
.photo-frame.zoomed {
display: block;
}
.photo-frame.zoomed img {
width: 150%;
height: auto;
max-width: none;
object-fit: initial;
}
.lightbox-bottom p {
font-size: 0.9375rem;
}
.lightbox-bottom {
padding-top: 0.8rem;
}
.lightbox #photo-counter {
color: var(--color-muted);
font-variant-numeric: tabular-nums;
}
.lightbox.photo-loading .lightbox-photo {
opacity: 0.4;
}
body.photo-open {
overflow: hidden;
}
.portfolio {
padding: 0 var(--page-gutter) 8rem;
}
.portfolio-heading {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 2rem;
margin: 4rem 0 6rem;
}
.portfolio h2 {
font-family: var(--font-display);
font-size: clamp(5rem, 11vw, 11rem);
font-weight: 600;
text-transform: uppercase;
line-height: 0.88;
letter-spacing: -0.03em;
}
.portfolio h2 em {
font-family: var(--font-editorial);
font-size: 0.78em;
font-weight: 400;
text-transform: none;
letter-spacing: -0.07em;
color: var(--color-text);
}
.portfolio-heading > p {
color: var(--color-muted);
font-size: 1rem;
padding-bottom: 0.5rem;
}
.gallery-chapter {
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: 5rem 3rem;
align-items: start;
}
.gallery-chapter + .gallery-chapter {
margin-top: 8rem;
padding-top: 4rem;
border-top: 1px solid var(--color-border);
}
.gallery-note {
grid-column: 9 / 13;
grid-row: 1;
align-self: center;
}
.gallery-note > p {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 4rem);
text-transform: uppercase;
font-weight: 600;
line-height: 1.1;
margin-top: 1.5rem;
}
.gallery-note em {
font-family: var(--font-editorial);
font-size: 0.8em;
text-transform: none;
font-weight: 400;
}
.gallery-note-caption {
display: block;
margin-top: 2rem;
font-size: 0.625rem;
letter-spacing: 0.1em;
color: var(--color-muted);
}
.work-card {
margin: 0;
min-width: 0;
}
.work-image {
display: block;
position: relative;
overflow: hidden;
cursor: zoom-in;
background: #191919;
}
.work-image img {
width: 100%;
height: auto;
transition: transform 1s var(--ease-out);
}
.work-image:hover img,
.work-image:focus-visible img {
transform: scale(1.035);
}
.view-work {
position: absolute;
bottom: 1rem;
right: 1rem;
background: #0b0b0bdf;
padding: 0.8rem 1rem;
border: 1px solid #ffffff44;
font-size: 0.875rem;
opacity: 0;
transform: translateY(10px);
transition:
opacity 0.3s,
transform 0.3s;
}
.work-image:hover .view-work,
.work-image:focus-visible .view-work {
opacity: 1;
transform: none;
}
.work-card figcaption {
display: flex;
align-items: baseline;
gap: 1rem;
padding-top: 1rem;
}
.work-number {
color: var(--color-accent);
font-size: 0.75rem;
}
.work-card h3 {
font-weight: 400;
font-size: 1.125rem;
}
.work-card figcaption p {
color: var(--color-muted);
font-size: 0.875rem;
margin-top: 0.2rem;
}
.work-plus {
margin-left: auto;
color: var(--color-accent);
font-size: 1.3rem;
}
.work-1 {
grid-column: 1 / 8;
grid-row: 1;
}
.work-1 img {
max-height: 900px;
object-fit: contain;
background: #0b0b0b;
}
.work-2 {
grid-column: 2 / 7;
}
.work-3 {
grid-column: 8 / 13;
margin-top: 9rem;
}
.work-4 {
grid-column: 2 / 6;
margin-top: -6rem;
}
.gallery-memory .gallery-note {
grid-column: 1 / 13;
grid-row: auto;
}
.work-5 {
grid-column: 1 / 7;
}
.work-6 {
grid-column: 9 / 13;
margin-top: 8rem;
}
.gallery-faith .gallery-note {
grid-column: 1 / 13;
grid-row: auto;
}
.work-7 {
grid-column: 1 / 8;
}
.work-8 {
grid-column: 9 / 13;
margin-top: 10rem;
}
.work-9 {
grid-column: 4 / 9;
}
.lightbox-photo {
position: relative;
}
@media (max-width: 760px) {
.portfolio {
padding-bottom: 4rem;
}
.portfolio-heading {
display: block;
margin: 3rem 0 4rem;
}
.portfolio h2 {
font-size: clamp(4rem, 20vw, 7rem);
}
.portfolio-heading > p {
margin-top: 2rem;
}
.gallery-chapter {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 2.5rem 1rem;
}
.gallery-chapter + .gallery-chapter {
margin-top: 4rem;
padding-top: 3rem;
}
.gallery-note,
.gallery-memory .gallery-note,
.gallery-faith .gallery-note {
grid-column: 1 / -1;
grid-row: auto;
}
.gallery-note > p {
font-size: 2.5rem;
}
.gallery-note-caption {
display: none;
}
.work-card {
grid-column: span 1;
grid-row: auto;
margin-top: 0;
}
.work-1,
.work-5,
.work-7,
.work-9 {
grid-column: 1 / -1;
}
.work-4 {
grid-column: 1 / 2;
}
.work-6 {
grid-column: 2 / 3;
}
.work-8 {
grid-column: 1 / 2;
}
.work-card figcaption {
gap: 0.5rem;
}
.work-card h3 {
font-size: 1rem;
}
.work-number,
.work-plus,
.view-work {
display: none;
}
.lightbox {
padding: 1rem;
}
.lightbox-stage {
grid-template-columns: 1fr;
position: relative;
}
.photo-frame {
grid-column: 1;
grid-row: 1;
}
.photo-prev,
.photo-next {
position: absolute;
z-index: 2;
bottom: 0.6rem;
background: #0b0b0bdd !important;
}
.photo-prev {
left: 0.5rem;
}
.photo-next {
right: 0.5rem;
}
.lightbox-bottom p {
max-width: 65%;
}
}
.work-10 {
grid-column: 8 / 13;
}
.work-11 {
grid-column: 2 / 8;
}
.work-12 {
grid-column: 1 / 6;
}
.work-13 {
grid-column: 8 / 13;
margin-top: 6rem;
}
@media (max-width: 760px) {
.work-10,
.work-11,
.work-12,
.work-13 {
grid-column: span 1;
margin-top: 0;
}
.work-11 {
grid-column: 1 / -1;
}
}
@media (min-width: 761px) {
.chapter-layout:has(.chapter-small > :last-child:nth-child(2)) {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.chapter-layout:has(.chapter-small > :last-child:nth-child(2)) .chapter-small {
display: contents;
}
}
.curated-chapter {
display: block;
}
.curated-chapter .gallery-note {
margin-bottom: 2.5rem;
}
.chapter-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: start;
}
.chapter-small {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 2rem 1rem;
}
.chapter-layout .work-card {
margin: 0;
min-width: 0;
grid-column: auto;
grid-row: auto;
}
.chapter-layout img {
width: 100%;
height: auto;
aspect-ratio: 4 / 5;
object-fit: contain;
}
.chapter-small .work-number {
display: none;
}
.gallery-instagram {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
padding: 1.5rem 0;
margin-top: 4rem;
border-block: 1px solid #555;
font-size: 1rem;
}
.gallery-instagram small {
display: block;
color: var(--color-muted);
font-size: 0.875rem;
margin-top: 0.35rem;
}
.gallery-instagram > span:last-child {
color: var(--color-accent);
font-size: 2rem;
}
.gallery-instagram:hover {
border-color: var(--color-accent);
}
@media (max-width: 760px) {
.chapter-layout {
grid-template-columns: 1fr;
gap: 2rem;
}
.chapter-small {
gap: 2rem 1rem;
}
}
.artist {
background: #171717;
padding: 0 var(--page-gutter) 7rem;
}
.artist-layout {
display: grid;
grid-template-columns: 5fr 6fr;
gap: 10%;
margin-top: 5rem;
align-items: start;
}
.artist-portrait {
position: sticky;
top: 2rem;
}
.artist-portrait img {
width: 100%;
height: auto;
}
.artist-portrait figcaption {
display: flex;
justify-content: space-between;
gap: 1rem;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #444;
font-size: 0.75rem;
letter-spacing: 0.05em;
color: var(--color-muted);
}
.artist-copy h2 {
font-family: var(--font-display);
font-size: clamp(4rem, 9vw, 9rem);
font-weight: 600;
text-transform: uppercase;
line-height: 1;
letter-spacing: -0.02em;
margin: -0.08em 0 2.5rem;
}
.artist-copy h2 span {
color: var(--color-accent);
}
.artist-copy p {
font-size: 1rem;
line-height: 1.95;
color: #bcbab6;
margin-bottom: 1.75rem;
}
.artist-copy .artist-lead {
font-family: var(--font-editorial);
font-style: italic;
color: var(--color-text);
font-size: clamp(1.7rem, 3vw, 2.7rem);
line-height: 1.4;
}
.artist-contact {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--color-accent);
padding: 1.2rem 0;
margin-top: 2rem;
}
.artist-contact span {
color: var(--color-accent);
font-size: 1.6rem;
}
@media (max-width: 760px) {
.artist {
padding-bottom: 4rem;
}
.artist-layout {
grid-template-columns: 1fr;
gap: 3rem;
margin-top: 3rem;
}
.artist-portrait {
position: static;
max-width: 85%;
}
.artist-copy h2 {
font-size: clamp(4rem, 16vw, 6rem);
}
}
.artist-numbers {
margin-top: 5rem;
padding: 2.5rem 0;
border-top: 1px solid #383838;
border-bottom: 1px solid #383838;
display: grid;
grid-template-columns: 1.2fr repeat(3, 1fr);
gap: 2rem;
align-items: center;
}
.numbers-intro {
font-size: 1rem;
line-height: 1.6;
}
.numbers-intro em {
font-family: var(--font-editorial);
font-size: 1.4rem;
}
.number-value,
.number-plus {
font-family: var(--font-display);
font-size: clamp(2.7rem, 5vw, 5rem);
line-height: 1;
font-weight: 500;
font-variant-numeric: tabular-nums;
}
.number-plus {
color: var(--color-accent);
font-size: 2rem;
margin-left: 0.15rem;
}
.number-label {
display: block;
margin-top: 0.8rem;
font-size: 0.875rem;
color: var(--color-muted);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
@media (max-width: 760px) {
.artist-numbers {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem 0.6rem;
margin-top: 3rem;
}
.numbers-intro {
grid-column: 1/-1;
}
.number-value {
font-size: 2.5rem;
}
.number-plus {
font-size: 1.4rem;
}
.number-label {
font-size: 0.75rem;
}
}
.artist-numbers {
align-items: start;
}
.artist-quote {
margin: 0;
padding: 0;
}
.artist-quote .artist-lead::before {
content: '“';
color: var(--color-accent-text);
margin-right: 0.08em;
}
.artist-quote > p:last-child::after {
content: '”';
font-family: var(--font-editorial);
color: var(--color-accent-text);
font-size: 1.4em;
line-height: 0;
margin-left: 0.08em;
}
.studio {
padding: 7rem var(--page-gutter) 8rem;
background: #121212;
scroll-margin-top: 2rem;
}
.studio-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(3rem, 8vw, 9rem);
align-items: center;
margin-top: 5rem;
}
.studio-visual {
position: relative;
padding: 0 3rem 5rem 0;
}
.studio-visual:before {
content: '';
position: absolute;
top: 2rem;
left: -1rem;
bottom: 7rem;
width: 2rem;
background: var(--color-accent);
}
.studio-film {
display: block;
position: relative;
overflow: hidden;
background: #202020;
isolation: isolate;
}
.studio-film > img {
width: 100%;
height: auto;
aspect-ratio: 2/3;
object-fit: cover;
transition:
transform 1s var(--ease-out),
filter 0.6s;
}
.studio-film:after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(0deg, #000a, transparent 40%, #0005);
pointer-events: none;
}
.studio-film:hover > img {
transform: scale(1.035);
filter: brightness(0.85);
}
.film-tag,
.film-bottom {
position: absolute;
left: 1.5rem;
right: 1.5rem;
z-index: 1;
font-size: 0.75rem;
letter-spacing: 0.12em;
}
.film-tag {
top: 1.5rem;
}
.film-bottom {
bottom: 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.film-bottom > span {
font-size: 1.5rem;
}
.studio-detail {
position: absolute;
right: 0;
bottom: 0;
width: 55%;
margin: 0;
border: 6px solid #121212;
background: #121212;
}
.studio-detail img {
width: 100%;
height: auto;
}
.studio-detail figcaption {
font-size: 0.625rem;
letter-spacing: 0.1em;
padding: 0.65rem 0.1rem;
color: var(--color-muted);
}
.studio h2 {
font-family: var(--font-display);
font-weight: 400;
text-transform: uppercase;
font-size: clamp(3.4rem, 6.4vw, 6.5rem);
letter-spacing: -0.025em;
line-height: 1;
margin: 0 0 2rem;
}
.studio h2 span {
color: var(--color-accent);
}
.studio-copy > p {
font-size: 1rem;
line-height: 1.85;
color: #b9b8b5;
margin-bottom: 1.4rem;
}
.studio-copy > .studio-lead {
font-size: clamp(1.2rem, 2vw, 1.65rem);
line-height: 1.5;
color: var(--color-text);
}
.studio-address {
border-top: 1px solid #383838;
margin-top: 2.5rem;
padding-top: 1.5rem;
}
.studio-address p {
font-size: 0.9375rem;
line-height: 1.8;
margin-top: 0.8rem;
color: var(--color-muted);
}
.studio-directions {
display: inline-flex;
gap: 3rem;
align-items: center;
min-height: 48px;
border-bottom: 1px solid var(--color-accent);
margin-top: 0.8rem;
}
.studio-directions span {
color: var(--color-accent);
font-size: 1.5rem;
}
.studio-signature {
margin-top: 2rem;
}
.studio-signature > span {
font-family: Georgia, serif;
font-style: italic;
font-size: 1.8rem;
}
.studio-signature small {
display: block;
font-size: 0.65rem;
letter-spacing: 0.12em;
margin-top: 0.4rem;
color: var(--color-muted);
}
.film-dialog {
width: 100vw;
height: 100dvh;
max-width: none;
max-height: none;
margin: 0;
padding: 1rem 2rem;
border: 0;
background: #080808f7;
color: var(--color-text);
overflow: auto;
}
.film-dialog::backdrop {
background: #000;
}
.film-dialog[open] {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.film-toolbar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
flex-shrink: 0;
}
.film-toolbar h2 {
font-size: 0.9375rem;
font-weight: 400;
margin: 0;
}
.film-close {
background: transparent;
border: 1px solid #555;
min-height: 44px;
padding: 0.6rem 1rem;
}
.film-close:hover {
border-color: var(--color-accent);
}
.film-screen {
position: relative;
aspect-ratio: 9/16;
width: min(100%, calc((100dvh - 150px) * 0.5625));
min-width: 200px;
min-height: 200px;
background: #161616;
flex-shrink: 0;
box-shadow: 0 0 80px #0008;
}
.film-mount,
.film-mount iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.film-loading {
position: absolute;
inset: 0;
display: grid;
place-items: center;
text-align: center;
color: var(--color-muted);
font-size: 0.875rem;
padding: 1rem;
}
.film-fallback {
font-size: 0.875rem;
color: var(--color-muted);
text-align: center;
}
.film-fallback a {
color: var(--color-text);
text-decoration: underline;
text-underline-offset: 4px;
}
.film-dialog[open] {
animation: film-enter 0.3s var(--ease-out);
}
@keyframes film-enter {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: none;
}
}
body.film-open {
overflow: hidden;
}
@media (max-width: 760px) {
.studio {
padding: 4rem var(--page-gutter);
}
.studio-layout {
grid-template-columns: 1fr;
gap: 3rem;
margin-top: 3rem;
}
.studio-visual {
padding: 0 1.5rem 4rem 0;
}
.studio-visual:before {
left: -0.5rem;
width: 1rem;
bottom: 6rem;
}
.studio h2 {
font-size: clamp(3.2rem, 12vw, 5rem);
}
.studio-detail {
width: 58%;
}
.film-tag {
font-size: 0.625rem;
left: 1rem;
right: 1rem;
}
.film-bottom {
left: 1rem;
right: 1rem;
}
.film-dialog {
padding: 1rem;
}
.film-toolbar h2 {
font-size: 0.875rem;
}
.film-fallback {
font-size: 0.8125rem;
max-width: 22rem;
}
}
@media (prefers-reduced-motion: reduce) {
.studio-film:hover > img {
transform: none;
}
.film-dialog[open] {
animation: none;
}
}
.film-loading[hidden] {
display: none;
}
.studio {
padding-top: 0;
background: #0b0b0b;
}
.studio h2 {
font-weight: 600;
font-size: clamp(3.5rem, 7vw, 7rem);
}
.studio-visual:before {
width: 1px;
left: -1.5rem;
background: var(--color-accent);
}
.studio-detail {
border-color: #0b0b0b;
background: #0b0b0b;
}
.studio-copy > .studio-lead {
font-family: var(--font-editorial);
font-style: italic;
font-size: clamp(1.6rem, 2.7vw, 2.5rem);
}
.studio-signature {
border-top: 1px solid #333;
padding-top: 1.5rem;
}
@media (max-width: 760px) {
.studio {
padding-top: 0;
}
}
.film-play {
position: absolute;
z-index: 1;
left: 1.5rem;
bottom: 10rem;
display: flex;
align-items: center;
gap: 1rem;
color: #fff;
}
.film-play-icon {
width: 56px;
height: 56px;
display: grid;
place-items: center;
border: 1px solid #ffffff80;
border-radius: 50%;
background: #1119;
transition:
border-color 0.3s,
background 0.3s;
}
.film-play-copy {
font-size: 0.9375rem;
font-weight: 500;
}
.film-play-copy small {
display: block;
font-size: 0.75rem;
letter-spacing: 0.08em;
margin-top: 0.4rem;
}
.studio-film:hover .film-play-icon,
.studio-film:focus-visible .film-play-icon {
border-color: var(--color-accent);
background: #16060bc9;
}
.film-play-icon svg {
transition: transform 0.3s;
}
.studio-film:hover .film-play-icon svg {
transform: translateX(2px);
}
@media (max-width: 760px) {
.film-play {
left: 1rem;
gap: 0.75rem;
}
.film-play-icon {
width: 48px;
height: 48px;
}
}
@media (prefers-reduced-motion: reduce) {
.film-play-icon,
.film-play-icon svg {
transition: none;
}
.studio-film:hover .film-play-icon svg {
transform: none;
}
}
.journey {
padding: 7rem var(--page-gutter) 5rem;
scroll-margin-top: 2rem;
}
.journey-layout {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: clamp(3rem, 8vw, 9rem);
margin-top: 5rem;
align-items: start;
}
.journey-intro {
position: sticky;
top: 3rem;
}
.journey h2 {
font-family: var(--font-display);
font-weight: 400;
text-transform: uppercase;
font-size: clamp(3.5rem, 7.6vw, 8rem);
line-height: 1;
letter-spacing: -0.02em;
margin: 0 0 2rem;
}
.journey h2 span {
color: var(--color-accent);
}
.journey-intro > p {
color: var(--color-muted);
line-height: 1.8;
}
.journey-nav {
display: grid;
margin-top: 2.5rem;
max-width: 24rem;
}
.journey-nav a {
display: flex;
align-items: center;
gap: 1rem;
border-bottom: 1px solid #303030;
min-height: 49px;
color: #b2b1ae;
font-size: 0.9375rem;
transition:
color 0.25s,
padding 0.25s;
}
.journey-nav a > span:first-child {
font-size: 0.75rem;
font-variant-numeric: tabular-nums;
}
.journey-nav-arrow {
margin-left: auto;
opacity: 0;
}
.journey-nav a[aria-current='step'] {
color: var(--color-text);
padding-left: 0.6rem;
border-bottom-color: var(--color-accent);
}
.journey-nav a[aria-current='step'] > span:first-child {
color: var(--color-accent);
}
.journey-nav a[aria-current='step'] .journey-nav-arrow {
opacity: 1;
color: var(--color-accent);
}
.journey-nav a:hover {
color: white;
}
.journey-counter {
margin-top: 2rem;
color: #858585;
font-size: 0.875rem;
font-variant-numeric: tabular-nums;
}
.journey-counter > span:first-child {
color: var(--color-text);
font-size: 2rem;
}
.journey-track {
position: relative;
padding-left: 2.5rem;
}
.journey-rail {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 1px;
background: #353535;
}
.journey-rail > span {
display: block;
width: 100%;
height: 100%;
background: var(--color-accent);
transform: scaleY(var(--journey-progress, 0));
transform-origin: top;
}
.journey-steps {
list-style: none;
padding: 0;
margin: 0;
}
.journey-step {
position: relative;
min-height: 460px;
padding: 0 0 5rem;
scroll-margin-top: 5rem;
}
.journey-step:last-child {
min-height: 0;
padding-bottom: 2rem;
}
.journey-node {
position: absolute;
left: calc(-2.5rem - 5px);
top: 9px;
width: 11px;
height: 11px;
border: 1px solid #686868;
background: #0b0b0b;
border-radius: 50%;
transition:
background 0.3s,
border-color 0.3s;
}
.journey-step.is-current .journey-node {
background: var(--color-accent);
border-color: var(--color-accent);
outline: 1px solid #fb053255;
outline-offset: 6px;
}
.journey-step.is-past .journey-node {
background: var(--color-accent);
border-color: var(--color-accent);
}
.journey-step-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1.5rem;
}
.journey-step-number {
font-family: var(--font-display);
font-size: 5rem;
line-height: 1;
color: #303030;
transition: color 0.4s;
}
.journey-step.is-current .journey-step-number {
color: var(--color-accent);
}
.journey-step h3 {
font-size: clamp(1.5rem, 2.5vw, 2.5rem);
font-weight: 400;
line-height: 1.2;
letter-spacing: -0.025em;
margin: 0 0 1.5rem;
max-width: 28rem;
}
.journey-step p {
font-size: 1.0625rem;
line-height: 1.85;
color: #b9b8b5;
max-width: 33rem;
}
.journey-next {
display: inline-flex;
gap: 2rem;
align-items: center;
margin-top: 1.8rem;
font-size: 0.875rem;
min-height: 44px;
border-bottom: 1px solid #444;
}
.journey-next:hover {
border-color: var(--color-accent);
}
.journey-next span {
color: var(--color-accent);
}
.journey-cta {
margin-top: 2.5rem;
}
.journey-intro {
max-height: none;
}
@media (max-width: 760px) {
.journey {
padding: 4rem var(--page-gutter);
}
.journey-layout {
grid-template-columns: 1fr;
gap: 3.5rem;
margin-top: 3rem;
}
.journey-intro {
position: static;
}
.journey h2 {
font-size: clamp(3.5rem, 13vw, 6rem);
}
.journey-nav {
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 0.6rem;
max-width: none;
margin-top: 2rem;
}
.journey-nav a {
font-size: 0;
min-height: 48px;
justify-content: center;
gap: 0;
padding: 0;
}
.journey-nav a > span:first-child {
font-size: 1rem;
}
.journey-nav a[aria-current='step'] {
padding-left: 0;
}
.journey-nav-arrow,
.journey-counter {
display: none;
}
.journey-track {
padding-left: 1.7rem;
}
.journey-node {
left: calc(-1.7rem - 5px);
}
.journey-step {
min-height: 0;
padding-bottom: 4rem;
scroll-margin-top: 2.5rem;
}
.journey-step h3 {
font-size: 1.75rem;
}
.journey-step p {
font-size: 1rem;
}
.journey-step-number {
font-size: 3.5rem;
}
.journey-cta {
font-size: 0.875rem;
gap: 1rem;
padding: 1rem;
}
.journey-step-top {
margin-bottom: 1rem;
}
}
@media (prefers-reduced-motion: reduce) {
.journey-intro {
position: static;
}
.journey-rail > span {
transform: none;
}
.journey-node,
.journey-step-number,
.journey-nav a {
transition: none;
}
}
@media (min-width: 761px) and (max-height: 850px) {
.journey-intro {
top: 1.5rem;
}
.journey h2 {
font-size: clamp(3.5rem, 6vw, 5.5rem);
margin-bottom: 1.2rem;
}
.journey-nav {
margin-top: 1.4rem;
}
.journey-nav a {
min-height: 44px;
}
.journey-counter {
margin-top: 1rem;
}
}
.journey {
padding-top: 0;
background: #141414;
}
.journey h2,
.journey-step-number {
font-weight: 600;
}
.journey-node {
background: #141414;
}
.journey-intro > p {
font-family: var(--font-editorial);
font-style: italic;
font-size: 1.25rem;
}
@media (max-width: 760px) {
.journey {
padding-top: 0;
}
}
.journey-step-number {
color: #929292;
}
.journey-nav a[aria-current='step'] > span:first-child {
color: var(--color-accent-text);
}
.review-stars {
color: #e7bd71;
letter-spacing: 0.2em;
font-size: 1rem;
margin-bottom: 1.25rem;
}
.reviews-intro .reviews-source {
margin-top: 1rem;
font-size: 0.8125rem;
}
.reviews-source a {
display: table;
color: var(--color-text);
padding: 0.75rem 0;
text-decoration: underline;
text-underline-offset: 0.3em;
}
.testimonials {
padding: 0 var(--page-gutter) 7rem;
background: #191919;
}
.reviews-layout {
display: grid;
grid-template-columns: 5fr 6fr;
gap: 10%;
margin-top: 5rem;
}
.reviews-intro h2 {
font-family: var(--font-display);
font-size: clamp(3.5rem, 6vw, 6rem);
font-weight: 600;
text-transform: uppercase;
line-height: 0.95;
letter-spacing: -0.025em;
}
.reviews-intro h2 em {
font-family: var(--font-editorial);
font-weight: 400;
font-size: 0.7em;
text-transform: none;
}
.reviews-intro > p {
font-size: 0.9375rem;
color: var(--color-muted);
margin-top: 2rem;
}
.review-names {
display: grid;
margin-top: 2.5rem;
}
.review-names button {
text-align: left;
display: flex;
align-items: center;
gap: 1rem;
min-height: 52px;
padding: 0.8rem 0;
background: transparent;
border-bottom: 1px solid #383838;
color: var(--color-muted);
font-size: 0.875rem;
}
.review-names button > span {
font-size: 0.75rem;
}
.review-names button[aria-selected='true'] {
color: var(--color-text);
border-color: var(--color-accent);
}
.review-names button[aria-selected='true'] > span {
color: var(--color-accent);
}
.reviews-stage {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
}
.quote-mark {
color: var(--color-accent);
font-family: var(--font-editorial);
font-size: 7rem;
height: 5rem;
line-height: 1;
}
.review-panel blockquote {
margin: 0;
}
.review-panel blockquote p {
font-family: var(--font-editorial);
font-size: clamp(1.6rem, 2.5vw, 2.75rem);
font-weight: 400;
line-height: 1.45;
letter-spacing: -0.025em;
}
.review-panel {
margin-bottom: 3rem;
}
.testimonials.is-interactive .review-panels {
min-height: 340px;
}
.review-panel figcaption {
display: flex;
flex-direction: column;
gap: 0.3rem;
margin-top: 2rem;
font-size: 0.875rem;
}
.review-panel figcaption small {
color: var(--color-muted);
font-size: 0.75rem;
}
.review-controls {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: auto;
padding-top: 1.5rem;
border-top: 1px solid #444;
}
.review-count {
font-size: 0.75rem;
letter-spacing: 0.12em;
}
.review-controls > div {
display: flex;
gap: 0.5rem;
}
.review-controls button {
width: 48px;
height: 48px;
border: 1px solid #555;
background: transparent;
font-size: 1.4rem;
}
.review-controls button:hover {
background: var(--color-accent);
border-color: var(--color-accent);
}
@media (max-width: 760px) {
.testimonials {
padding-bottom: 4rem;
}
.reviews-layout {
grid-template-columns: 1fr;
gap: 3rem;
margin-top: 3rem;
}
.review-names {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0 1rem;
}
.review-names button {
font-size: 0.8125rem;
gap: 0.5rem;
}
.testimonials.is-interactive .review-panels {
min-height: 310px;
}
}
.review-names button[aria-selected='true'] > span {
color: var(--color-accent-text);
}
.review-panel > figure {
margin: 0;
}
.chapter-bridge {
height: clamp(100px, 12vw, 180px);
position: relative;
}
.chapter-bridge::before,
.chapter-bridge > span {
content: '';
position: absolute;
left: 0;
top: 0;
width: 1px;
height: 100%;
background: #333;
}
.chapter-bridge > span {
background: var(--color-accent);
transform-origin: top;
transform: scaleY(var(--chapter-vertical, 0));
}
.section-top {
position: relative;
}
.section-top::before {
content: '';
position: absolute;
top: -1px;
left: 0;
height: 1px;
width: 100%;
background: var(--color-accent);
transform-origin: left;
transform: scaleX(var(--chapter-horizontal, 0));
}
.scroll-reveal {
transition:
opacity 0.9s var(--ease-out),
transform 1.1s var(--ease-out);
}
.scroll-reveal.is-pending {
opacity: 0;
transform: translateY(36px);
}
.gallery-chapter .work-card:nth-of-type(even) {
transition-delay: 0.1s;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
}
.intro .reveal,
.scroll-reveal.is-pending {
opacity: 1;
visibility: visible;
transform: none;
}
.chapter-bridge > span,
.section-top::before {
transform: none;
}
.motion-toggle {
display: none;
}
.artist-portrait {
position: static;
}
}
.site-footer {
padding: 5rem var(--page-gutter) 1.5rem;
background: #080808;
border-top: 1px solid var(--color-accent);
}
.footer-invitation {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 3rem;
padding-bottom: 4rem;
}
.footer-invitation h2 {
margin-top: 1.5rem;
font-family: var(--font-display);
font-size: clamp(3rem, 5.5vw, 6rem);
font-weight: 600;
line-height: 1;
letter-spacing: -0.025em;
text-transform: uppercase;
}
.footer-invitation h2 em {
font-family: var(--font-editorial);
font-size: 0.85em;
font-weight: 400;
text-transform: none;
}
.footer-contact {
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
padding: 1rem 0;
border-bottom: 1px solid var(--color-accent);
min-height: 64px;
}
.footer-contact small {
display: block;
margin-top: 0.4rem;
color: var(--color-muted);
font-size: 0.625rem;
letter-spacing: 0.15em;
}
.footer-contact-arrow {
color: var(--color-accent);
font-size: 2.5rem;
transition: transform 0.35s var(--ease-out);
}
.footer-contact:hover .footer-contact-arrow {
transform: translate(4px, -4px);
}
.footer-information {
display: grid;
grid-template-columns: 1fr 1fr auto;
gap: 3rem;
padding: 3rem 0;
border-top: 1px solid var(--color-border);
}
.footer-label {
display: block;
margin-bottom: 1.25rem;
color: var(--color-muted);
font-size: 0.75rem;
letter-spacing: 0.12em;
}
.footer-studio p {
font-size: 0.875rem;
line-height: 1.8;
}
.footer-studio > a {
display: inline-flex;
align-items: center;
gap: 1.5rem;
min-height: 44px;
margin-top: 0.5rem;
font-size: 0.875rem;
}
.footer-studio > a span {
color: var(--color-accent);
}
.footer-nav > div {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0 1.5rem;
}
.footer-nav a {
display: flex;
align-items: center;
min-height: 44px;
font-size: 0.875rem;
}
.footer-nav a:hover,
.footer-studio > a:hover {
color: var(--color-accent);
}
.back-to-top {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
align-self: start;
font-size: 0.75rem;
}
.back-to-top > span {
display: grid;
place-items: center;
width: 52px;
height: 52px;
border: 1px solid #555;
font-size: 1.5rem;
transition:
background 0.25s,
border-color 0.25s;
}
.back-to-top:hover > span {
background: var(--color-accent);
border-color: var(--color-accent);
}
.footer-wordmark {
display: block;
width: fit-content;
max-width: 100%;
margin: 1.5rem 0 2rem;
font-family: var(--font-display);
font-weight: 600;
font-size: clamp(3rem, 6vw, 7rem);
line-height: 0.95;
letter-spacing: -0.03em;
}
.footer-wordmark > span {
color: var(--color-accent);
margin-left: 0.08em;
}
.footer-bottom {
display: flex;
justify-content: space-between;
gap: 1rem;
border-top: 1px solid var(--color-border);
padding-top: 1.25rem;
color: var(--color-muted);
}
.footer-bottom small,
.footer-bottom > span {
font-size: 0.75rem;
}
.footer-bottom > span {
letter-spacing: 0.08em;
}
@media (max-width: 760px) {
.site-footer {
padding-top: 3rem;
}
.footer-invitation {
flex-direction: column;
align-items: stretch;
gap: 2rem;
}
.footer-contact {
max-width: 26rem;
}
.footer-information {
grid-template-columns: 1fr auto;
gap: 2.5rem 1rem;
}
.footer-studio {
grid-column: 1;
}
.back-to-top {
grid-column: 2;
grid-row: 1;
}
.footer-nav {
grid-column: 1 / -1;
}
.footer-wordmark {
font-size: clamp(2.5rem, 10vw, 4rem);
}
.footer-bottom {
flex-direction: column;
gap: 0.75rem;
}
}
.social-links {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem 1rem;
padding: 0 0 2rem;
}
.social-links .footer-label {
margin: 0 1rem 0 0;
}
.social-links a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding: 0.65rem 0.9rem;
min-height: 44px;
border: 1px solid #393939;
font-size: 0.875rem;
transition: border-color 0.2s;
}
.social-links a span {
color: var(--color-accent);
}
.social-links a:hover {
border-color: var(--color-accent);
}
@media (max-width: 760px) {
.social-links .footer-label {
flex-basis: 100%;
margin-bottom: 0.5rem;
}
}
.cookie-notice {
position: fixed;
z-index: 30;
left: 1.25rem;
bottom: 1.25rem;
width: min(440px, calc(100% - 2.5rem));
padding: 1.25rem;
background: #161616;
border: 1px solid #414141;
box-shadow: 0 8px 30px #0004;
}
.cookie-copy h2 {
font-size: 0.9375rem;
font-weight: 600;
}
.cookie-copy p {
margin-top: 0.6rem;
color: #bcbab6;
font-size: 0.875rem;
line-height: 1.6;
}
.cookie-actions {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
}
.cookie-actions > button,
.privacy-dialog-actions > button {
flex: 1;
min-height: 44px;
padding: 0.65rem 0.85rem;
border: 1px solid #666;
background: transparent;
color: var(--color-text);
font-size: 0.875rem;
}
.cookie-actions > button:hover,
.privacy-dialog-actions > button:hover {
background: #282828;
border-color: #aaa;
}
.cookie-actions > .cookie-details {
flex-basis: 100%;
border: 0;
min-height: 32px;
padding: 0.35rem;
text-decoration: underline;
text-underline-offset: 4px;
color: #bcbab6;
}
.privacy-settings-link {
min-height: 44px;
padding: 0;
font-size: 0.75rem;
background: transparent;
color: inherit;
text-decoration: underline;
text-underline-offset: 4px;
}
.footer-bottom {
align-items: center;
flex-wrap: wrap;
}
.privacy-dialog {
width: min(600px, calc(100% - 2rem));
max-height: calc(100dvh - 2rem);
padding: clamp(1.25rem, 4vw, 2rem);
border: 1px solid #444;
background: #151515;
color: var(--color-text);
overscroll-behavior: contain;
}
.privacy-dialog::backdrop {
background: #000b;
}
.privacy-heading {
display: flex;
justify-content: space-between;
align-items: center;
}
.privacy-close {
width: 44px;
height: 44px;
background: transparent;
font-size: 1.8rem;
}
.privacy-dialog h2 {
margin: 0.75rem 0 1rem;
font-size: 1.5rem;
font-weight: 500;
}
.privacy-dialog p {
color: #bbb9b5;
font-size: 0.875rem;
line-height: 1.75;
}
.privacy-dialog .privacy-context {
color: var(--color-text);
margin-bottom: 1rem;
}
.privacy-category {
padding: 1.2rem 0;
border-bottom: 1px solid #363636;
}
.privacy-category h3 {
font-size: 0.9375rem;
font-weight: 500;
margin-bottom: 0.5rem;
}
.privacy-option {
display: flex;
justify-content: space-between;
gap: 1.5rem;
align-items: center;
min-height: 44px;
margin-bottom: 0.5rem;
cursor: pointer;
}
.privacy-option small {
display: block;
color: var(--color-muted);
font-size: 0.75rem;
}
.privacy-option input {
width: 22px;
height: 22px;
flex-shrink: 0;
accent-color: var(--color-accent);
}
.privacy-dialog a {
text-decoration: underline;
text-underline-offset: 3px;
}
.privacy-more {
padding-top: 1rem;
}
.privacy-more summary {
cursor: pointer;
font-size: 0.875rem;
min-height: 44px;
}
.privacy-more p {
margin: 0.75rem 0;
}
.privacy-dialog-actions {
display: flex;
gap: 0.75rem;
margin-top: 1.5rem;
}
body.privacy-open {
overflow: hidden;
}
@media (max-width: 480px) {
.cookie-notice {
left: 0.75rem;
bottom: 0.75rem;
width: calc(100% - 1.5rem);
padding: 1rem;
}
.privacy-dialog-actions {
flex-direction: column;
}
}
.cookie-notice {
width: min(620px, calc(100% - 2rem));
left: 1rem;
bottom: 1rem;
padding: 0.85rem 1rem;
}
.cookie-copy h2 {
font-size: 0.875rem;
}
.cookie-copy p {
margin-top: 0.25rem;
font-size: 0.875rem;
}
.cookie-actions {
gap: 0.5rem;
margin-top: 0.65rem;
}
.cookie-actions > button {
flex: 1 1 auto;
padding: 0.5rem 0.65rem;
}
.cookie-actions > .cookie-details {
flex-basis: auto;
min-height: 44px;
}
.privacy-option:has(input:disabled) {
color: var(--color-muted);
}
@media (max-width: 480px) {
.cookie-notice {
width: calc(100% - 1.5rem);
left: 0.75rem;
bottom: 0.75rem;
padding: 0.75rem;
}
.cookie-actions {
gap: 0.25rem;
}
.cookie-actions > button {
font-size: 0.8125rem;
padding: 0.5rem 0.35rem;
}
}
.specialties {
padding: 0 var(--page-gutter) 6rem;
}
.specialties-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
gap: clamp(2rem, 7vw, 8rem);
margin-top: 4rem;
align-items: start;
}
.specialties-photo {
position: sticky;
top: 2rem;
}
.specialties-photo img {
width: 100%;
height: auto;
}
.specialties-photo figcaption {
border-top: 1px solid #333;
padding-top: 0.8rem;
margin-top: 1rem;
font-size: 0.75rem;
color: var(--color-muted);
}
.specialties h2 {
font-family: var(--font-display);
font-size: clamp(2.8rem, 5.5vw, 6rem);
line-height: 1;
text-transform: uppercase;
font-weight: 500;
letter-spacing: -0.02em;
}
.specialties-intro {
margin: 1.5rem 0 2.5rem;
color: var(--color-muted);
}
.specialty {
display: grid;
grid-template-columns: 2rem 1fr;
gap: 1rem;
border-top: 1px solid #393939;
padding: 2rem 0;
}
.specialty h3 {
font-family: var(--font-editorial);
font-weight: 400;
font-style: italic;
font-size: 2.4rem;
line-height: 1.2;
margin-bottom: 1.2rem;
}
.specialty p {
line-height: 1.85;
color: var(--color-muted);
}
.specialty a {
display: inline-flex;
align-items: center;
gap: 2rem;
min-height: 44px;
border-bottom: 1px solid #555;
margin-top: 1.3rem;
font-size: 0.875rem;
}
.specialty a span {
color: var(--color-accent);
}
.specialty a:hover {
border-color: var(--color-accent);
}
@media (max-width: 760px) {
.specialties {
padding-bottom: 3rem;
}
.specialties-layout {
grid-template-columns: 1fr;
gap: 2.5rem;
margin-top: 2.5rem;
}
.specialties-photo {
position: static;
}
.specialties h2 {
font-size: clamp(2.6rem, 10vw, 4rem);
}
}