/* ==========================================================================
   Thomas Ogun Visual - Core Styles
   Replace colors, typography and spacing here to refine the identity later.
   ========================================================================== */

:root {
  --bg: #f7f2e9;
  --bg-soft: #efe6d7;
  --ink: #11100e;
  --muted: #6b6258;
  --line: rgba(17, 16, 14, 0.14);
  --gold: #b99048;
  --gold-dark: #8f6b2d;
  --terracotta: #a84e32;
  --night: #080807;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 8.9rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.45rem;
}

/* Layout primitives used across pages. */
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

/* Sticky navigation: starts transparent on home, then gains solid class via JS. */
.site-header {
  left: 0;
  padding: 18px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
  z-index: 100;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(247, 242, 233, 0.94);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: none;
  border: 0;
  color: transparent;
  display: inline-flex;
  font-size: 0;
  height: 0;
  justify-content: center;
  overflow: hidden;
  width: 0;
}

.brand-text {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 26px;
}

/* Home hero with editorial artwork area. */
.hero {
  min-height: 100vh;
  padding: 120px 0 70px;
  position: relative;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: calc(100vh - 190px);
}

.hero-subtitle {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-intro {
  font-size: 1.05rem;
  max-width: 590px;
}

.hero-logo-card {
  align-items: center;
  background: var(--night);
  border: 1px solid rgba(185, 144, 72, 0.5);
  display: flex;
  height: 128px;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  width: 128px;
}

.hero-logo-card img {
  height: 118%;
  object-fit: contain;
  width: 118%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.11em;
  min-height: 50px;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.placeholder-art,
.image-placeholder,
.media-placeholder,
.portrait-placeholder,
.device-placeholder,
.behind-grid div {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(185, 144, 72, 0.18), rgba(255, 250, 241, 0.75)),
    repeating-linear-gradient(45deg, rgba(17, 16, 14, 0.035) 0 1px, transparent 1px 16px);
  border: 1px solid var(--line);
  color: var(--gold-dark);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 280px;
  text-align: center;
  text-transform: uppercase;
}

.portrait-logo {
  background: var(--night);
  padding: 28px;
}

.portrait-logo img {
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  width: 100%;
}

.placeholder-art.large {
  aspect-ratio: 4 / 5;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.hero-artwork-frame {
  margin: 0;
  position: relative;
}

.hero-artwork-frame img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-artwork-frame figcaption {
  background: rgba(8, 8, 7, 0.88);
  bottom: 24px;
  color: var(--white);
  left: 24px;
  padding: 18px 20px;
  position: absolute;
  right: 24px;
}

.hero-artwork-frame figcaption span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-artwork-frame figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 4px;
}

.image-placeholder.tall {
  min-height: 430px;
}

.image-placeholder.wide {
  grid-column: span 2;
}

.scroll-indicator {
  bottom: 28px;
  height: 48px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 24px;
}

.scroll-indicator span {
  animation: scrollDot 1.7s infinite;
  background: var(--gold);
  display: block;
  height: 34px;
  margin: 0 auto;
  width: 1px;
}

@keyframes scrollDot {
  0% { transform: scaleY(0.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0.35); transform-origin: bottom; }
}

/* Cards and portfolio grids. */
.project-grid,
.discipline-grid,
.artwork-grid,
.process-grid,
.case-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card,
.discipline-card,
.artwork-card,
.info-block,
.case-card {
  background: rgba(255, 250, 241, 0.52);
  border: 1px solid var(--line);
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover,
.artwork-card:hover,
.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.project-card h3,
.artwork-card h3,
.case-card h2 {
  margin-top: 22px;
}

.card-image,
.masonry-image,
.artwork-image,
.media-image {
  border: 1px solid var(--line);
  display: block;
  object-fit: cover;
  width: 100%;
}

.card-image {
  aspect-ratio: 4 / 3;
  height: 280px;
}

.card-image.tall,
.artwork-image {
  aspect-ratio: 4 / 5;
  height: 430px;
}

.masonry-image {
  height: 360px;
}

.masonry-image.tall {
  height: 520px;
}

.media-image {
  background: var(--night);
  height: 100%;
  min-height: 320px;
}

.discipline-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-hero {
  padding: 170px 0 72px;
}

.page-hero h1 {
  max-width: 1000px;
}

.split-layout,
.two-column,
.contact-layout,
.product-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
}

.text-stack > * + * {
  margin-top: 18px;
}

.narrow {
  max-width: 780px;
}

.three-column {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 70px;
}

.stats-grid div {
  padding: 34px 14px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  border-left: 1px solid var(--gold);
  list-style: none;
  margin: 0;
  padding: 0 0 0 28px;
}

.timeline li {
  margin-bottom: 24px;
}

.timeline span {
  color: var(--gold-dark);
  font-weight: 800;
}

.signature {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 4rem;
  margin-top: 60px;
}

.filter-bar,
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn,
.category-strip span {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font: 700 0.76rem var(--sans);
  letter-spacing: 0.08em;
  padding: 11px 15px;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.masonry-grid,
.editorial-gallery,
.media-grid,
.behind-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.masonry-item {
  break-inside: avoid;
}

.masonry-item.is-hidden {
  display: none;
}

.masonry-item h2 {
  font-size: 1.5rem;
  margin-top: 16px;
}

.artwork-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ar-card {
  background: rgba(185, 144, 72, 0.13);
}

.text-link {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.callout {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.media-placeholder {
  min-height: 220px;
}

.media-panel {
  background: var(--night);
  border: 1px solid var(--line);
  color: var(--white);
  margin: 0;
  min-height: 320px;
  overflow: hidden;
}

.media-panel figcaption {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.88rem;
  padding: 14px 16px 18px;
}

.product-hero {
  min-height: 88vh;
  padding: 150px 0 80px;
}

.device-placeholder {
  min-height: 620px;
}

.clean-list {
  color: var(--muted);
  padding-left: 20px;
}

blockquote {
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 28px 0 0;
  padding-left: 20px;
}

.small {
  font-size: 0.85rem;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-details,
.contact-form {
  border: 1px solid var(--line);
  padding: 34px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-list a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold-dark);
}

label {
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  margin-bottom: 18px;
  padding: 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

/* Footer intentionally quiet and content-led. */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 28px;
}

.site-footer p,
.site-footer a,
.site-footer label {
  color: rgba(255, 250, 241, 0.72);
}

.site-footer h2 {
  color: var(--white);
  font: 800 0.8rem var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 20px;
}

.copyright,
.compact-footer {
  text-align: center;
}

.compact-footer {
  padding: 34px 20px;
}

/* Reveal animation activated by IntersectionObserver. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

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

  .reveal,
  .btn,
  .project-card,
  .artwork-card,
  .case-card {
    transition: none;
  }
}

/* ==========================================================================
   Dark Freelancer-Inspired Redesign
   Original layout language guided by the supplied reference screenshot.
   Image slots remain intentionally empty until final assets are provided.
   ========================================================================== */

:root {
  --bg: #202126;
  --bg-soft: #282a2f;
  --ink: #f7f7f3;
  --muted: #b7bbc5;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #ffc226;
  --gold-dark: #ffc226;
  --green: #4fd28a;
  --green-dark: #1f9f64;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --serif: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 8vw, 8.4rem);
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: none;
}

h2 {
  line-height: 0.98;
}

.site-header {
  background: transparent;
  padding: 28px 0;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(32, 33, 38, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  gap: 0;
}

.brand-mark {
  display: none;
}

.brand-text,
.footer-brand span:last-child {
  color: var(--white);
  display: inline;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.brand-text::before,
.footer-brand span:last-child::before {
  border: 3px solid var(--green);
  border-right-color: transparent;
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 34px;
  margin-right: 10px;
  transform: translateY(8px);
  width: 34px;
}

.nav-menu {
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0;
  position: relative;
  text-transform: none;
}

.nav-menu a::after {
  background: var(--white);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle span {
  background: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 78% 46%, rgba(79, 210, 138, 0.18), transparent 35%),
    linear-gradient(180deg, #202126 0%, #24262b 100%);
  min-height: 100vh;
  overflow: hidden;
  padding: 132px 0 0;
}

.hero-content {
  gap: 72px;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  min-height: calc(100vh - 132px);
}

.line-eyebrow {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.line-eyebrow::before {
  background: var(--green);
  content: "";
  display: inline-block;
  height: 2px;
  width: 30px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  margin-top: 26px;
}

.hero-intro {
  color: var(--muted);
  max-width: 620px;
}

.hero-services {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.hero-services li {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-size: 1.08rem;
  font-weight: 800;
  gap: 16px;
}

.hero-services li::before {
  border: 2px solid var(--white);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 18px;
  width: 18px;
}

.btn {
  border-radius: 0;
  min-height: 58px;
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #17181c;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-visual {
  align-items: center;
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 690px;
  position: relative;
}

.hero-ring {
  aspect-ratio: 1;
  border: 112px solid var(--green);
  border-radius: 50%;
  position: absolute;
  width: min(86%, 710px);
}

.hero-media-placeholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-bottom: 0;
  height: min(78%, 620px);
  max-width: 430px;
  position: relative;
  width: 52%;
  z-index: 1;
}

.skill-badge {
  align-items: center;
  background: #2b2d32;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--green);
  display: flex;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  height: 100px;
  justify-content: center;
  position: absolute;
  width: 100px;
  z-index: 2;
}

.badge-top-left { left: 10%; top: 22%; }
.badge-top-right { right: 12%; top: 22%; }
.badge-bottom-left { bottom: 22%; left: 4%; }
.badge-bottom-right { bottom: 22%; right: 3%; }

.section,
.page-hero,
.product-hero {
  background: var(--bg);
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 820px;
}

.project-card,
.discipline-card,
.artwork-card,
.info-block,
.case-card,
.contact-details,
.contact-form,
.callout {
  background: #25272d;
  border-color: var(--line);
  box-shadow: none;
}

.project-card:hover,
.artwork-card:hover,
.case-card:hover {
  box-shadow: var(--shadow);
}

.placeholder-art,
.image-placeholder,
.media-placeholder,
.portrait-placeholder,
.device-placeholder,
.behind-grid div {
  background:
    linear-gradient(135deg, rgba(79, 210, 138, 0.08), rgba(255, 194, 38, 0.04)),
    #22242a;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: transparent;
  font-size: 0;
}

.image-placeholder::after,
.media-placeholder::after,
.portrait-placeholder::after,
.device-placeholder::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  display: block;
  height: 1px;
  width: 34%;
}

.filter-btn,
.category-strip span {
  border-color: var(--line);
  color: rgba(255, 255, 255, 0.72);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: #111318;
}

.text-link {
  color: var(--green);
}

input,
select,
textarea {
  background: #1f2025;
  border-color: var(--line);
  color: var(--white);
}

label {
  color: var(--white);
}

.site-footer {
  background: #18191d;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Minimal Portfolio System
   Final public-facing layer: clear hierarchy, neutral gallery tone and
   practical card structure inspired by strong product/editorial portfolios.
   ========================================================================== */

:root {
  --bg: #f7f5ef;
  --bg-soft: #ece8de;
  --ink: #111111;
  --muted: #5e5e58;
  --line: #d7d1c4;
  --gold: #ffb000;
  --gold-dark: #9a6b00;
  --green: #0f8f5b;
  --blue: #0058a3;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --serif: "Times New Roman", Georgia, serif;
  --sans: "Helvetica Neue", Arial, "Segoe UI", system-ui, sans-serif;
  --max: 1240px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.5rem, 8.7vw, 7.9rem);
  line-height: 0.93;
  text-transform: none;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.15;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  margin-bottom: 44px;
  max-width: none;
}

.section-heading .eyebrow {
  margin-top: 10px;
}

.section-heading h2,
.section-heading p:not(.eyebrow) {
  grid-column: 2;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header,
.site-header.scrolled,
.site-header.solid {
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.nav {
  gap: 20px;
}

.brand {
  color: var(--ink);
  gap: 0;
  text-transform: none;
}

.brand-text,
.footer-brand span:last-child {
  color: inherit;
  display: inline;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text::before,
.footer-brand span:last-child::before,
.brand-mark {
  display: none;
}

.nav-menu {
  gap: 18px;
}

.nav-menu a {
  color: #393934;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav-menu a::after {
  background: var(--ink);
  bottom: -8px;
  height: 2px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle span {
  background: var(--ink);
}

.hero {
  background: var(--bg);
  min-height: auto;
  overflow: visible;
  padding: clamp(128px, 12vw, 176px) 0 72px;
}

.hero::after {
  background: var(--line);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.74fr);
  min-height: auto;
}

.hero-copy {
  max-width: 720px;
  padding-top: clamp(26px, 5vw, 72px);
}

.hero-copy h1 {
  font-size: clamp(3.7rem, 7.4vw, 7.2rem);
  max-width: 720px;
}

.line-eyebrow {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-eyebrow::before {
  background: var(--gold);
  height: 4px;
  width: 36px;
}

.hero-subtitle {
  color: var(--ink);
  font-size: clamp(1.04rem, 1.8vw, 1.42rem);
  font-weight: 800;
  margin-top: 18px;
  max-width: 760px;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  max-width: 560px;
}

.hero-services {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.hero-services li {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 10px;
  min-height: 68px;
  padding: 16px;
}

.hero-services li::before {
  border: 3px solid var(--gold);
  border-radius: 0;
  height: 14px;
  margin-top: 4px;
  width: 14px;
}

.button-row {
  gap: 10px;
  margin-top: 26px;
}

.btn {
  border-radius: 0;
  font-size: 0.78rem;
  letter-spacing: 0;
  min-height: 54px;
  padding: 14px 24px;
  text-transform: none;
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn:hover {
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
}

.hero-visual {
  align-self: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  min-height: auto;
  padding: clamp(18px, 2.4vw, 30px);
  position: relative;
}

.hero-ring,
.skill-badge {
  display: none;
}

.hero-media-placeholder {
  background: #f0ede5;
  border: 1px dashed #bdb7aa;
  display: block;
  height: clamp(300px, 41vw, 470px);
  max-width: none;
  min-height: 0;
  position: static;
  width: 100%;
}

.practice-panel {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.practice-list {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
}

.practice-list div {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 46px;
  padding: 12px 0;
}

.practice-list dt {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.practice-list dd {
  color: var(--ink);
  font-weight: 800;
  margin: 0;
}

.scroll-indicator {
  display: none;
}

.project-grid,
.discipline-grid,
.artwork-grid,
.process-grid,
.case-grid,
.three-column,
.media-grid,
.behind-grid,
.editorial-gallery,
.masonry-grid {
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(12, 1fr);
}

.feature-grid .project-card {
  grid-column: span 4;
}

.feature-grid .project-card:first-child {
  grid-column: span 6;
}

.feature-grid .project-card:nth-child(2) {
  grid-column: span 6;
}

.project-card,
.discipline-card,
.artwork-card,
.info-block,
.case-card,
.contact-details,
.contact-form,
.callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: clamp(18px, 2.4vw, 28px);
}

.project-card:hover,
.artwork-card:hover,
.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-card h3,
.artwork-card h3,
.case-card h2 {
  margin-top: 18px;
}

.project-card p,
.discipline-card p,
.artwork-card p,
.info-block p,
.case-card p {
  font-size: 0.96rem;
}

.placeholder-art,
.image-placeholder,
.media-placeholder,
.portrait-placeholder,
.device-placeholder,
.behind-grid div {
  background: #f0ede5;
  border: 1px dashed #bdb7aa;
  color: transparent;
  display: block;
  font-size: 0;
}

.image-placeholder::after,
.media-placeholder::after,
.portrait-placeholder::after,
.device-placeholder::after {
  display: none;
}

.image-placeholder,
.media-placeholder,
.portrait-placeholder,
.device-placeholder {
  min-height: 260px;
}

.image-placeholder.tall,
.placeholder-art.large {
  min-height: 420px;
}

.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(134px, 14vw, 188px) 0 clamp(54px, 7vw, 86px);
}

.page-hero h1 {
  max-width: 1080px;
}

.product-hero {
  background: var(--bg);
  padding-top: clamp(134px, 14vw, 188px);
}

.split-layout,
.two-column,
.contact-layout,
.product-hero {
  gap: clamp(32px, 6vw, 76px);
}

.stats-grid {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
  grid-template-columns: repeat(5, 1fr);
}

.stats-grid div {
  border-left: 1px solid var(--line);
  padding: 30px 12px;
}

.stats-grid strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
}

.stats-grid span {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.filter-btn,
.category-strip span {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.btn,
.filter-btn,
button {
  border-radius: 8px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

input,
select,
textarea {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

label {
  color: var(--ink);
}

.site-footer {
  background: #111111;
  border-top: 0;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2,
.site-footer .footer-brand {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
