/* ============================================================
   Cher & Co  |  Site Concept
   Design language: Urban Sophisticate
   Fraunces + Work Sans, charcoal / warm grey, copper accent
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-dark:        #1e1c1a;
  --bg-deep:        #121110;
  --bg-light:       #eae6e0;
  --bg-smoke:       #d8d4ce;

  /* Accent */
  --accent:         #b07845;
  --accent-hover:   #96633a;
  --accent-muted:   rgba(176,120,69,0.3);
  --accent-dim:     rgba(176,120,69,0.12);

  /* Text */
  --text-dark:      #1e1c1a;
  --text-body:      #4c4742;
  --text-muted:     #8a8580;
  --text-light:     rgba(255,255,255,0.92);
  --text-light-body: rgba(255,255,255,0.68);
  --text-light-muted: rgba(255,255,255,0.42);

  /* Typography */
  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:      min(90%, 1240px);
  --container-tight: min(90%, 1080px);
  --gutter:         clamp(1.5rem, 4vw, 3rem);
  --nav-height:     5.25rem;
  --section-pad:    clamp(4rem, 9vw, 7.5rem);

  /* Motion */
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--accent-muted); color: #fff; }

/* ---------- Shared type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.t-display em { font-style: italic; font-weight: 300; color: var(--accent); }

.container { width: var(--container); margin-inline: auto; }
.container--tight { width: var(--container-tight); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  border-radius: 100rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  white-space: nowrap;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.btn__icon svg { width: 0.85rem; height: 0.85rem; }
.btn:hover .btn__icon { transform: rotate(45deg); }

.btn--copper { background: var(--accent); color: #fff; }
.btn--copper:hover { background: var(--accent-hover); }
.btn--copper .btn__icon { background: rgba(255,255,255,0.16); color: #fff; }

.btn--ghost { border: 1px solid rgba(255,255,255,0.25); color: var(--text-light); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; }
.btn--ghost .btn__icon { background: rgba(255,255,255,0.08); color: #fff; }

.btn--dark { background: var(--bg-dark); color: #fff; }
.btn--dark:hover { background: var(--bg-deep); }
.btn--dark .btn__icon { background: rgba(255,255,255,0.14); color: #fff; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(18,17,16,0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
}
.nav__logo img { height: 2.6rem; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-light-body);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 0.5rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem;
  z-index: 120;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 1.7rem;
  height: 1.5px;
  background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(0.475rem) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-0.475rem) rotate(-45deg); }

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 300;
  color: var(--text-light);
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.8rem 0;
}
.mobile-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.mobile-menu__meta a { color: var(--text-light-body); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  padding: calc(var(--nav-height) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title {
  font-size: clamp(2.9rem, 6.2vw, 5.3rem);
  color: var(--text-light);
  margin-bottom: 1.6rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-light-body);
  max-width: 30rem;
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  max-height: 74vh;
  overflow: hidden;
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-muted);
  transform: translate(1.1rem, 1.1rem);
  pointer-events: none;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__caption {
  position: absolute;
  left: 0;
  bottom: clamp(1.2rem, 3vw, 2rem);
  transform: translateX(-1.2rem);
  background: var(--bg-deep);
  border-left: 2px solid var(--accent);
  padding: 0.9rem 1.4rem;
  max-width: 17rem;
}
.hero__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.hero__caption span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ---------- Cred strip ---------- */

.strip {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: clamp(1.4rem, 3vw, 2rem) 0;
}
.strip__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-light-muted);
}
.strip__item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Intro ---------- */

.intro {
  background: var(--bg-light);
  padding: var(--section-pad) 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.intro__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  color: var(--text-dark);
  margin-top: 1.4rem;
}
.intro__body { padding-top: clamp(0rem, 2vw, 3.4rem); }
.intro__body p { margin-bottom: 1.4rem; font-size: 1.02rem; }
.intro__body p:last-of-type { margin-bottom: 2rem; }

.intro__images {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.intro__img { overflow: hidden; }
.intro__img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.intro__img--a { aspect-ratio: 3 / 4; }
.intro__img--b { aspect-ratio: 16 / 10; transform: translateY(clamp(1rem, 3vw, 3rem)); }
.intro__img-note {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Portfolio rail ---------- */

.work {
  background: var(--bg-deep);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.work__head {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.work__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--text-light);
  margin-top: 1.4rem;
}
.work__hint {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  padding-bottom: 0.5rem;
}
.work__hint svg { width: 1.4rem; height: 0.8rem; }

.rail {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 max(5vw, calc((100vw - 1240px) / 2)) 0.5rem;
  scroll-padding-inline: max(5vw, calc((100vw - 1240px) / 2));
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.rail__card {
  flex: 0 0 auto;
  width: clamp(16rem, 62vw, 26rem);
  scroll-snap-align: start;
}
.rail__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.rail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.rail__card:hover .rail__img img { transform: scale(1.05); }
.rail__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.rail__place {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.3rem;
}

/* ---------- Services ---------- */

.services {
  background: var(--bg-smoke);
  padding: var(--section-pad) 0;
}
.services__head { max-width: 38rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.services__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--text-dark);
  margin-top: 1.4rem;
}
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(30,28,26,0.14);
}
.service-row:last-child { border-bottom: 1px solid rgba(30,28,26,0.14); }
.service-row__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--accent-muted);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.service-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.service-row__text { max-width: 28rem; font-size: 1rem; }
.service-row__img { overflow: hidden; }
.service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.service-row__img--wide { aspect-ratio: 16 / 11; }
.service-row__img--tall { aspect-ratio: 4 / 4.4; max-height: 30rem; }
.service-row--flip .service-row__img { order: -1; }

/* ---------- Process ---------- */

.process {
  background: var(--bg-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.process::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}
.process__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--text-light);
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}
.process__lede { color: var(--text-light-body); max-width: 24rem; }
.process__sticky { position: sticky; top: calc(var(--nav-height) + 2rem); }

.step {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }
.step__num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1.5;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.45rem;
}
.step__text { font-size: 0.95rem; color: var(--text-light-body); max-width: 30rem; }

/* ---------- Studio / founder ---------- */

.studio {
  background: var(--bg-light);
  padding: var(--section-pad) 0;
}
.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.studio__media { position: relative; }
.studio__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.studio__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-muted);
  transform: translate(1.1rem, 1.1rem);
  pointer-events: none;
}
.studio__img img { width: 100%; height: 100%; object-fit: cover; }
.studio__badge {
  position: absolute;
  right: 0;
  bottom: -1.4rem;
  transform: translateX(1rem);
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 0.9rem 1.4rem;
  border-left: 2px solid var(--accent);
}
.studio__badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
}
.studio__badge span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.studio__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--text-dark);
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}
.studio__body p { margin-bottom: 1.3rem; font-size: 1.02rem; }
.studio__note {
  border-left: 2px solid var(--accent);
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */

.cta {
  background: var(--bg-deep);
  padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: var(--text-light);
  margin: 1.6rem auto 1.4rem;
  max-width: 20ch;
}
.cta__sub {
  color: var(--text-light-body);
  max-width: 34rem;
  margin: 0 auto 2.6rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer__logo img { height: 2.8rem; width: auto; margin-bottom: 1.3rem; }
.footer__blurb {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  max-width: 20rem;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-light-body);
  transition: border-color 0.3s, color 0.3s;
}
.footer__social a:hover { border-color: var(--accent); color: #fff; }
.footer__social svg { width: 1rem; height: 1rem; }

.footer__title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a {
  font-size: 0.92rem;
  color: var(--text-light-body);
  transition: color 0.3s;
}
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__contact a, .footer__contact span {
  font-size: 0.92rem;
  color: var(--text-light-body);
}
.footer__contact a:hover { color: #fff; }
.footer__area {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-light-muted);
  max-width: 18rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

/* ---------- 404 ---------- */

.error-section {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.error-section::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.error__inner { position: relative; z-index: 1; }
.error__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 300;
  color: var(--accent-muted);
  line-height: 1;
}
.error__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-light);
  margin: 1rem 0 1.2rem;
}
.error__body {
  color: var(--text-light-body);
  max-width: 26rem;
  margin: 0 auto 2.4rem;
}

/* ---------- Reveal defaults ---------- */

.reveal { opacity: 0; transform: translateY(2rem); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .hero__title { font-size: clamp(2.6rem, 5.6vw, 4rem); }
}

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

  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 2rem);
  }
  .hero__inner { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero__frame { aspect-ratio: 4 / 3.4; max-height: none; }
  .hero__caption { transform: none; left: 0; }

  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro__body { padding-top: 0; }

  .service-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .service-row--flip .service-row__img { order: 0; }
  .service-row__img--tall { aspect-ratio: 16 / 11; max-height: none; }

  .process__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process__sticky { position: static; }

  .studio__grid { grid-template-columns: 1fr; gap: 3rem; }
  .studio__media { max-width: 26rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: space-between; }

  .strip__inner { flex-direction: column; gap: 0.9rem; }

  .work__head { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }

  .footer__links { gap: 0; }
  .footer__contact { gap: 0; }
  .footer__links a, .footer__contact a { padding-block: 0.65rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-height) + 1.2rem); }
  .hero__caption {
    position: static;
    margin-top: 0.9rem;
    max-width: none;
  }
  .studio__badge {
    position: static;
    transform: none;
    margin-top: 1rem;
    display: inline-block;
  }
}
