:root {
--bg: #f5f1e8;
--paper: #fbf8f1;
--ink: #111;
--muted: #6d675d;
--line: #d8cec0;
--warm: #b98c5a;
--dark: #101010;
}
*{
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: Inter, Arial, Helvetica, sans-serif;
}
a{
color: inherit;
text-decoration: none;
}
button,
a{
-webkit-tap-highlight-color: transparent;
}
/* HEADER */
.site-header {
height: 76px;
padding: 0 48px;
display: grid;
grid-template-columns: 260px 1fr 190px;
align-items: center;
border-bottom: 1px solid rgba(216, 206, 192, 0.65);

background: rgba(245, 241, 232, 0.92);
backdrop-filter: blur(12px);
position: sticky;
top: 0;
z-index: 10;
}
.brand {
display: flex;
align-items: center;
gap: 16px;
font-weight: 800;
letter-spacing: 0.22em;
font-size: 14px;
}
.brand-mark {
width: 28px;
height: 28px;
border: 1px solid var(--ink);
border-radius: 50%;
display: grid;
place-items: center;
font-size: 10px;
letter-spacing: 0;
}
.main-nav {
display: flex;
justify-content: center;
gap: 38px;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
}
.main-nav a {
padding: 28px 0 22px;
border-bottom: 2px solid transparent;
}
.main-nav a.active,
.main-nav a:hover {
border-bottom-color: var(--ink);

}
.connect-btn {
justify-self: end;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
padding: 15px 20px;
border-radius: 6px;
background: var(--dark);
color: #fff;
font-size: 13px;
font-weight: 600;
line-height: 1;
white-space: nowrap;
}
.linkedin-icon {
width: 14px;
height: 14px;
min-width: 14px;
min-height: 14px;
object-fit: contain;
display: block;
flex: 0 0 14px;
}
/* HOME HERO */
.hero {
min-height: 640px;
padding: 92px 48px 80px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.hero-copy {
width: 100%;
max-width: 920px;
margin: 0 auto;
}

.hero-intro {
margin: 0 0 18px;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(36px, 4vw, 56px);
font-weight: 400;
line-height: 1.08;
}
.hero-role {
margin: 0 auto 30px;
color: var(--warm);
font-size: clamp(11px, 1.1vw, 14px);
font-weight: 800;
line-height: 1.6;
letter-spacing: 0.2em;
text-transform: uppercase;
}
.hero h1 {
max-width: 920px;
margin: 0 auto 34px;
font-family: Inter, Arial, Helvetica, sans-serif;
font-size: clamp(34px, 4.2vw, 58px);
font-weight: 700;
line-height: 1.12;
letter-spacing: -0.03em;
}
.hero-text {
max-width: 650px;
margin: 28px auto 0;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(18px, 1.8vw, 22px);
line-height: 1.5;
}
.hero-actions {
display: flex;
align-items: stretch;
justify-content: flex-start;
flex-wrap: wrap;
gap: 16px;

margin-top: 42px;
}
.hero-actions a {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 0;
}
.primary-btn,
.secondary-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 14px;
min-width: 180px;
padding: 16px 22px;
border-radius: 6px;
font-size: 13px;
font-weight: 800;
text-transform: uppercase;
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.primary-btn {
background: var(--dark);
color: #fff;
}
.secondary-btn {
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.3);
}
.primary-btn:hover,
.secondary-btn:hover {
transform: translateY(-2px);
}
.secondary-btn:hover {
border-color: var(--warm);
}
.primary-btn.small {
min-width: auto;

margin-top: 22px;
padding: 14px 18px;
}
.hero-visual {
display: none;
}
#work-categories,
#work,
#about {
scroll-margin-top: 96px;
}
/* GLOBAL LABELS */
.kicker,
.eyebrow {
margin: 0 0 18px;
color: var(--warm);
letter-spacing: 0.28em;
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
}
/* CAPABILITY FILTERS */
.capabilities {
margin: 0 48px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
border: 1px solid rgba(185, 140, 90, 0.7);
border-radius: 8px;
overflow: hidden;
background: rgba(255, 255, 255, 0.12);
}
.capability {
appearance: none;
background: transparent;
border: none;
border-right: 1px solid rgba(185, 140, 90, 0.55);
border-bottom: 3px solid transparent;

cursor: pointer;
display: grid;
grid-template-columns: 42px 1fr;
gap: 18px;
text-align: left;
padding: 28px 34px;
color: var(--ink);
transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.capability:last-child {
border-right: none;
}
.capability:hover {
background: rgba(185, 140, 90, 0.08);
}
.capability .icon {
font-size: 30px;
line-height: 1;
transition: color 0.22s ease;
}
.capability b {
display: block;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 0.16em;
font-size: 13px;
transition: color 0.22s ease;
}
.capability small {
color: var(--muted);
line-height: 1.45;
font-size: 13px;
}
.capability.active {
background: rgba(185, 140, 90, 0.12);
border-bottom-color: var(--warm);
box-shadow: inset 0 0 0 1px rgba(185, 140, 90, 0.2);
}

.capability.active .icon,
.capability.active b {
color: var(--warm);
}
/* HOME WORK */
.dynamic-work,
.lab-section,
.creation-section {
margin: 0 48px;
padding: 42px 0;
border-bottom: 1px solid var(--line);
}
.section-heading {
display: flex;
justify-content: space-between;
gap: 40px;
align-items: end;
margin-bottom: 28px;
}
.section-heading h2 {
margin: 0 0 8px;
font-family: Georgia, "Times New Roman", serif;
font-size: 36px;
}
.section-heading p:not(.eyebrow) {
margin: 0;
max-width: 780px;
color: var(--muted);
line-height: 1.55;
}
.text-link {
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 13px;
}

/* WORK CARD LAYOUTS */
.work-grid {
display: grid;
gap: 22px;
min-height: 300px;
}
.work-grid.layout-grid {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.work-grid.layout-triple {
grid-template-columns: repeat(3, minmax(0, 1fr));
max-width: 1120px;
margin-left: auto;
margin-right: auto;
}
.work-grid.layout-double {
grid-template-columns: repeat(2, minmax(0, 420px));
justify-content: center;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.work-grid.layout-single {
grid-template-columns: minmax(0, 900px);
justify-content: center;
}
/* WORK CARDS */
.work-card {
min-height: 330px;
border: 1px solid rgba(185, 140, 90, 0.42);
background: rgba(255, 255, 255, 0.32);
border-radius: 6px;
overflow: hidden;
display: flex;
flex-direction: column;
opacity: 0;
transform: translateY(10px);

animation: rise 0.35s ease forwards;
color: inherit;
transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.work-card:nth-child(2) { animation-delay: 0.05s; }
.work-card:nth-child(3) { animation-delay: 0.1s; }
.work-card:nth-child(4) { animation-delay: 0.15s; }
.work-card:nth-child(5) { animation-delay: 0.2s; }
@keyframes rise {
to {
opacity: 1;
transform: translateY(0);
}
}
.work-card:hover {
transform: translateY(-4px);
border-color: var(--warm);
box-shadow: 0 14px 30px rgba(185, 140, 90, 0.16);
}
.work-card.dark {
background: #111;
color: white;
}
.work-image {
width: 100%;
height: 190px;
flex: 0 0 190px;
overflow: hidden;
background:
radial-gradient(circle at 70% 30%, rgba(185, 140, 90, 0.28), transparent 30%),
linear-gradient(135deg, rgba(17, 17, 17, 0.08), transparent),
#eee7dc;
border-bottom: 1px solid rgba(216, 206, 192, 0.5);
}
.work-image.has-image {
background: none;
}

.work-image.has-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
transition: transform 0.4s ease;
}
.work-card:hover .work-image.has-image img {
transform: scale(1.025);
}
.work-card.dark .work-image {
background:
radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.2), transparent 28%),
repeating-radial-gradient(circle at center, transparent 0 24px, rgba(255, 255, 255, 0.16) 25px
26px),
#151515;
}
.work-card-content {
position: relative;
padding: 24px;
flex: 1;
display: flex;
flex-direction: column;
background: var(--paper);
}
.work-card.dark .work-card-content {
background: #111;
color: white;
}
.work-card h3 {
margin: 0 0 12px;
font-size: 23px;
line-height: 1.15;
}
.work-card p {
margin: 0;
color: inherit;

opacity: 0.78;
line-height: 1.5;
font-size: 15px;
}
.card-arrow {
margin-top: auto;
padding-top: 22px;
font-size: 24px;
}
.layout-triple .work-card {
min-height: 410px;
}
.layout-triple .work-image {
height: 210px;
flex-basis: 210px;
}
.layout-grid .work-card {
min-height: 380px;
}
.layout-grid .work-image {
height: 190px;
flex-basis: 190px;
}
.layout-grid .work-card h3 {
font-size: 21px;
}
.layout-grid .work-card-content {
padding: 22px;
}
.layout-double .work-card {
aspect-ratio: 1 / 1;
min-height: 0;
width: 100%;
}
.layout-double .work-image {

height: 52%;
flex: 0 0 52%;
}
.layout-double .work-card-content {
height: 48%;
min-height: 0;
padding: 24px;
}
.layout-double .work-card h3 {
font-size: 25px;
}
.layout-single .work-card {
width: 100%;
max-width: 900px;
min-height: 0;
}
.layout-single .work-image {
height: 300px;
flex: 0 0 300px;
}
.layout-single .work-card-content {
padding: 24px 28px 26px;
}
/* ABOUT */
.about-section {
display: grid;
grid-template-columns: 260px minmax(0, 1fr);
gap: 64px;
align-items: start;
margin: 0 48px;
padding: 48px 0;
border-bottom: 1px solid var(--line);
}
.about-sidebar {
display: flex;
flex-direction: column;

gap: 32px;
}
.about-photo img {
width: 220px;
height: auto;
display: block;
border-radius: 14px;
}
.about-card p:last-child {
font-size: 16px;
line-height: 1.8;
}
.about-main {
max-width: 920px;
}
.about-main h2 {
margin: 0 0 22px;
font-family: Georgia, "Times New Roman", serif;
font-size: 40px;
line-height: 1.1;
}
.about-main p {
margin: 0 0 18px;
color: var(--ink);
font-size: 17px;
line-height: 1.65;
}
/* CASE STUDIES */
.case-study {
margin: 0 48px;
}
.case-hero {
padding: 72px 0 40px;
border-bottom: 1px solid var(--line);
}

.case-hero h1 {
max-width: 900px;
margin: 0 0 22px;
font-family: Impact, "Arial Narrow Bold", sans-serif;
font-size: clamp(54px, 7vw, 96px);
line-height: 0.9;
letter-spacing: 0.01em;
}
.case-hero p:not(.eyebrow) {
max-width: 820px;
margin: 0;
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
line-height: 1.42;
}
.case-meta {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 32px;
padding: 34px 0;
border-bottom: 1px solid var(--line);
}
.case-meta p:not(.eyebrow) {
color: var(--ink);
line-height: 1.5;
}
.case-meta strong {
font-weight: 700;
}
.case-image {
min-height: 320px;
border: 1px solid var(--line);
background:
linear-gradient(rgba(245, 241, 232, 0.66), rgba(245, 241, 232, 0.66)),
repeating-linear-gradient(110deg, transparent 0 16px, rgba(17, 17, 17, 0.05) 17px 18px);
display: grid;
place-items: center;
color: var(--muted);
font-family: Georgia, "Times New Roman", serif;

}
.hero-image {
min-height: 500px;
margin: 34px 0;
}
.case-section {
padding: 46px 0;
border-bottom: 1px solid var(--line);
}
.two-column {
display: grid;
grid-template-columns: 0.7fr 1.3fr;
gap: 72px;
}
.case-section h2 {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(24px, 2.1vw, 32px);
font-weight: 500;
line-height: 1.2;
}
.case-section p {
max-width: 760px;
margin-top: 0;
font-size: 17px;
line-height: 1.68;
}
.case-section p + p {
margin-top: 16px;
}
.case-section strong {
font-weight: 800;
}
.process-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));

gap: 18px;
margin-top: 28px;
}
.process-grid div {
padding: 24px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.28);
}
.process-grid h3 {
margin-top: 0;
font-size: 16px;
letter-spacing: 0.02em;
}
.process-grid p {
font-size: 15px;
line-height: 1.55;
}
.case-gallery {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
padding: 34px 0;
border-bottom: 1px solid var(--line);
}
.case-gallery img {
width: 100%;
height: auto;
display: block;
border: 1px solid var(--line);
background: white;
}
.final-gallery {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.case-list {
max-width: 760px;
padding-left: 18px;

font-size: 16px;
line-height: 1.75;
}
.case-list li {
margin-bottom: 8px;
}
.note {
color: var(--muted);
font-style: italic;
}
/* ROOT EXTENSION CASE STUDY */
.case-image.tall-image { min-height: 640px; }
.case-image.wide-image { min-height: 420px; }
.case-image.small-image { min-height: 260px; }
.case-image.dark-image {
border-color: rgba(17, 17, 17, 0.9);
background:
radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.12), transparent 30%),
repeating-linear-gradient(110deg, transparent 0 16px, rgba(255, 255, 255, 0.05) 17px 18px),
#111;
color: rgba(255, 255, 255, 0.72);
}
.case-callout {
margin: 26px 0;
padding-left: 22px;
border-left: 4px solid var(--warm);
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
line-height: 1.35;
}
.metric-grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 14px;
margin-top: 24px;
}

.metric-card {
min-height: 150px;
padding: 18px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.28);
}
.metric-card strong {
display: block;
margin-bottom: 10px;
color: var(--warm);
font-size: 13px;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.metric-card p {
margin: 0;
font-size: 14px;
line-height: 1.5;
}
/* GRAPHIC DESIGN PAGE */
.graphic-gallery {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
padding: 34px 0;
border-bottom: 1px solid var(--line);
}
.graphic-gallery img {
width: 100%;
height: auto;
display: block;
border: 1px solid var(--line);
background: white;
}
.graphic-gallery.single {
grid-template-columns: minmax(280px, 720px);
justify-content: center;
}

.graphic-gallery.three {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.graphic-gallery.vertical img {
max-height: 760px;
object-fit: contain;
}
/* RESEARCH OVERVIEW PAGE */
.case-section .process-grid {
align-items: stretch;
}
.case-section .process-grid div {
min-height: 190px;
}
.case-section .process-grid h3 {
font-size: 18px;
margin-bottom: 14px;
}
.case-section .process-grid p {
font-size: 15px;
}
.case-section .case-list {
margin-top: 10px;
}
/* PUBLICATIONS */
.publication-entry {
border-bottom: 1px solid var(--line);
}
.publication-entry .two-column {
align-items: start;
}
.publication-entry h2 {

max-width: 420px;
}
.publication-entry em {
color: var(--muted);
font-style: italic;
}
.publication-entry strong {
display: block;
margin-top: 22px;
margin-bottom: 6px;
font-size: 12px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--warm);
}
/* WRITINGS */
.journal-page .case-hero p:not(.eyebrow) {
max-width: 680px;
}
.journal-entry {
padding: 58px 0;
border-bottom: 1px solid var(--line);
}
.journal-meta {
margin-bottom: 28px;
}
.journal-meta h2 {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(32px, 4vw, 54px);
font-weight: 400;
line-height: 1.05;
}
.journal-layout {
display: grid;
grid-template-columns: 1.05fr 0.95fr;

gap: 42px;
}
.journal-layout.reverse {
grid-template-columns: 0.95fr 1.05fr;
}
.journal-text {
background: rgba(255, 255, 255, 0.24);
border: 1px solid rgba(216, 206, 192, 0.72);
padding: 42px;
}
.journal-text p {
margin: 0 0 22px;
font-family: Georgia, serif;
font-size: 21px;
line-height: 1.55;
}
.journal-text p:last-child {
margin-bottom: 0;
}
.journal-art {
min-height: 520px;
border: 1px solid var(--line);
display: grid;
place-items: center;
padding: 28px;
color: var(--muted);
font-family: Georgia, "Times New Roman", serif;
text-align: center;
}
/* ART */
.art-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}

.art-grid img {
width: 100%;
display: block;
border-radius: 4px;
object-fit: cover;
transition: transform 0.3s ease;
}
.art-grid img:hover {
transform: scale(1.02);
}
/* CONTACT */
.contact-links-inline {
display: flex;
flex-wrap: wrap;
gap: 32px;
margin-top: 48px;
}
.contact-links-inline a {
color: var(--ink);
border-bottom: 1px solid currentColor;
padding-bottom: 4px;
}
/* PROTOTYPE */
.prototype-section {
padding: 86px 0;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.prototype-layout {
display: grid;
grid-template-columns: 360px 1fr;
gap: 90px;
align-items: center;
}
.prototype-phone {
display: flex;

justify-content: center;
}
.fixed-phone {
width: 310px;
height: 640px;
border: 10px solid #111;
border-radius: 42px;
overflow: hidden;
background: white;
box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}
.phone-scroll {
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
.phone-scroll img {
width: 100%;
display: block;
}
.phone-scroll::-webkit-scrollbar {
display: none;
}
.prototype-dual-layout {
display: grid;
grid-template-columns: auto 1fr;
gap: 80px;
align-items: center;
}
.prototype-phones {
display: flex;
gap: 24px;
align-items: center;
}
.scroll-phone {

width: 260px;
height: 540px;
padding: 10px;
background: #111;
border-radius: 40px;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.scroll-phone-screen {
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
border-radius: 30px;
background: #fff;
-webkit-overflow-scrolling: touch;
}
.scroll-phone-screen img {
width: 100%;
height: auto;
display: block;
}
.scroll-phone-screen::-webkit-scrollbar {
display: none;
}
/* FOOTER */
.footer {
padding: 24px 48px;
display: flex;
justify-content: space-between;
gap: 20px;
font-size: 13px;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
.work-grid.layout-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-meta {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prototype-phones {
flex-direction: column;
}
}
@media (max-width: 980px) {
.site-header {
grid-template-columns: 1fr auto;
padding: 0 22px;
}
.main-nav,
.connect-btn {
display: none;
}
.hero {
min-height: auto;
padding: 76px 22px 58px;
}
.hero-intro {
font-size: clamp(34px, 8vw, 48px);
margin-bottom: 14px;
}
.hero-role {
max-width: 680px;
margin-bottom: 26px;
font-size: 11px;
letter-spacing: 0.16em;
}
.hero h1 {
max-width: 760px;

font-size: clamp(38px, 8vw, 60px);
line-height: 1.04;
}
.hero-text {
font-size: 19px;
}
.capabilities {
margin: 0 22px;
grid-template-columns: 1fr;
}
.capability {
width: 100%;
border-right: none;
border-bottom: 1px solid rgba(185, 140, 90, 0.45);
}
.capability:last-child {
border-bottom: none;
}
.dynamic-work,
.lab-section,
.creation-section {
margin: 0 22px;
}
.work-grid.layout-grid,
.work-grid.layout-triple {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.work-grid.layout-double {
grid-template-columns: repeat(2, minmax(0, 1fr));
max-width: none;
}
.layout-double .work-card {
aspect-ratio: auto;
min-height: 390px;
}

.layout-double .work-image {
height: 210px;
flex: 0 0 210px;
}
.layout-double .work-card-content {
height: auto;
}
.about-section {
grid-template-columns: 1fr;
margin: 0 22px;
gap: 40px;
}
.about-photo img {
width: 180px;
}
.case-study {
margin: 0 22px;
}
.case-hero {
padding-top: 52px;
}
.case-hero h1 {
font-size: clamp(48px, 15vw, 76px);
}
.case-hero p:not(.eyebrow) {
font-size: 20px;
}
.case-meta,
.two-column,
.process-grid,
.case-gallery,
.final-gallery,
.graphic-gallery,
.graphic-gallery.three,
.graphic-gallery.single,
.journal-layout,

.journal-layout.reverse,
.prototype-layout,
.prototype-dual-layout {
grid-template-columns: 1fr;
}
.case-section {
padding: 38px 0;
}
.case-section h2 {
font-size: 25px;
}
.metric-grid {
grid-template-columns: 1fr;
}
.case-image.tall-image,
.case-image.wide-image {
min-height: 360px;
}
.art-grid {
grid-template-columns: repeat(2, 1fr);
}
.prototype-phones {
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}
.footer {
padding: 24px 22px;
display: grid;
gap: 14px;
}
}
@media (max-width: 620px) {
.hero {
padding: 62px 22px 48px;
}

.hero-intro {
font-size: 34px;
}
.hero-role {
max-width: 330px;
font-size: 10px;
line-height: 1.7;
letter-spacing: 0.13em;
}
.hero h1 {
font-size: clamp(34px, 10vw, 48px);
line-height: 1.06;
}
.hero-actions {
flex-direction: column;
margin-top: 34px;
}
.primary-btn,
.secondary-btn {
width: 100%;
max-width: 320px;
}
.section-heading {
align-items: start;
flex-direction: column;
}
.work-grid.layout-grid,
.work-grid.layout-triple,
.work-grid.layout-double {
grid-template-columns: 1fr;
max-width: 520px;
margin-left: auto;
margin-right: auto;
}
.layout-grid .work-card,
.layout-triple .work-card,

.layout-double .work-card {
min-height: 0;
aspect-ratio: auto;
}
.layout-grid .work-image,
.layout-triple .work-image,
.layout-double .work-image {
height: 230px;
flex: 0 0 230px;
}
.layout-double .work-card-content {
height: auto;
}
.case-meta {
gap: 28px;
}
.art-grid {
grid-template-columns: 1fr;
}
.journal-text {
padding: 28px;
}
.journal-text p {
font-size: 19px;
}
}
.paper-links {
display: flex;
gap: 16px;
margin-top: 28px;
align-items: center;
flex-wrap: wrap;
}
.prototype-embed-wrapper {
width: 100%;
margin: 40px 0 80px;
}

.prototype-iframe {
width: 100%;
height: 920px;
border: none;
display: block;
}
/* BILINGUAL HEADER CONTROLS */
.header-actions {
justify-self: end;
display: inline-flex;
align-items: center;
gap: 12px;
}
.language-toggle {
min-width: 48px;
padding: 13px 14px;
border: 1px solid var(--warm);
border-radius: 6px;
background: transparent;
color: var(--ink);
font: inherit;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.1em;
cursor: pointer;
transition: background 0.2s ease, color 0.2s ease;
}
.language-toggle:hover {
background: var(--warm);
color: #fff;
}
@media (max-width: 980px) {
.header-actions { gap: 8px; }
.language-toggle { padding: 11px 12px; }
}

/* FINAL FIX — equal size for paired case-study buttons */
.case-study .hero-actions > a.primary-btn,
.case-study .hero-actions > a.primary-btn.small,
.case-study .hero-actions > a.secondary-btn {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 220px !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 620px) {
  .case-study .hero-actions > a.primary-btn,
  .case-study .hero-actions > a.primary-btn.small,
  .case-study .hero-actions > a.secondary-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 320px !important;
    flex: 0 1 320px !important;
  }
}

