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

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

:root {
  --black: #0a0a0a;
  --white: #f0ede8;
  --purple: #7B5EA7;
  --purple-light: #9B7EC8;
  --muted: rgba(240,237,232,0.58);
  --rule: rgba(240,237,232,0.08);
}

html { scroll-behavior: smooth; }
body {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4vw;
  border-bottom: 1px solid var(--rule);
}
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-brand a { text-decoration: none; }
.nav-name {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--white); text-transform: uppercase;
}
.nav-sub {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; color: var(--muted);
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.current_page_item { color: var(--white); }
.nav-links a sup { color: var(--purple-light); font-size: 9px; margin-left: 1px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 20px; height: 1px; background: var(--muted); }

/* ── SECTION CHROME ── */
.section-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.section-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.22em; color: var(--purple-light);
  text-transform: uppercase; white-space: nowrap;
}
.section-rule { flex: 1; height: 1px; background: var(--rule); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1.4rem 4vw; border-bottom: 1px solid var(--rule); }
.breadcrumb a {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase; transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(240,237,232,0.2); margin: 0 0.6rem;
}

/* ── FOOTER ── */
.site-footer { padding: 4rem 4vw 2.5rem; border-top: 1px solid var(--rule); }
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 4rem; gap: 2rem;
}
.footer-email {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: clamp(20px,3vw,38px); letter-spacing: -0.01em;
  color: var(--white); display: block;
  transition: color 0.2s; line-height: 1.2;
}
.footer-email:hover { color: var(--purple-light); }
.footer-email-sub {
  font-size: 13px; font-weight: 300;
  color: var(--muted); margin-top: 0.6rem; line-height: 1.6;
}
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; padding-top: 0.3rem; }
.footer-social a {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; color: var(--muted);
  text-transform: uppercase; transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(240,237,232,0.2); }
.back-top {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; color: var(--muted);
  text-transform: uppercase; transition: color 0.2s; cursor: pointer;
}
.back-top:hover { color: var(--white); }

/* ── HOME: HERO ── */
.hero { padding: 3rem 4vw 0; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: clamp(12px,1.2vw,14px); font-weight: 300;
  color: var(--muted); margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 44px; height: 1px;
  background: rgba(240,237,232,0.18); flex-shrink: 0;
}
.hero-headline {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: clamp(30px,5vw,66px); line-height: 1.07;
  letter-spacing: -0.02em; color: var(--white);
  max-width: 18ch; margin-bottom: 2.8rem;
}
.hero-video-wrap {
  width: 100%; aspect-ratio: 16/7;
  background: #0d0d0d; overflow: hidden; position: relative;
}
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── HOME: WORKS GRID ── */
.works-section { padding: 5rem 4vw 4rem; }
.works-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--rule);
}
.work-card {
  background: var(--black); padding: 0;
  display: flex; flex-direction: column;
  transition: background 0.25s; cursor: pointer;
}
.work-card:hover { background: rgba(123,94,167,0.07); }
.work-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(240,237,232,0.04);
  border: none; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-thumb-placeholder {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; color: rgba(240,237,232,0.1); text-transform: uppercase;
}
.work-info { padding: 1.4rem 1.6rem 1.8rem; }
.work-client {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 0.45rem;
}
.work-title { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--white); line-height: 1.4; margin-bottom: 1rem; }
.work-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.work-tag {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.1em; color: var(--purple-light);
  border: 1px solid rgba(123,94,167,0.25);
  padding: 2px 7px; text-transform: uppercase;
}
.section-cta { margin-top: 2.5rem; display: flex; justify-content: flex-end; }
.section-cta a {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center;
  gap: 0.6rem; transition: color 0.2s;
}
.section-cta a:hover { color: var(--white); }
.section-cta a::after { content: '→'; color: var(--purple-light); }

/* ── HOME: EXPERTISE ── */
.expertise-section { padding: 4rem 4vw; }
.expertise-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem 5vw; }
.expertise-item { border-left: 1.5px solid var(--purple); padding-left: 1.4rem; }
.expertise-num { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.22em; color: var(--purple-light); margin-bottom: 0.6rem; }
.expertise-name { font-size: clamp(14px,1.5vw,17px); font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.expertise-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── HOME: JOURNAL ── */
.journal-section { padding: 4rem 4vw; }
.journal-list { display: flex; flex-direction: column; }
.journal-entry {
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.2s;
}
.journal-entry:first-child { border-top: 1px solid var(--rule); }
.journal-entry:hover { padding-left: 0.6rem; }
.journal-left { display: flex; flex-direction: column; gap: 0.35rem; }
.journal-stamp { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: var(--muted); }
.journal-title { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--white); }
.journal-arrow { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--purple-light); white-space: nowrap; flex-shrink: 0; }

/* ── HOME: CONTACT ── */
.contact-section { padding: 4rem 4vw 5rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px,6vw,80px); line-height: 0.95; color: var(--white);
  margin-top: 0.5rem;
}
.contact-headline .accent { color: var(--purple-light); }
.contact-lede { font-size: 14px; font-weight: 300; color: var(--muted); margin-top: 1.4rem; line-height: 1.7; max-width: 36ch; }
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; padding-top: 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.field input, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(240,237,232,0.15);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-weight: 300; font-size: 14px; padding: 0.55rem 0;
  outline: none; width: 100%; border-radius: 0;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--purple-light); }
.field textarea { height: 72px; resize: none; }
.submit-btn {
  align-self: flex-start; font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: none;
  border: 1px solid rgba(123,94,167,0.45);
  padding: 0.8rem 1.8rem; cursor: pointer; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.submit-btn::before { content: ''; position: absolute; top: -1px; left: 0; width: 36px; height: 2px; background: var(--purple); }
.submit-btn:hover { border-color: var(--purple-light); background: rgba(123,94,167,0.08); }
.form-message { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--purple-light); margin-top: 0.5rem; display: none; }
.form-message.visible { display: block; }

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 4rem 4vw 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start;
}
.about-headline {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: clamp(38px,6vw,78px); line-height: 1.0;
  letter-spacing: -0.02em; color: var(--white);
}
.about-intro { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--muted); line-height: 1.75; padding-top: 0.6rem; }
.photo-split { display: grid; grid-template-columns: 1fr 1fr; }
.photo-split .photo { aspect-ratio: 4/3; background: rgba(240,237,232,0.05); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.photo-split .photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.18em; color: rgba(240,237,232,0.1); text-transform: uppercase; }
.about-second { padding: 3.5rem 4vw; display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
.about-second .offset { grid-column: 2; }
.about-second-text { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--muted); line-height: 1.75; }
.experience { padding: 3rem 4vw 3.5rem; border-top: 1px solid var(--rule); }
.exp-layout { display: grid; grid-template-columns: 220px 1fr; gap: 4vw; align-items: start; }
.exp-heading { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.01em; color: var(--white); line-height: 1.1; position: sticky; top: 5rem; }
.exp-table { width: 100%; border-collapse: collapse; }
.exp-table tr { border-bottom: 1px solid var(--rule); }
.exp-table tr:first-child { border-top: 1px solid var(--rule); }
.exp-table td { padding: 1.1rem 0; vertical-align: top; }
.exp-company { font-size: clamp(14px,1.5vw,17px); font-weight: 400; color: var(--white); width: 38%; }
.exp-role { font-size: 13px; font-weight: 300; color: var(--muted); width: 42%; padding-right: 1rem; }
.exp-dates { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: rgba(240,237,232,0.3); text-align: right; white-space: nowrap; width: 20%; }
.clients { padding: 3rem 4vw 3.5rem; border-top: 1px solid var(--rule); }
.clients-lede { font-size: clamp(13px,1.4vw,16px); font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 44ch; margin-bottom: 2.5rem; }
.clients-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--rule); }
.client-cell { background: var(--black); aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center; padding: 1rem; transition: background 0.2s; }
.client-cell:hover { background: rgba(240,237,232,0.03); }
.client-name { font-family: 'DM Mono', monospace; font-size: clamp(9px,0.85vw,12px); letter-spacing: 0.16em; color: var(--purple-light); text-transform: uppercase; text-align: center; line-height: 1.4; transition: color 0.2s; }
.client-cell:hover .client-name { color: var(--white); }
.moments { padding: 3rem 4vw 3.5rem; border-top: 1px solid var(--rule); }
.moments-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(24px,3vw,38px); letter-spacing: -0.01em; color: var(--white); margin-bottom: 0.5rem; }
.moments-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 2rem; }
.moments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.moment-cell { background: rgba(240,237,232,0.03); aspect-ratio: 1/1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.moment-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.moment-placeholder { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em; color: rgba(240,237,232,0.1); text-transform: uppercase; }

/* ── WORKS INDEX ── */
.page-head { padding: 3.5rem 4vw 2.5rem; border-bottom: 1px solid var(--rule); }
.page-head-inner { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; }
.page-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px,5vw,58px); letter-spacing: -0.02em; color: var(--white); line-height: 1.0; }
.page-count { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--purple-light); }
.works-index-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.works-index-grid .work-card { background: var(--black); }
.works-index-grid .work-thumb { aspect-ratio: 3/2; }
.works-index-grid .work-info { padding: 1.4rem 1.4rem 1.8rem; }

/* ── WORK SINGLE ── */
.case-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: 80vh; }
.case-sidebar {
  padding: 3rem 2rem 3rem 4vw; border-right: 1px solid var(--rule);
  position: sticky; top: 56px; height: calc(100vh - 56px);
  overflow-y: auto; display: flex; flex-direction: column; gap: 2rem;
}
.case-sidebar::-webkit-scrollbar { width: 0; }
.meta-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  color: rgba(240,237,232,0.3); text-transform: uppercase;
  margin-bottom: 0.45rem; padding-bottom: 0.45rem; border-bottom: 1px solid var(--rule);
}
.meta-value { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.5; }
.case-body { padding: 3rem 5vw 3rem 3.5rem; max-width: 800px; }
.case-headline {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: clamp(26px,3.8vw,50px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 2.8rem;
}
.case-body p { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 1.4rem; max-width: 62ch; }
.case-body p strong { color: var(--white); font-weight: 400; }
.case-image { width: 100%; aspect-ratio: 16/9; background: rgba(240,237,232,0.04); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; margin: 2.5rem 0; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-image-placeholder { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; color: rgba(240,237,232,0.1); text-transform: uppercase; }
.case-image-caption { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(240,237,232,0.25); margin-top: 0.8rem; margin-bottom: 2rem; }
.case-divider { height: 1px; background: var(--rule); margin: 2.5rem 0; }
.next-project { border-top: 1px solid var(--rule); padding: 3rem 4vw; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; gap: 2rem; }
.next-project:hover { background: rgba(123,94,167,0.05); }
.next-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.5rem; }
.next-title { font-size: clamp(15px,2vw,22px); font-weight: 300; color: var(--white); }
.next-arrow { font-family: 'DM Mono', monospace; font-size: 18px; color: var(--purple-light); flex-shrink: 0; }

/* ── JOURNAL INDEX ── */
.journal-index-list { display: flex; flex-direction: column; padding: 0 4vw; }
.journal-index-entry {
  display: grid; grid-template-columns: 140px 1fr auto;
  align-items: baseline; gap: 2vw;
  padding: 1.5rem 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.2s;
}
.journal-index-entry:first-child { border-top: 1px solid var(--rule); }
.journal-index-entry:hover { padding-left: 0.5rem; }
.entry-date { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: rgba(240,237,232,0.3); white-space: nowrap; }
.entry-title { font-size: clamp(15px,1.8vw,20px); font-weight: 300; color: var(--white); line-height: 1.35; }
.entry-read { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: rgba(240,237,232,0.25); white-space: nowrap; text-align: right; }

/* ── JOURNAL SINGLE ── */
.post-wrap { max-width: 680px; margin: 0 auto; padding: 3.5rem 4vw 4rem; }
.post-stamp { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: rgba(240,237,232,0.3); margin-bottom: 1.6rem; display: flex; align-items: center; gap: 0.8rem; }
.post-stamp .dot { color: rgba(240,237,232,0.15); }
.post-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(28px,4.5vw,52px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin-bottom: 2.8rem; }
.post-body { display: flex; flex-direction: column; gap: 1.4rem; }
.post-body p { font-size: clamp(15px,1.6vw,18px); font-weight: 300; color: var(--muted); line-height: 1.8; }
.post-body p strong { font-weight: 500; color: var(--white); }
.post-body .pull { font-size: clamp(15px,1.6vw,18px); font-weight: 500; color: var(--white); line-height: 1.6; padding-left: 1.4rem; border-left: 2px solid var(--purple); margin: 0.6rem 0; }
.post-nav { max-width: 680px; margin: 0 auto; padding: 2rem 4vw; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--rule); }
.post-nav a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.post-nav a:hover { color: var(--white); }
.post-nav .prev::before { content: '←'; color: var(--purple-light); }
.post-nav .next::after { content: '→'; color: var(--purple-light); }
.more-journal { border-top: 1px solid var(--rule); padding: 3rem 4vw; }
.more-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--purple-light); text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.more-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.more-entry { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--rule); transition: padding-left 0.2s; }
.more-entry:hover { padding-left: 0.5rem; }
.more-entry-title { font-size: clamp(13px,1.4vw,16px); font-weight: 300; color: var(--white); }
.more-entry-meta { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(240,237,232,0.3); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .works-index-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:780px) {
  .case-wrap { grid-template-columns: 1fr; }
  .case-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--rule); padding: 2rem 4vw; flex-direction: row; flex-wrap: wrap; gap: 1.5rem 3rem; }
  .case-body { padding: 2rem 4vw; }
}
@media(max-width:700px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #0a0a0a; padding: 1.5rem 4vw; border-bottom: 1px solid var(--rule); gap: 1.4rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-video-wrap { aspect-ratio: 16/9; }
  .works-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-split { grid-template-columns: 1fr; }
  .about-second { grid-template-columns: 1fr; }
  .about-second .offset { grid-column: 1; }
  .exp-layout { grid-template-columns: 1fr; }
  .exp-heading { position: static; margin-bottom: 1.5rem; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .moments-grid { grid-template-columns: repeat(2,1fr); }
  .works-index-grid { grid-template-columns: 1fr; }
  .journal-index-entry { grid-template-columns: 1fr auto; }
  .entry-date { display: none; }
  .post-nav { flex-direction: column; gap: 1rem; }
  .footer-top { flex-direction: column; }
  .footer-social { align-items: flex-start; }
  .hero { padding: 2rem 4vw 0; }
}
