/* ============================================
   356 AGENCY — STYLESHEET
   ============================================ */

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

:root {
  --black: #080808;
  --white: #ffffff;
  --grey-light: #a0a0a0;
  --grey-mid: #3a3a3a;
  --grey-dark: #141414;
  --accent: #c8c8c8;
  --amber: #C8922A;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   NAV
   ============================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--grey-mid);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  display: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-cta {
  color: var(--white) !important;
  border: 1px solid var(--white);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 24px 0;
}

.mobile-menu ul li a {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-frame {
  position: absolute;
  top: 80px;
  left: 80px;
  right: 80px;
  bottom: 80px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: -40px;
  filter: blur(6px);
  transform: scale(1.08);
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.6) 50%,
    rgba(8,8,8,0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 20px;
  transition-delay: 0.1s;
  opacity: 0.7;
}

.hero-headline {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  transition-delay: 0.2s;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--accent);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  transition-delay: 0.3s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary.full-width {
  width: 100%;
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--grey-dark);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

.trust-strip-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-light);
  opacity: 0.5;
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-marquee-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.trust-marquee:hover .trust-marquee-inner {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-logo-item {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-logo-item:hover {
  opacity: 1;
}

.trust-logo-item img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.trust-logo-item img.logo-already-white {
  filter: none;
}

.trust-logo-item img.logo-blend {
  filter: none;
}

.trust-logo-item img.logo-compass {
  height: 72px;
  max-width: 240px;
}

.trust-logo-item span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 72px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 140px 0;
}

/* PRIMARY SERVICE */
.services-primary {
  border: 1px solid var(--grey-mid);
  background: var(--grey-dark);
  padding: 72px 64px;
  margin-bottom: 4px;
}

.services-primary-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.services-primary-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.services-primary-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.services-formats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-format-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-light);
  letter-spacing: 0.05em;
}

.format-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* SUPPORTING SERVICES */
.services-supporting {
  border: 1px solid var(--grey-mid);
  background: var(--grey-dark);
  padding: 56px 64px;
}

.services-supporting-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 40px;
  opacity: 0.6;
}

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

.services-supporting-item {
  display: flex;
  gap: 20px;
}

.supporting-num {
  font-size: 20px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
}

.services-supporting-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.services-supporting-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio {
  padding: 140px 0;
  background: var(--grey-dark);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.portfolio-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 80px;
}

.portfolio-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portfolio-pair-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pair-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.showcase-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
}

.showcase-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.showcase-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.showcase-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 24px;
}

.showcase-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--grey-dark);
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
}

.showcase-media iframe,
.showcase-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.showcase-media.vertical {
  padding-top: 0;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  height: auto;
}

.showcase-media.vertical iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-media:hover img {
  transform: scale(1.03);
}

.placeholder-large {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-large span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-cta {
  text-align: center;
}

/* ============================================
   CLIENTS
   ============================================ */

.clients {
  padding: 140px 0;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.logo-item span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

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

.about-section {
  padding: 100px 0 140px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  border-radius: 16px;
}

.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.about-bio-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.about-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.about-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: italic;
}

.about-bio-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

.about-bio-closer {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}

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

/* ============================================
   PORTFOLIO PAGE
   ============================================ */

.page-header {
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--grey-mid);
}

.page-header-title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-active {
  color: var(--white) !important;
}

.portfolio-page-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--grey-mid);
}

.portfolio-page-format-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  opacity: 0.5;
  margin-bottom: 48px;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

.portfolio-page-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.portfolio-page-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

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

  .page-header {
    padding: 140px 0 60px;
  }
}

/* ============================================
   PHOTOGRAPHY
   ============================================ */

.photography {
  padding: 140px 0;
}

.photo-feature {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}

.photo-feature-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
}

.photo-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.photo-feature-img:hover img {
  transform: scale(1.03);
}

.photo-feature-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-address {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.photo-location-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.photo-bio-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.75;
}

.photo-bio-stats {
  display: flex;
  gap: 40px;
  padding-top: 8px;
  border-top: 1px solid var(--grey-mid);
}

.photo-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.photo-grid-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: 140px 0;
  background: var(--grey-dark);
  border-top: 1px solid var(--grey-mid);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details a {
  font-size: 15px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 20px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-light);
}

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

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 64px 0;
  background: var(--grey-dark);
  border-top: 1px solid var(--grey-mid);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--grey-mid);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 20px 24px;
  }

  #navbar.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 24px;
  }

  .hero-video-frame {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .services,
  .portfolio,
  .clients,
  .contact,
  .photography {
    padding: 80px 0;
  }

  .services-primary {
    padding: 40px 24px;
  }

  .services-supporting {
    padding: 40px 24px;
  }

  .services-supporting-items {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-media.vertical {
    max-width: 100%;
  }

  .photo-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid-item.photo-grid-large {
    grid-column: span 2;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .logos-grid {
    gap: 40px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .contact-inner {
    gap: 48px;
  }

  .photo-bio-stats {
    gap: 24px;
  }
}
