/* otherkind studio — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:  #0d0d0d;
  --white:  #f4f3ef;
  --lime:   #c8f135;
  --olive:  #6b7c3f;
  --forest: #1a2b1a;
  --serif:  'Libre Baskerville', Georgia, serif;
  --sans:   'Poppins', 'Helvetica Neue', Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--sans); font-size: 16px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.09);
}
.nav-logo { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.6; transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: var(--lime);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn:hover { background: #b5dc1a; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── Section shared ── */
section { padding: 7rem 2.5rem; }
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--olive);
  margin-bottom: 0.75rem;
}
h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; margin-bottom: 2rem; }

/* ── Ticker ── */
.ticker {
  background: var(--lime);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker-inner { display: inline-block; animation: scroll 32s linear infinite; }
.ticker-inner span { margin: 0 2rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Hero ── */
#home { padding-top: 3.8rem; }
.hero-wordmark {
  padding: 4rem 0 0;
  overflow: hidden;
  line-height: 0.88;
  text-align: center;
}
.hero-wordmark h1 {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 999rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.88;
  white-space: nowrap;
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}
.hero-text {
  padding: 0 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.88rem;
  line-height: 1.9;
  max-width: 44ch;
  opacity: 0.68;
  margin-bottom: 2.5rem;
}
.hero-image {
  position: relative;
  overflow: hidden;
  background: #c8c4bb;
  max-height: 75vh;
}
.hero-image img { object-position: center center; filter: grayscale(20%); height: 100%; }

/* ── Split section (photo + text) ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}
.split-image {
  overflow: hidden;
  position: relative;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.split-content {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p {
  font-size: 0.9rem; line-height: 1.9; opacity: 0.7; max-width: 42ch; margin-bottom: 1.5rem;
}

/* ── Diagram ── */
#diagram { padding: 7rem 2.5rem; background: var(--white); }
.diagram-intro { max-width: 60ch; margin-bottom: 5rem; }
.diagram-intro h2 { margin-bottom: 1rem; }
.diagram-intro p { font-size: 0.9rem; line-height: 1.9; opacity: 0.6; }

.diagram {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  max-width: 860px;
}
.diagram-credit {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.5;
  max-width: 860px;
}
.diag-node {
  border: 2px solid var(--black);
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 320px;
}
.diag-node.diag-visionary { background: var(--white); }
.diag-node.diag-integrator { background: var(--forest); color: var(--white); max-width: 380px; }
.diag-node-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.diag-node.diag-integrator .diag-node-title { color: var(--white); }
.diag-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; margin-top: 0.5rem;
}
.diag-tag {
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.2);
}
.diag-node.diag-integrator .diag-tag { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.diag-connector {
  width: 2px; height: 2.5rem; background: var(--black);
}
.diag-children-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem; width: 100%; max-width: 100%; position: relative;
  align-items: stretch;
}
.diag-children-row::before {
  content: '';
  position: absolute; top: 0; left: calc((100% - 2rem) / 6); right: calc((100% - 2rem) / 6);
  height: 2px; background: var(--black);
}
.diag-child-col { display: flex; flex-direction: column; align-items: center; align-self: stretch; }
.diag-child-col .diag-connector { height: 2rem; }
.diag-child {
  border: 2px solid var(--black);
  padding: 1.25rem 1.5rem;
  width: 100%; max-width: none;
  background: var(--white);
  height: 100%;
}
.diag-child-title { font-family: var(--serif); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.6rem; }
.diag-child .diag-tags { justify-content: flex-start; }
.diag-child .diag-tag { border-color: var(--olive); color: var(--olive); }

/* ── Services ── */
#services { background: var(--forest); color: var(--white); padding: 7rem 2.5rem; }
#services .section-label { color: var(--lime); letter-spacing: 0.26em; }
#services h2 { color: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start; margin-bottom: 4rem;
}
.services-intro {
  font-size: 0.9rem; line-height: 1.9;
  opacity: 0.6;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.service-item {
  background: var(--forest);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.service-item:hover { border-color: var(--lime); }
.service-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.8rem; line-height: 1.8; opacity: 0.5; }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-img-tall {
  grid-row: span 2;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.about-img-sq {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.about-img-label {
  aspect-ratio: 1/1;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.about-img-label span {
  font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--lime);
  text-align: center; line-height: 2.2;
}
.about-img-tall img, .about-img-sq img { transition: transform 0.6s ease; }
.about-img-tall:hover img, .about-img-sq:hover img { transform: scale(1.04); }
.about-text { padding-top: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; max-width: 46ch; line-height: 1.9; font-size: 0.9rem; }
.about-text p.lead { font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; }

/* ── Client Work / Carousel ── */
.work-header { margin-bottom: 4rem; }
.work-header h2 { margin-bottom: 0.5rem; }
.work-sub { font-size: 0.88rem; line-height: 1.8; opacity: 0.55; max-width: 50ch; }

.carousel-wrapper { position: relative; }
.carousel-track-container { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.client-card {
  flex: 0 0 50%;
  padding: 0 0.75rem;
  display: flex; flex-direction: column;
}
.client-card-inner {
  border: 1.5px solid rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color 0.25s;
}
.client-card-inner:hover { border-color: var(--lime); }
.client-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d8d4ca;
}
.client-photo img { transition: transform 0.6s ease; }
.client-card-inner:hover .client-photo img { transform: scale(1.05); }
.client-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.client-title-row { display: flex; flex-direction: column; gap: 0.2rem; }
.client-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.client-title {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--olive);
}
.client-desc { font-size: 0.8rem; line-height: 1.75; opacity: 0.6; flex: 1; margin-top: 0.25rem; }
.client-role { font-family: var(--serif); font-size: 0.85rem; line-height: 1.65; color: var(--olive); opacity: 1; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 0.75rem; margin-top: 0.25rem; }
.client-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.client-link {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.5;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.client-link:hover { opacity: 1; }

.carousel-controls {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--black);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-size: 1.1rem;
}
.carousel-btn:hover { background: var(--black); color: var(--white); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; }
.carousel-btn:disabled:hover { background: transparent; color: var(--black); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.carousel-dot.active { background: var(--black); }

/* ── Testimonials ── */
#testimonials { background: #ebe7dc; padding: 7rem 2.5rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; margin-top: 4rem;
}
.testimonial { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-quote { font-family: var(--serif); font-size: 1rem; line-height: 1.75; }
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.45;
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left h2 { margin-bottom: 1.25rem; }
.contact-left p {
  font-size: 0.9rem;
  line-height: 1.9; opacity: 0.6; max-width: 40ch; margin-bottom: 1.5rem;
}
.contact-email {
  font-size: 0.9rem;
  color: var(--olive);
  text-decoration: underline; text-underline-offset: 4px;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.45;
}
.form-group input, .form-group textarea {
  background: transparent;
  border: none; border-bottom: 1.5px solid rgba(0,0,0,0.18);
  padding: 0.5rem 0; font-family: var(--sans);
  font-size: 0.95rem; color: var(--black);
  outline: none; transition: border-color 0.2s; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--olive); }
.form-group textarea { min-height: 100px; }

/* ── Footer ── */
footer {
  background: var(--forest); color: var(--white);
  padding: 2.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.01em; }
.footer-right { font-size: 0.72rem; letter-spacing: 0.06em; opacity: 0.4; text-align: right; }
.footer-right p + p { margin-top: 0.3rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 7rem 2.5rem 3rem;
  max-width: 800px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 0.95rem; line-height: 1.9; opacity: 0.6; max-width: 46ch;
}

/* Page hero split (work.html) */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 8rem 2.5rem 5rem;
  align-items: end;
}
.page-hero-split .section-label { margin-bottom: 0.75rem; }
.page-hero-split h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0;
}
.page-hero-split > div:last-child p { font-size: 0.9rem; line-height: 1.9; opacity: 0.65; margin-top: 0; }

/* Pull quote */
.pull-quote-section {
  padding: 5rem 2.5rem;
  background: var(--forest);
  color: var(--white);
}
.pull-quote-section.lime { background: var(--lime); color: var(--black); }
.pull-quote-section blockquote {
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: inherit;
  text-align: center;
  margin: 0 auto;
}

/* Vision / integrator section */
.vision-section {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  padding: 7rem 2.5rem;
  align-items: start;
}
.vision-text { max-width: none; }
.vision-text h2 { margin-bottom: 1.5rem; }
.vision-text p { font-size: 0.9rem; line-height: 1.9; opacity: 0.7; max-width: 44ch; margin-bottom: 1.2rem; }
.vision-text .btn { margin-top: 2rem; }
.client-types-text .btn { margin-top: 2rem; }
.vision-visual {
  position: relative;
  padding-bottom: 0;
}
.vision-photo {
  position: absolute;
  width: 52%;
  aspect-ratio: 2/3;
  bottom: 0;
  right: -1rem;
  overflow: hidden;
  outline: 4px solid var(--white);
  box-shadow: -4px 4px 0 var(--lime);
  z-index: 2;
}
.vision-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
}

/* Client types */
.client-types-section {
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.client-types-section h2 { margin-bottom: 1.5rem; }
.client-types-text p { font-size: 0.9rem; line-height: 1.9; opacity: 0.7; max-width: 46ch; margin-bottom: 1.2rem; }
.client-types-photo {
  height: 560px;
  overflow: hidden;
}
.client-types-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transform-origin: center 30%;
}

/* Testimonials carousel */
.testimonials-carousel-wrapper { position: relative; margin-top: 4rem; }
.testimonials-track-container { overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1); }
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-quote-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2rem;
}
.testimonial-quote-text::before { content: '\201C'; }
.testimonial-quote-text::after { content: '\201D'; }
.testimonial-attribution {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Work page hero */
.work-page-hero {
  padding: 8rem 2.5rem 4rem;
}
.work-page-hero .section-label { margin-bottom: 0.75rem; }
.work-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
.work-page-hero p {
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.65;
  max-width: 58ch;
}

/* Contact page combined hero + bio */
.contact-hero-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 7rem 2.5rem 7rem;
  align-items: start;
}
.contact-hero-bio h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.contact-hero-bio .section-label { margin-bottom: 0.75rem; }

/* Bio / contact page */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 0 2.5rem 7rem;
}
.bio-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.contact-hero-bio .bio-photo-wrap {
  aspect-ratio: 4/5;
}
.bio-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-hero-bio .bio-photo-wrap img { object-position: center 15%; }
.bio-photo-caption {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--olive);
}
.bio-text p { font-size: 0.9rem; line-height: 1.9; max-width: 46ch; margin-bottom: 1.2rem; opacity: 0.75; }
.bio-text p.lead { font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; opacity: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.1em; }

  /* Hero wordmark */
  .hero-wordmark { padding: 3rem 0 0; overflow: visible; }
  .hero-wordmark h1 { white-space: normal; font-size: clamp(3.5rem, 17vw, 6rem); line-height: 0.9; }

  /* Hero body */
  .hero-body { grid-template-columns: 1fr; }
  .hero-text { padding: 2rem 1.5rem 3rem; }
  .hero-image { height: 70vw; max-height: none; }

  /* Sections */
  section { padding: 4rem 1.5rem; }
  .pull-quote-section { padding: 3.5rem 1.5rem; }

  /* Diagram */
  .diagram { max-width: 100%; }
  .diag-children-row { grid-template-columns: 1fr; gap: 0; }
  .diag-children-row::before { display: none; }
  .diag-node { max-width: 100%; }
  .diag-node.diag-integrator { max-width: 100%; }

  /* Vision / how it works */
  .vision-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  #services { padding: 4rem 1.5rem; }

  /* Client types */
  .client-types-section { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .client-types-photo { height: 75vw; max-height: none; aspect-ratio: unset; }

  /* Carousel */
  .client-card { flex: 0 0 100%; }
  .client-card-inner { height: auto; }
  .client-desc { flex: none; }
  .testimonial-slide { padding: 0 0.5rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 60vw; min-height: 280px; }
  .split-content { padding: 3rem 1.5rem; }

  /* Bio / Contact */
  .bio-section { grid-template-columns: 1fr; gap: 2rem; }
  .bio-photo-wrap { aspect-ratio: 3/4; max-height: 65vw; }
  .contact-hero-bio { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.5rem 3rem; display: flex; flex-direction: column; }
  .contact-hero-bio > div:last-child { width: calc(100% + 3rem); margin-left: -1.5rem; }
  .contact-hero-bio .bio-photo-wrap { aspect-ratio: 4/5; width: 100%; max-height: none; border-radius: 0; }
  .contact-hero-bio .bio-photo-wrap img { object-position: center 15%; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  #contact { padding: 4rem 1.5rem; }

  /* Work page */
  .work-page-hero { padding: 5rem 1.5rem 2.5rem; }
  .work-page-hero h1 { white-space: normal; font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-hero-split { grid-template-columns: 1fr; gap: 1rem; padding: 5rem 1.5rem 2rem; }

  /* Footer */
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-right { text-align: center; }
}
