/* ============================================================
   BSC — Global Stylesheet
   Fonts: Bebas Neue (headings), Space Grotesk (body)
   ============================================================ */

/* DESIGN TOKENS */
:root {
  --black: #1C1108;
  --ivory: #FFF9E7;
  --stone: #C4BBAA;
  --stone-hover: #a8a093;
  --lavender: #BEB4F0;
  --salamander: #334133;
  --white: #FFFFFF;

  --yellow: #fdff64;
  --red: #ff6464;
  --green: #A8D5B5;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* BASE */
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5%;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: var(--black);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 84px;
  width: auto;
  display: block;
  transition: filter 0.4s ease;
}

nav.scrolled .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links { display: none; }
.nav-cta { display: none; }

.hamburger {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span { background: var(--black); }
.hamburger.open span:nth-child(1) { width: 24px; transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-7.5px) rotate(-45deg); }

/* OVERLAY MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--yellow);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8%;
  gap: 0.5rem;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  pointer-events: all;
  clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: rgba(28,17,8,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateX(-24px);
  opacity: 0;
  transition: color 0.2s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.27s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.34s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.41s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.48s; }

.mobile-menu a:hover { color: rgba(28,17,8,1); }

.menu-footer {
  position: absolute;
  bottom: 3rem;
  left: 8%;
  right: 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,17,8,0.35);
  border-top: 1px solid rgba(28,17,8,0.15);
  padding-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.45s;
}

.mobile-menu.open .menu-footer { opacity: 1; }
.menu-footer a { color: rgba(28,17,8,0.5); text-decoration: none; font-size: 0.5rem; }

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  display: block;
}

.section-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

/* ============================================================
   HERO (PAGE 1) — LOCKED
   ============================================================ */
#hero-wrapper {
  height: 130vh;
  position: relative;
}

#hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8rem 5% calc(8vh + 2rem);
  overflow: hidden;
}

.hero-bg-solid {
  position: absolute;
  inset: 0;
  background: var(--red);
  z-index: 0;
}

.hero-mid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  transform: translateY(120vh);
}

.hero-mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.hero-fg {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-fg img {
  width: 100%;
  height: 20vh;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(60%);
}

.hero-content {
  position: relative;
  z-index: 6;
  will-change: opacity, transform;
  margin-top: auto;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,17,8,0.65);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
}

.hero-headline em {
  font-style: normal;
  color: rgba(28,17,8,0.65);
  display: block;
}

.hero-bottom {
  margin-top: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 0.92rem;
  color: rgba(28,17,8,0.6);
  max-width: 440px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.hero-cta:hover { border-color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.4); opacity: 0.9; }
}

/* HERO ENTRANCE ANIMATIONS */
.hero-label   { animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }
.hero-headline { animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both; }
.hero-sub     { animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s both; }
.hero-cta     { animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both; }
.hero-scroll  { animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES (PAGE 2) — LOCKED
   ============================================================ */
#services {
  background: var(--yellow);
  padding: 1rem 5% 16rem;
  margin-top: -2rem;
}

#services .section-label        { color: rgba(28,17,8,0.45); }
#services .section-headline     { color: var(--black); }
#services .services-intro       { color: rgba(28,17,8,0.55); }
#services .services-list        { border-top-color: rgba(28,17,8,0.12); }
#services .service-row          { border-bottom-color: rgba(28,17,8,0.12); }
#services .service-row-num      { color: rgba(28,17,8,0.18); }
#services .service-row-name     { color: var(--black); }
#services .service-row-desc     { color: rgba(28,17,8,0.55); }
#services .service-row-arrow    { color: rgba(28,17,8,0.15); }
#services .service-row:hover .service-row-num,
#services .service-row:hover .service-row-name,
#services .service-row:hover .service-row-arrow { color: var(--black); }

.services-header { margin-bottom: 0; }

.services-list { border-top: 1px solid rgba(28,17,8,0.12); }

.services-intro {
  max-width: 420px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(28,17,8,0.65);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.service-row-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  transform-origin: left center;
}

.service-row {
  display: grid;
  grid-template-columns: 1.4fr 50px 1fr 1.5fr 30px;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(28,17,8,0.12);
  transition: opacity 0.2s, border-color 0.5s ease;
}

.service-row:hover .service-row-num   { color: var(--stone); }
.service-row:hover .service-row-name  { color: var(--stone); }
.service-row:hover .service-row-arrow { color: var(--stone); transform: translateX(5px); }

.service-row-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.18);
  transition: color 0.3s;
}

.service-row-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: 0.03em;
  color: var(--black);
}

.service-row-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.service-row-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,0.12);
  transition: color 0.3s, transform 0.3s;
  text-align: right;
}

/* SERVICES SCROLL SYNC */
.hl-word {
  display: inline-block;
  opacity: 0.15;
  transform: scale(0.92);
  transform-origin: left center;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hl-word.is-active { opacity: 1; transform: scale(1); }

.service-row-num,
.service-row-name,
.service-row-desc,
.service-row-arrow {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-row.is-active .service-row-num   { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.service-row.is-active .service-row-name  { opacity: 1; transform: translateY(0); transition-delay: 0.07s; }
.service-row.is-active .service-row-desc  { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.service-row.is-active .service-row-arrow { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

/* CLOSING STATEMENT */
.services-closing {
  background: var(--green);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5%;
}

.services-closing-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(28,17,8,0.15);
}

.services-closing-line.in-view { color: var(--black); }

.services-closing-line[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.8s ease;
}

.services-closing-line[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
  color: var(--black);
}

/* ============================================================
   PHOTO SCROLLER
   ============================================================ */
.full-bleed {
  width: 100%;
  aspect-ratio: 21/8;
  background: #241810;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.08);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
  position: relative;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-scroll-outer {
  height: 300vh;
  position: relative;
}

.photo-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.photo-scroll-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.photo-scroll-slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-scroll-slide:nth-child(1) { background: #F4C2C2; }
.photo-scroll-slide:nth-child(2) { background: #FDE8C0; }
.photo-scroll-slide:nth-child(3) { background: #BDD5F0; }
.photo-scroll-slide:nth-child(4) { background: #A8D5B5; }

.photo-slide-heading {
  position: absolute;
  bottom: 4rem;
  left: 5%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(28,17,8,0.75);
  z-index: 2;
  pointer-events: none;
}

.photo-scroll-slide > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(9%);
}

.photo-scroll-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-scroll-counter {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(28,17,8,0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  pointer-events: none;
}

/* ============================================================
   WORK
   ============================================================ */
#work {
  background: var(--black);
  padding: 8rem 5%;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.work-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

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

.work-marquee {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.work-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.work-card {
  flex: 0 0 auto;
  width: 380px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #241810;
}

.work-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card:hover img { transform: scale(1.04); }

.work-card-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(28,17,8,0.55);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
}

@media (max-width: 600px) {
  .work-card { width: 260px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--black); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about-img {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.08);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.about-content {
  padding: 8rem 7% 8rem 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.about-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.88;
  margin-bottom: 3rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.value-dot {
  width: 5px; height: 5px;
  background: var(--stone);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote-section {
  background: var(--ivory);
  color: var(--black);
  padding: 9rem 5%;
  text-align: center;
}

.pullquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pullquote em {
  font-style: normal;
  color: rgba(0,0,0,0.25);
}

.pullquote-sub {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.42);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--black);
  padding: 10rem 5%;
  text-align: center;
}

.contact-label { color: var(--stone); margin-bottom: 1.5rem; }

.contact-headline {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.contact-headline em {
  font-style: normal;
  color: var(--stone);
  display: block;
}

.contact-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 3.5rem;
}

.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.contact-wa::before,
.contact-wa::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--yellow);
  pointer-events: none;
}

.contact-wa::before {
  border-bottom: none;
  border-left: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.25s ease;
}

.contact-wa::after {
  border-top: none;
  border-right: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.25s ease 0.25s;
}

.contact-wa:hover::before { clip-path: inset(0 0% 0 0); }
.contact-wa:hover::after  { clip-path: inset(0 0 0% 0); }

.contact-wa svg { width: 20px; height: 20px; }

.contact-email {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}

.contact-email a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.2;
}

.footer-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-row {
    grid-template-columns: 1.2fr 40px 1fr 1.5fr 30px;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    padding: 2rem 0;
  }
  .service-row-word { grid-column: 1 / -1; font-size: clamp(3rem, 10vw, 5rem); }
  .service-row-desc { grid-column: 1 / -1; padding-left: 0; }
  .service-row-arrow { display: none; }

  .about-split { grid-template-columns: 1fr; }
  .about-img { min-height: 50vw; }
  .about-content { padding: 5rem 5%; }

  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .full-bleed { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  #services, #work, #contact { padding: 5rem 5%; }
  .pullquote-section { padding: 6rem 5%; }
}
