/* ============================================
   seicreative.co — Styles
   London-based Creative Studio
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* --- Variables --- */
:root {
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --black: #0D0D0D;
  --navy: #1C2333;
  --mid-grey: #8A8A8A;
  --light-grey: #E8E5E0;
  --accent: #C8B89A;

  --font-display: 'Manrope', Helvetica, Arial, sans-serif;
  --font-mono: 'Manrope', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Custom Cursor (desktop only) --- */
@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.3s var(--ease);
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--black);
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid var(--black);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease);
  }

  .cursor-ring.hover {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
  }

  body {
    cursor: none;
  }

  a, button, [data-cursor-hover] {
    cursor: none;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(48px, 8vw, 120px);
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
}

.body-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
}

.caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.container--wide {
  max-width: 1600px;
}

.container--narrow {
  max-width: 900px;
}

section {
  padding: clamp(80px, 10vw, 160px) 0;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px clamp(24px, 4vw, 80px);
  transition: background 0.4s var(--ease), padding-top 0.3s var(--ease), padding-bottom 0.3s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-grey);
}

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

.nav__logo {
  display: inline-flex;
  align-items: center;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links li {
  list-style: none;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Nav on hero — white text before scroll */
.hero ~ .site-header .nav__links a,
body:has(.hero) .site-header:not(.scrolled) .nav__links a {
  color: var(--white);
}

body:has(.hero) .site-header:not(.scrolled) .nav__links a::after {
  background: var(--white);
}

body:has(.hero) .site-header:not(.scrolled) .nav__hamburger-line {
  background: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(24px, 8vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  list-style: none;
}

.mobile-menu__links li {
  list-style: none;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 8vw, 64px);
  letter-spacing: 0.03em;
  line-height: 1.4;
  display: block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), color 0.3s var(--ease);
}

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__links a:hover {
  color: var(--accent);
}

.mobile-menu.active li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) a { transition-delay: 0.35s; }

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 100%);
  color: var(--white);
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: 0.05em;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}

.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollPulse 2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* Hero scroll indicator mobile fix */
@media (max-width: 768px) {
  .hero__scroll-indicator {
    bottom: 16px;
  }

  .hero__scroll-text {
    font-size: 9px;
  }

  .hero__scroll-line {
    height: 24px;
  }

  .hero__content {
    padding-bottom: 64px;
  }
}

/* Hero video support */
.hero video.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Statement Section --- */
.statement {
  position: relative;
  padding: clamp(100px, 12vw, 200px) 0;
}

.statement__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin-bottom: 40px;
}

.statement__body {
  max-width: 600px;
  color: var(--mid-grey);
  font-size: clamp(16px, 1.1vw, 18px);
}

.statement__aside {
  position: absolute;
  right: clamp(24px, 4vw, 80px);
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light-grey);
}

/* --- Selected Work --- */
.selected-work {
  padding-bottom: clamp(80px, 10vw, 160px);
}

.selected-work__heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.work-grid__item {
  position: relative;
  overflow: hidden;
}

.work-grid__item:nth-child(1) {
  grid-row: span 2;
}

.work-grid__item:nth-child(4) {
  grid-column: span 2;
}

.work-grid__img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.work-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-grid__item:hover .work-grid__img-wrap img {
  transform: scale(1.02);
}

.work-grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work-grid__item:hover .work-grid__overlay {
  opacity: 1;
}

.work-grid__overlay .label {
  color: var(--white);
}

.work-grid__caption {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.work-grid__caption .caption {
  color: var(--mid-grey);
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-grid__item:nth-child(1) {
    grid-row: auto;
  }

  .work-grid__item:nth-child(4) {
    grid-column: auto;
  }

  .work-grid__img-wrap {
    min-height: 300px;
  }
}

/* --- CTA Link --- */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: clamp(32px, 4vw, 56px);
  position: relative;
  padding-bottom: 2px;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.cta-link:hover::after {
  width: 100%;
}

.cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.cta-link:hover svg {
  transform: translateX(4px);
}

/* --- Services Preview --- */
.services-preview {
  background: var(--navy);
  color: var(--white);
}

.services-preview .label {
  color: rgba(255,255,255,0.5);
}

.services-preview__heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.service-card {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  transition: border-color 0.3s var(--ease);
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card__body {
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.services-preview .cta-link {
  color: var(--white);
}

/* --- Approach Section --- */
.approach {
  background: var(--off-white);
}

.approach__label {
  margin-bottom: 16px;
}

.approach__heading {
  margin-bottom: clamp(60px, 8vw, 120px);
  max-width: 600px;
}

.phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 4vw, 80px);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--light-grey);
  position: relative;
}

.phase__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(80px, 8vw, 140px);
  line-height: 1;
  color: var(--light-grey);
  opacity: 0.6;
}

.phase__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-bottom: 16px;
}

.phase__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.phase__body {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--mid-grey);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

.phase__includes {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .phase {
    grid-template-columns: 1fr;
  }

  .phase__number {
    font-size: 80px;
    margin-bottom: -16px;
  }
}

/* --- Insights Preview --- */
.insights-preview {
  background: var(--off-white);
}

.insights-preview__heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.insight-card {
  border-top: 1px solid var(--light-grey);
  padding-top: 24px;
}

.insight-card__category {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-bottom: 12px;
}

.insight-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.insight-card:hover .insight-card__title {
  color: var(--accent);
}

.insight-card__teaser {
  font-size: 15px;
  color: var(--mid-grey);
  margin-bottom: 8px;
  line-height: 1.6;
}

.insight-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--light-grey);
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Connect CTA --- */
.connect-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 0;
}

.connect-cta__heading {
  margin-bottom: 48px;
  font-size: clamp(36px, 5.5vw, 80px);
}

.connect-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  border: 1px solid var(--white);
  color: var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.connect-cta__email {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.connect-cta__email a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease);
}

.connect-cta__email a:hover {
  color: var(--white);
}

.connect-cta__social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.connect-cta__social a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s var(--ease);
}

.connect-cta__social a:hover {
  color: var(--white);
}

/* --- Footer --- */
.site-footer {
  padding: 40px clamp(24px, 4vw, 80px);
  border-top: 1px solid var(--light-grey);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

.footer__email {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}

.footer__email:hover {
  color: var(--black);
}

.footer__social {
  display: flex;
  gap: 16px;
  list-style: none;
}

.footer__social a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}

.footer__social a:hover {
  color: var(--black);
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- Button Variants --- */
.btn--outline {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 32px;
  border: 1px solid var(--black);
  color: var(--black);
  display: inline-block;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* --- Page Headers --- */
.page-header {
  padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
}

.page-header__label {
  margin-bottom: 16px;
}

.page-header__heading {
  max-width: 800px;
}

.page-header__sub {
  margin-top: 24px;
  max-width: 500px;
  color: var(--mid-grey);
  font-size: clamp(14px, 1vw, 16px);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* --- Work Page --- */
.work-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-masonry__item {
  position: relative;
  overflow: hidden;
}

.work-masonry__item:nth-child(odd) {
  margin-top: 60px;
}

.work-masonry__item:first-child {
  margin-top: 0;
}

.work-masonry__img-wrap {
  overflow: hidden;
  position: relative;
}

.work-masonry__img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-masonry__item:hover img {
  transform: scale(1.02);
}

.work-masonry__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13,13,13,0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work-masonry__item:hover .work-masonry__overlay {
  opacity: 1;
}

.work-masonry__overlay .label {
  color: var(--white);
}

.work-masonry__caption {
  padding: 12px 0;
}

@media (max-width: 768px) {
  .work-masonry {
    grid-template-columns: 1fr;
  }

  .work-masonry__item:nth-child(odd) {
    margin-top: 0;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Services Page --- */
.service-detail {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.service-detail:nth-child(even) {
  background: var(--off-white);
}

.service-detail__number {
  position: absolute;
  top: -20px;
  right: clamp(24px, 4vw, 80px);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(120px, 18vw, 280px);
  color: var(--light-grey);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

.service-detail__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.service-detail__label {
  margin-bottom: 16px;
}

.service-detail__title {
  margin-bottom: 24px;
}

.service-detail__desc {
  margin-bottom: 32px;
  color: var(--mid-grey);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

.service-detail__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.service-detail__meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.service-detail__meta dd {
  font-family: var(--font-display);
  font-size: 16px;
}

.service-detail__hr {
  border: none;
  border-top: 1px solid var(--light-grey);
  margin: 0;
}

/* Service detail images */
.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.service-detail__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .service-detail .container {
    grid-template-columns: 1fr;
  }

  .service-detail__image {
    aspect-ratio: 16/10;
    max-height: 400px;
  }
}

/* --- About Page --- */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.about__text {
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.6;
  font-weight: 300;
}

.about__text p {
  margin-bottom: 1.5em;
}

.about__sig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  margin-top: 24px;
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.25;
  padding: clamp(60px, 8vw, 120px) 0;
  max-width: 800px;
  letter-spacing: 0.02em;
}

.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--light-grey);
}

.capabilities__item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--mid-grey);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
}

@media (max-width: 768px) {
  .about__content {
    grid-template-columns: 1fr;
  }
}

/* --- Approach Page (full) --- */
.approach-full__intro {
  max-width: 700px;
  margin-bottom: clamp(60px, 8vw, 100px);
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--mid-grey);
  line-height: 1.7;
}

.approach-full__image {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  margin: clamp(48px, 6vw, 80px) 0;
}

/* --- Insights Page --- */
.insights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.insights-list__item {
  border-top: 1px solid var(--light-grey);
  padding: clamp(32px, 4vw, 48px) 0;
  display: grid;
  grid-template-columns: 240px 1fr 2fr;
  gap: 32px;
  align-items: start;
  transition: background 0.3s var(--ease);
}

.insights-list__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.insights-list__item:hover .insights-list__image {
  transform: scale(1.02);
}

.insights-list__item:hover {
  background: var(--off-white);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: -24px;
  margin-right: -24px;
}

.insights-list__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insights-list__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.insights-list__item:hover .insights-list__title {
  color: var(--accent);
}

.insights-list__teaser {
  color: var(--mid-grey);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .insights-list__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .insights-list__image {
    aspect-ratio: 16/9;
    max-height: 200px;
  }
}

/* --- Article Page --- */
.article {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(140px, 16vw, 200px) clamp(24px, 4vw, 40px) clamp(80px, 10vw, 160px);
}

.article__category {
  margin-bottom: 16px;
}

.article__title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.article__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.article__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.article__body {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.8;
  color: var(--black);
}

.article__body p {
  margin-bottom: 1.5em;
}

.article__back {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 32px;
  border-top: 1px solid var(--light-grey);
}

/* --- Contact Page --- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-display);
  font-size: 16px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  background: transparent;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s var(--ease);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-grey);
  font-family: var(--font-display);
}

.form-group select {
  color: var(--mid-grey);
  cursor: pointer;
}

.form-group select:valid {
  color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  display: block;
  margin-bottom: 8px;
}

.form-submit {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 48px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info {
  padding-top: 12px;
}

.contact-info__block {
  margin-bottom: 40px;
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  margin-bottom: 8px;
}

.contact-info__value {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
}

.contact-info__value a {
  transition: color 0.3s var(--ease);
}

.contact-info__value a:hover {
  color: var(--accent);
}

.contact-info__location {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--light-grey);
}

@media (max-width: 768px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- Contact Hero (new editorial design) --- */
.contact-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.4);
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 clamp(24px, 4vw, 80px);
}

.contact-hero__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.contact-hero__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Form Section */
.contact-form-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--white);
}

.contact-form-section__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.contact-form__submit {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 0;
  width: 100%;
  border: none;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease);
  margin-top: 16px;
}

.contact-form__submit:hover {
  opacity: 0.85;
}

.contact-form-section__info {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--light-grey);
}

.contact-form-section__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form-section__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--black);
  letter-spacing: 0.03em;
  transition: color 0.3s var(--ease);
}

.contact-form-section__links a:hover {
  color: var(--accent);
}

.contact-form-section__location {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.08em;
}

/* --- Dark section nav adjustment --- */
.nav--dark .nav__links a {
  color: var(--white);
}

.nav--dark .nav__links a::after {
  background: var(--white);
}

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

/* ============================================
   HOMEPAGE SECTIONS (index.html)
   ============================================ */

/* --- Hero (homepage) --- */
.hero__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 100%);
  color: var(--white);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.6s; }
.fade-up:nth-child(2) { animation-delay: 0.8s; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* --- Statement (homepage) --- */
.statement__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.statement__text {
  max-width: 900px;
}

.statement__rotated-text {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light-grey);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* --- Selected Work (homepage) --- */
.work {
  padding: clamp(80px, 10vw, 160px) 0;
}

.work__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.work__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.work__title {
  font-size: clamp(36px, 5vw, 72px);
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.work__item {
  position: relative;
  overflow: hidden;
}

.work__item--large {
  grid-row: span 2;
}

.work__item--wide {
  grid-column: span 2;
}

.work__link {
  display: block;
}

.work__image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.work__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work__item:hover .work__image {
  transform: scale(1.02);
}

.work__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work__item:hover .work__overlay {
  opacity: 1;
}

.work__category {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.work__cta {
  margin-top: clamp(32px, 4vw, 56px);
}

@media (max-width: 768px) {
  .work__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work__item--large {
    grid-row: auto;
  }

  .work__item--wide {
    grid-column: auto;
  }

  .work__image-wrapper {
    min-height: 300px;
  }
}

/* --- Services (homepage) --- */
.services {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 10vw, 160px) 0;
}

.services__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.services__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 16px;
}

.services__title {
  color: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.services__card {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  transition: border-color 0.3s var(--ease);
}

.services__card:hover {
  border-color: var(--accent);
}

.services__card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services__card-text {
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.services__card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease);
}

.services__card-link:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Approach (homepage + approach page) --- */
.approach__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.approach__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.approach__title {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 16px;
}

.approach__subtitle {
  color: var(--mid-grey);
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 500px;
}

.approach__phases {
  display: flex;
  flex-direction: column;
}

.approach__phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 4vw, 80px);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--light-grey);
}

.approach__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(80px, 8vw, 140px);
  line-height: 1;
  color: var(--light-grey);
  opacity: 0.6;
}

.approach__phase-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-bottom: 16px;
}

.approach__phase-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.approach__phase-text {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--mid-grey);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

.approach__phase-list {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  list-style: none;
}

.approach__phase-list li {
  padding: 4px 0;
}

.approach__phase-list li::before {
  content: '— ';
  color: var(--light-grey);
}

.approach__cta {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: 32px;
}

@media (max-width: 768px) {
  .approach__phase {
    grid-template-columns: 1fr;
  }

  .approach__number {
    font-size: 80px;
    margin-bottom: -16px;
  }
}

/* --- Insights (homepage) --- */
.insights {
  background: var(--off-white);
  padding: clamp(80px, 10vw, 160px) 0;
}

.insights__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.insights__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.insights__title {
  font-size: clamp(36px, 5vw, 72px);
}

.insights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.insights__card {
  border-top: 1px solid var(--light-grey);
  padding-top: 24px;
}

.insights__category {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  display: block;
  margin-bottom: 12px;
}

.insights__card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.insights__teaser {
  font-size: 15px;
  color: var(--mid-grey);
  margin-bottom: 12px;
  line-height: 1.6;
}

.insights__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--light-grey);
  display: block;
}

.insights__cta {
  margin-top: clamp(32px, 4vw, 56px);
}

@media (max-width: 768px) {
  .insights__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Connect (homepage + approach page) --- */
.connect {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 0;
}

.connect__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.connect__heading {
  font-size: clamp(36px, 5.5vw, 80px);
  margin-bottom: 24px;
}

.connect__text {
  color: rgba(255,255,255,0.6);
  font-size: clamp(15px, 1.1vw, 18px);
  margin-bottom: 48px;
}

.connect__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.connect__email {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 24px;
  transition: color 0.3s var(--ease);
}

.connect__email:hover {
  color: var(--white);
}

.connect__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.connect__social a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s var(--ease);
}

.connect__social a:hover {
  color: var(--white);
}

.connect__details {
  margin-top: 48px;
}

/* Button variants for dark backgrounds */
.btn--primary {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  display: inline-block;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

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

.btn--white {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  display: inline-block;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--outline-white {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-block;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
  padding: 0 0 clamp(80px, 10vw, 160px);
}

.about-content__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.about-content__text {
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.6;
  font-weight: 300;
}

.about-content__text p {
  margin-bottom: 1.5em;
}

.about-content__sig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  margin-top: 24px;
}

.about-content__image-wrapper {
  position: relative;
}

.about-content__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-content__container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PULL QUOTE (reusable)
   ============================================ */

.pull-quote__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.pull-quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.pull-quote__text p {
  margin: 0;
}

/* ============================================
   CAPABILITIES (about page)
   ============================================ */

.capabilities__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
}

/* ============================================
   APPROACH PAGE
   ============================================ */

.approach-intro {
  padding: 0 0 clamp(40px, 4vw, 60px);
}

.approach-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.approach-intro__text {
  max-width: 700px;
  color: var(--mid-grey);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
}

.approach-image {
  padding: 0;
  overflow: hidden;
}

.approach-image__full {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* ============================================
   PAGE HEADER (container variant)
   ============================================ */

.page-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.page-header__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  display: block;
  margin-bottom: 16px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 64px; }
