@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@300;400&display=swap');

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

:root {
  --bg:      #F2EFE9;
  --ink:     #111110;
  --muted:   #888880;
  --line:    rgba(17,17,16,.1);
  --white:   #FAFAF8;
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'DM Mono', monospace;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ─── CURSOR ─── */
#cur {
  position: fixed; z-index: 99999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s, opacity .2s;
  top: 0; left: 0;
}
#cur.big { width: 44px; height: 44px; background: transparent; border: 1px solid var(--ink); }
@media (hover: none) { #cur { display: none; } body { cursor: auto; } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 56px;
  transition: background .3s;
}

.nav-logo {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex; list-style: none; gap: 0;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links li a {
  display: block;
  padding: .5rem .9rem;
  color: var(--muted);
  transition: color .2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--ink); }

.nav-cta {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; inset: 0; top: 56px; z-index: 190;
  background: var(--bg); border-top: 1px solid var(--line);
  flex-direction: column; padding: 2rem 1.5rem; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--f-display); font-size: 1.6rem; font-style: italic;
  padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mob-menu .mob-label {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); padding: 1.4rem 0 .4rem;
  border-bottom: none;
}

/* ─── HERO ─── */
#hero {
  padding-top: 56px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.hero-left {
  padding: 6rem 3rem 5rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line);
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero-headline em { font-style: italic; font-weight: 400; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 3rem;
}

.hero-bottom {
  display: flex; align-items: center; justify-content: space-between;
}

.hero-scroll-hint {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line { width: 32px; height: 1px; background: var(--muted); }

.hero-diamond {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-right:hover img { transform: scale(1.03); }

.hero-right-label {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: rgba(17,17,16,.4);
  padding: .3rem .8rem; backdrop-filter: blur(4px);
}

/* ─── CLIENTS STRIP ─── */
.clients-strip {
  border-bottom: 1px solid var(--line);
  display: flex; overflow: hidden;
}
.cs-label {
  flex-shrink: 0; border-right: 1px solid var(--line);
  padding: 1.4rem 2rem;
  font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; white-space: nowrap;
}
.cs-logos { display: flex; flex: 1; overflow: hidden; }
.cs-track {
  display: flex; align-items: center;
  width: max-content;
  animation: scrollLeft 24s linear infinite;
}
.cs-item {
  font-family: var(--f-mono); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); padding: 0 3rem;
  border-right: 1px solid var(--line);
  white-space: nowrap; display: flex; align-items: center; height: 64px;
  transition: color .2s;
}
.cs-item:hover { color: var(--ink); }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── WHAT I DO ─── */
#services {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
.services-label {
  padding: 3rem 2rem; border-right: 1px solid var(--line);
  display: flex; align-items: flex-start;
}
.services-label span {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; }
.svc {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.svc:hover { background: var(--white); }
.svc:nth-child(2n) { border-right: none; }
.svc:nth-last-child(-n+2) { border-bottom: none; }
.svc-icon {
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.1rem;
}
.svc h3 {
  font-family: var(--f-mono); font-size: .95rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  margin-bottom: .75rem;
}
.svc p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ─── FEATURED WORK ─── */
#work {
  display: grid; grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
.work-sidebar {
  padding: 3rem 2rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2rem;
}
.work-sidebar-label {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.work-sidebar h2 {
  font-family: var(--f-display); font-size: 2.4rem;
  font-weight: 400; line-height: 1.1;
}
.work-sidebar p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7; }
.see-all {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--ink); padding: .5rem 1rem;
  transition: background .2s, color .2s; width: fit-content;
}
.see-all:hover { background: var(--ink); color: var(--bg); }

.work-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
.w-item {
  position: relative; overflow: hidden;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: block;
}
.w-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; border-left: none; }
.w-item:nth-child(2), .w-item:nth-child(3) { aspect-ratio: 4/3; }
.w-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.w-item:hover img { transform: scale(1.04); }
.w-item-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(17,17,16,.7) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.w-item-meta h4 {
  font-family: var(--f-display); font-size: 1.3rem;
  font-weight: 400; font-style: italic; color: #fff;
}
.w-item-meta span {
  font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
}
.w-img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* ─── ABOUT ─── */
#about {
  display: grid; grid-template-columns: 220px 1fr 1fr;
  border-bottom: 1px solid var(--line); min-height: 520px;
}
.about-label-col { padding: 3rem 2rem; border-right: 1px solid var(--line); }
.about-label-col span {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.about-text-col {
  padding: 3rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.about-text-col h2 {
  font-family: var(--f-display); font-size: 2.6rem;
  font-weight: 400; line-height: 1.15; letter-spacing: -.01em;
}
.about-text-col h2 em { font-style: italic; }
.about-text-col p { font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.75; }

.about-facts-col {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.fact-row {
  padding: 1.2rem 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.fact-row:first-child { padding-top: 0; }
.fact-row:last-child { border-bottom: none; }
.fact-key {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); flex-shrink: 0;
}
.fact-val { font-size: 1rem; font-weight: 400; text-align: right; line-height: 1.5; }

/* ─── TECH / STARTUPS ─── */
#tech { border-bottom: 1px solid var(--line); padding: 5rem 2.5rem; }
.tech-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.tech-header h2 { font-family: var(--f-display); font-size: 2.8rem; font-weight: 400; }
.tech-header h2 em { font-style: italic; }
.tech-header span {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

.tech-list { display: flex; flex-direction: column; }
.t-row {
  display: grid; grid-template-columns: 3fr 4fr 2fr 1fr;
  align-items: center; padding: 1.5rem 0;
  border-bottom: 1px solid var(--line); gap: 2rem;
  transition: background .2s;
}
.t-row:hover { background: var(--white); margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }
.t-num { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); letter-spacing: .1em; margin-right: 1.5rem; flex-shrink: 0; }
.t-name-wrap { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.t-name { font-family: var(--f-display); font-size: 1.5rem; font-weight: 400; font-style: italic; }
.t-desc { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.t-tag {
  font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); padding: .25rem .7rem;
  color: var(--muted); width: fit-content; white-space: nowrap;
}
.t-arrow { font-size: 1rem; color: var(--muted); text-align: right; transition: color .2s, transform .2s; }
.t-row:hover .t-arrow { color: var(--ink); transform: translateX(4px); }

/* ─── CERTS ─── */
#certs { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--line); }
.certs-label { padding: 3rem 2rem; border-right: 1px solid var(--line); }
.certs-label span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.certs-list { display: grid; grid-template-columns: repeat(4, 1fr); }
.cert-item {
  padding: 2rem 1.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .8rem; transition: background .2s;
}
.cert-item:hover { background: var(--white); }
.cert-item:nth-child(4n) { border-right: none; }
.cert-icon { font-size: 1.4rem; opacity: .7; }
.cert-name { font-size: 1rem; font-weight: 400; line-height: 1.45; }
.cert-issuer { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: auto; }

/* ─── CONTACT ─── */
#contact { display: grid; grid-template-columns: 220px 1fr; min-height: 480px; }
.contact-label { padding: 3rem 2rem; border-right: 1px solid var(--line); }
.contact-label span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-body { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; gap: 2.5rem; }
.contact-body h2 { font-family: var(--f-display); font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; }
.contact-body h2 em { font-style: italic; }
.contact-sub { font-size: 1.1rem; font-weight: 300; color: var(--muted); max-width: 400px; line-height: 1.7; }
.contact-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.c-btn {
  font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .7rem 1.6rem;
  border: 1px solid var(--ink); color: var(--ink);
  background: transparent; transition: background .2s, color .2s;
}
.c-btn:hover, .c-btn.filled { background: var(--ink); color: var(--bg); }
.c-btn.filled:hover { background: transparent; color: var(--ink); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2.5rem;
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
footer a:hover { color: var(--ink); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.stagger.in > *:nth-child(1){opacity:1;transform:none;transition-delay:.04s}
.stagger.in > *:nth-child(2){opacity:1;transform:none;transition-delay:.10s}
.stagger.in > *:nth-child(3){opacity:1;transform:none;transition-delay:.16s}
.stagger.in > *:nth-child(4){opacity:1;transform:none;transition-delay:.22s}
.stagger.in > *:nth-child(5){opacity:1;transform:none;transition-delay:.28s}
.stagger.in > *:nth-child(6){opacity:1;transform:none;transition-delay:.34s}
.stagger.in > *:nth-child(7){opacity:1;transform:none;transition-delay:.40s}
.stagger.in > *:nth-child(8){opacity:1;transform:none;transition-delay:.46s}

/* ─── SUB-PAGE SHARED ─── */
.page-hero {
  min-height: 52vh; display: grid; grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line); padding-top: 56px;
}
.ph-label { padding: 3rem 2rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.ph-label a { font-family: var(--f-mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.ph-label a:hover { color: var(--ink); }
.ph-label small { font-family: var(--f-mono); font-size: .65rem; color: var(--muted); }
.ph-main { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem; }
.ph-eyebrow { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ph-title { font-family: var(--f-display); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; }
.ph-title em { font-style: italic; }
.ph-sub { font-size: 1.1rem; font-weight: 300; color: var(--muted); max-width: 500px; line-height: 1.7; }
.ph-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; border: 1px solid var(--ink); padding: .5rem 1.1rem;
  color: var(--ink); width: fit-content; transition: background .2s, color .2s;
}
.ph-link:hover { background: var(--ink); color: var(--bg); }
.img-full { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; border-top: 1px solid var(--line); }

.pg-grid { display: grid; grid-template-columns: 220px 1fr; border-top: 1px solid var(--line); }
.pg-sidebar { padding: 3rem 2rem; border-right: 1px solid var(--line); position: sticky; top: 56px; align-self: start; }
.pg-sidebar > span { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1.5rem; }
.pg-sidebar nav a { display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: .5rem 0; border-bottom: 1px solid var(--line); transition: color .2s; }
.pg-sidebar nav a:hover, .pg-sidebar nav a.active { color: var(--ink); }
.pg-content { padding: 3rem 3rem; }

.item-list { display: flex; flex-direction: column; }
.i-row { display: flex; align-items: baseline; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); transition: background .2s; flex-wrap: wrap; }
.i-row:hover { background: var(--white); margin: 0 -3rem; padding-left: 3rem; padding-right: 3rem; }
.i-row:first-child { padding-top: 0; }
.i-name { font-family: var(--f-display); font-size: 1.4rem; font-style: italic; font-weight: 400; min-width: 220px; }
.i-note { font-size: 1rem; font-weight: 300; color: var(--muted); }

/* ─── VIDEO (film page) ─── */
.vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin: 0 -3rem; }
.vlite { position: relative; overflow: hidden; background: #111; cursor: pointer; aspect-ratio: 16/9; }
.vlite .vthumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.vlite:hover .vthumb { transform: scale(1.05); }
.vlite .vplay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(17,17,16,.28); transition: background .25s; }
.vlite:hover .vplay { background: rgba(17,17,16,.48); }
.vlite .vplay-btn { width: 52px; height: 52px; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; padding-left: 3px; transition: transform .2s; }
.vlite:hover .vplay-btn { transform: scale(1.1); }
.vlite .vmeta { position: absolute; bottom: 0; left: 0; right: 0; padding: .9rem 1.1rem; background: linear-gradient(transparent,rgba(17,17,16,.75)); }
.vlite .vmeta-title { font-family: var(--f-display); font-size: 1rem; font-style: italic; color: #fff; line-height: 1.2; }
.vlite .vmeta-tag { font-family: var(--f-mono); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .25rem; }
.vlite.playing .vthumb, .vlite.playing .vplay, .vlite.playing .vmeta { display: none; }
.vlite .vframe { display: none; position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vlite.playing .vframe { display: block; }
.vcard-all { background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; aspect-ratio: 16/9; text-align: center; padding: 2rem; transition: background .2s; }
.vcard-all:hover { background: #222; }
.vcard-all span { font-family: var(--f-display); font-size: 1.2rem; font-style: italic; color: #fff; }
.vcard-all small { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.pg-intro { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 2rem; }
.pg-intro a { text-decoration: underline; text-underline-offset: 3px; }

/* Spotify */
.spotify-block { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.spotify-label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.spotify-block iframe { border-radius: 10px; border: none; }

/* ─── PRINT ─── */
.awards-block { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.award-block { padding: 2rem; border: 1px solid var(--line); display: flex; gap: 1.5rem; align-items: flex-start; transition: background .2s; }
.award-block:hover { background: var(--white); }
.award-icon { font-size: 2rem; flex-shrink: 0; opacity: .7; }
.award-title { font-family: var(--f-display); font-size: 1.5rem; font-style: italic; margin-bottom: .5rem; }
.award-desc { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

.campaign { margin-bottom: 4rem; }
.campaign-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.campaign-name { font-family: var(--f-display); font-size: 1.8rem; font-style: italic; }
.campaign-meta { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.thumb-grid { display: grid; gap: 2px; background: var(--line); }
.thumb-grid.col-3 { grid-template-columns: repeat(3,1fr); }
.thumb-grid.col-2 { grid-template-columns: repeat(2,1fr); max-width: 700px; }
.thumb-grid.col-1 { grid-template-columns: 1fr; max-width: 400px; }
.thumb-item { position: relative; overflow: hidden; cursor: zoom-in; background: #e0ddd5; aspect-ratio: 4/3; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s; }
.thumb-item:hover img { transform: scale(1.06); }
.thumb-overlay { position: absolute; inset: 0; background: rgba(17,17,16,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.thumb-item:hover .thumb-overlay { background: rgba(17,17,16,.2); }
.zoom-icon { width: 46px; height: 46px; border: 1.5px solid rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; opacity: 0; transform: scale(.6); transition: opacity .25s, transform .25s; }
.thumb-item:hover .zoom-icon { opacity: 1; transform: scale(1); }
.thumb-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: .7rem .9rem; background: linear-gradient(transparent, rgba(17,17,16,.7)); opacity: 0; transition: opacity .3s; }
.thumb-item:hover .thumb-caption { opacity: 1; }
.thumb-caption span { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(10,10,9,.95); align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; display: block; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.lb-close { position: fixed; top: 1.2rem; right: 1.5rem; color: rgba(255,255,255,.65); font-size: 1.8rem; background: none; border: none; cursor: pointer; line-height: 1; padding: .4rem; transition: color .2s; z-index: 10; }
.lb-close:hover { color: #fff; }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer; transition: background .2s, color .2s; z-index: 10; }
.lb-nav:hover { background: rgba(255,255,255,.22); color: #fff; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-info { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); text-align: center; }
.lb-title { font-family: var(--f-display); font-size: 1rem; font-style: italic; color: rgba(255,255,255,.85); }
.lb-counter { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }

/* ─── RADIO ─── */
.radio-list { display: flex; flex-direction: column; }
.radio-track { display: grid; grid-template-columns: 2.5rem 1fr; border-bottom: 1px solid var(--line); }
.rt-num { display: flex; align-items: flex-start; justify-content: center; padding: 2rem .5rem 2rem 0; border-right: 1px solid var(--line); font-family: var(--f-mono); font-size: .68rem; color: var(--muted); }
.rt-body { padding: 2rem 2rem; }
.rt-client { font-family: var(--f-display); font-size: 1.6rem; font-style: italic; margin-bottom: .3rem; }
.rt-desc { font-size: .95rem; color: var(--muted); margin-bottom: 1.2rem; }
.sc-embed iframe { display: block; border: none; width: 100%; border-radius: 4px; }

/* ─── PHOTOGRAPHY ─── */
.platforms-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.platform-btn { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: .5rem 1.1rem; color: var(--muted); transition: border-color .2s, color .2s; }
.platform-btn:hover { border-color: var(--ink); color: var(--ink); }
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin: 0 -3rem; }
.photo-item { overflow: hidden; aspect-ratio: 1; background: #ddd; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.photo-item:hover img { transform: scale(1.05); }

/* ─── BLOGS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin: 0 -3rem; }
.blog-card { background: var(--bg); overflow: hidden; display: flex; flex-direction: column; transition: background .2s; }
.blog-card:hover { background: var(--white); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .5s; }
.blog-card:hover img { transform: scale(1.03); }
.blog-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.blog-card-tag { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.blog-card-title { font-family: var(--f-display); font-size: 1.4rem; font-style: italic; margin-bottom: .6rem; }
.blog-card-desc { font-size: .95rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.blog-card-cta { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #about { grid-template-columns: 1fr; }
  .about-label-col { display: none; }
  .about-text-col { border-right: none; }
  #services { grid-template-columns: 1fr; }
  .services-label { border-right: none; border-bottom: 1px solid var(--line); }
  #work { grid-template-columns: 1fr; }
  .work-sidebar { border-right: none; border-bottom: 1px solid var(--line); }
  #certs { grid-template-columns: 1fr; }
  .certs-label { display: none; }
  .certs-list { grid-template-columns: repeat(2,1fr); }
  #contact { grid-template-columns: 1fr; }
  .contact-label { display: none; }
  .t-row { grid-template-columns: 1fr 2fr; }
  .t-desc, .t-arrow { display: none; }
  .vgrid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid { grid-template-columns: repeat(2,1fr); }
  .thumb-grid.col-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 40vw; }
  .hero-left { border-right: none; padding: 3rem 1.5rem 2.5rem; }
  .work-gallery { grid-template-columns: 1fr; }
  .w-item:nth-child(1) { grid-column: 1; }
  .certs-list { grid-template-columns: 1fr 1fr; }
  .cert-item:nth-child(2n) { border-right: none; }
  .contact-body { padding: 3rem 1.5rem; }
  #tech { padding: 3rem 1.5rem; }
  .page-hero, .pg-grid { grid-template-columns: 1fr; }
  .ph-label, .pg-sidebar { display: none; }
  .ph-main { padding: 3rem 1.5rem; }
  .pg-content { padding: 2.5rem 1.5rem; }
  .vgrid { grid-template-columns: 1fr; margin: 0 -1.5rem; }
  .photo-grid { grid-template-columns: repeat(2,1fr); margin: 0 -1.5rem; }
  .blog-grid { grid-template-columns: 1fr; margin: 0 -1.5rem; }
  .thumb-grid.col-3, .thumb-grid.col-2 { grid-template-columns: 1fr; }
  .thumb-grid.col-2 { max-width: 100%; }
  .thumb-grid.col-1 { max-width: 100%; }
  .i-row:hover { margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .lb-prev { left: .3rem; }
  .lb-next { right: .3rem; }
}
@media (max-width: 480px) {
  .certs-list { grid-template-columns: 1fr; }
  .cert-item:nth-child(2n) { border-right: none; }
  .photo-grid { grid-template-columns: 1fr; }
}
