*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #1A1B23;
  --bg-mid: #22242E;
  --bg-light: #2A2D38;
  --text-primary: #F4EFE7;
  --accent: #B9A58D;
  --accent-glow: rgba(185, 165, 141, 0.18);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --black: #111;
  --gray: #666;
  --light: #f5f5f5;
  --border: #e5e5e5;

  --kaleb-font-size: clamp(100px, 13vw, 230px);
  --kaleb-letter-gap: clamp(5px, 6vw, 5px);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.portfolio-page {
  background: #f8f9fb;
  color: var(--black);
}

body.portfolio-page .portfolio-hero,
body.portfolio-page .portfolio-grid,
body.portfolio-page .shot-showcase {
  background: transparent;
}

body.about-page {
  background: #f8f9fb;
  color: var(--black);
}

body.contact-page {
  background: #ffffff;
  color: var(--black);
}

body.about-page footer {
  margin-top: 0;
}

.about-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.about-hero-visual {
  display: flex;
  justify-content: center;
}

.about-portrait-frame {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1);
}

.about-hero-copy {
  max-width: 520px;
}

.about-eyebrow,
.about-bio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #7a5b24;
  background: #fff;
  border-radius: 9999px;
  padding: 7px 12px;
  margin-bottom: 14px;
}

.about-hero-copy h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.about-hero-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  max-width: 430px;
  margin-bottom: 22px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  margin-bottom: 38px;
}

.about-intro-col p,
.about-bio-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #222222;
}

.about-intro-col p + p {
  margin-top: 14px;
}

.dropcap {
  float: left;
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 800;
  margin: 2px 8px 0 0;
  color: #111827;
}

.about-quote-col {
  align-self: start;
  padding-top: 8px;
}

.about-quote-col blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: #111827;
  margin: 0 0 16px;
  font-style: italic;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.about-testimonial-author strong {
  display: block;
  font-size: 13px;
  color: #111827;
}

.about-testimonial-author span {
  display: block;
  font-size: 11px;
  color: #6b7280;
}

.about-tools {
  margin-bottom: 64px;
}

.about-tools-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.1;
  color: #111827;
  margin-bottom: 18px;
}

.about-tools-list {
  border-top: 1px solid #e5e7eb;
}

.about-tool-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  color: #111827;
}

.about-tool-row span:last-child {
  color: #6b7280;
  text-align: right;
}

.about-bio {
  padding: 6px 0 70px;
}

.about-bio-head {
  margin-bottom: 18px;
}

.about-bio-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  color: #111827;
}

.about-bio-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.about-bio-content p {
  color: #1f2937;
}

.about-page .shot-showcase {
  background: #f8f9fb;
  padding-top: 40px;
  padding-bottom: 100px;
}

.contact-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 24px 72px;
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-badge {
  display: inline-block;
  margin-bottom: 26px;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}

.contact-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #000000;
  margin-bottom: 24px;
}

.contact-hero p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.55;
  color: #6b7280;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f3f6fb;
  border-radius: 14px;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.03);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #6b7280;
}

.contact-field textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-field-message {
  display: block;
  margin-bottom: 22px;
}

.contact-submit {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 18px 20px;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #111111;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIvPjwvc3ZnPg==');
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── MODULAR NAV ─── */
.site-nav-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(26, 27, 35, 0.86);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 9999px;
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: loadSlideUp 1.2s ease forwards;
}

.site-nav-bar:hover {
  transform: translateX(-50%) scale(1.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  gap: 10px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #d8c3a6);
  color: #1A1B23;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding-right: 6px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(244, 239, 231, 0.72);
  padding: 10px 18px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1A1B23;
  background: #F4EFE7;
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(185, 165, 141, 0.10), transparent 50%),
    linear-gradient(180deg, #1A1B23 0%, #242631 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 100vw;
  transform: translateX(-50%);
  height: 420px;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.88) 12%,
    rgba(255, 255, 255, 0.70) 28%,
    rgba(255, 255, 255, 0.40) 52%,
    rgba(255, 255, 255, 0.15) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(34px);
  opacity: 0.98;
  z-index: 3;
}

/* ─── HERO BG PORTRAIT ─── */
.hero-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 36vw, 560px);
  height: 90%;
  z-index: 2;
  pointer-events: none;
  animation: loadPortrait 1.2s ease-out forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: contrast(1.08) brightness(1.02) saturate(1.04);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* ─── TOP BAR ─── */
.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  z-index: 20;
  animation: fadeIn 1s ease forwards;
}

.hero-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-identity .identity-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hero-identity .identity-role {
  font-size: 11px;
  font-weight: 400;
  color: rgba(244, 239, 231, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-identity .role-break {
  display: block;
}

.btn-contact {
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(185, 165, 141, 0.15);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(185, 165, 141, 0.25);
  background: #c7b39c;
}

/* ─── HERO NAME ─── */
/* "KALEB" as ONE flex row split into three real inline children:
   KA (behind portrait) — invisible L-shaped spacer — EB (behind
   portrait). The spacer reserves exactly the width the real L (drawn
   in the overlay layer above) needs, using the same font/size/gap, so
   KA and EB always shift apart by the right amount automatically. */
.hero-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  gap: 0;
  animation: loadSlideUpText 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-name .name-part {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: var(--kaleb-font-size);
  line-height: 1;
  letter-spacing: -4px;
  white-space: nowrap;
}

.hero-name .name-part {
  color: var(--text-primary);
}

.hero-name .name-part.right {
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* The "L" lives in a SEPARATE layer (.hero-name-overlay-layer, a
   sibling of .hero-bg, see below) rather than inside .hero-name.
   Reason: .hero-name as a whole is z-index:1, behind the portrait's
   z-index:2 — once a parent is composited behind another layer, NO
   child of that parent can ever paint above it, regardless of the
   child's own z-index. That's why putting the L inside .hero-name
   with z-index:3 silently failed: it was still trapped inside the
   z-index:1 parent stacking context. .name-part-overlay-spacer below
   is an invisible (color/stroke: transparent) clone of "KA" used only
   to push the real overlay layer's "L" into the correct horizontal
   position using the exact same font + flex metrics (including the
   same --kaleb-letter-gap) as the visible KA/EB text, guaranteeing
   pixel-perfect alignment at every viewport width without any
   hardcoded pixel values. */
.hero-name-overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 0;
}

.hero-name-overlay-layer .name-part-spacer {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: var(--kaleb-font-size);
  line-height: 1;
  letter-spacing: -4px;
  white-space: nowrap;
  color: transparent;
}

/* The "L" is a REAL flex child here now (not absolutely positioned),
   so it has real width and sits naturally between the two invisible
   "KA"/"EB" spacers. margin-left and margin-right use the SAME
   variable, so the space on the A-side and the E-side is guaranteed
   to be the exact same number of pixels — not just "visually close"
   via flex gap, but identical by definition. */
.hero-name-overlay-layer .name-part-overlay {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: var(--kaleb-font-size);
  line-height: 1;
  letter-spacing: -4px;
  white-space: nowrap;
  color: transparent;
  margin: 0 var(--kaleb-letter-gap);
  -webkit-text-stroke: 2px rgba(244, 239, 231, 0.85);
}

/* Invisible "L" placeholder in the VISIBLE KA/EB row, directly below
   the real overlay layer. Same font, size, letter-spacing, AND same
   margin as the real L above, so the visible KA/EB shift apart by
   precisely the same equal amount on both sides. */
.hero-name .name-part-ghost-l {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: var(--kaleb-font-size);
  line-height: 1;
  letter-spacing: -4px;
  white-space: nowrap;
  color: transparent;
  margin: 0 var(--kaleb-letter-gap);
}

/* ─── CAMERA FOCUS FRAME ─── */
/* Sized and positioned to wrap the full "KALEB" wordmark instead of
   sitting as a small fixed box centered on the face. Height bumped
   slightly to keep wrapping the wordmark now that it's larger. */
.camera-focus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 980px);
  height: 360px;
  z-index: 5;
  pointer-events: none;
}

.bracket {
  position: absolute;
  width: 55px;
  height: 55px;
}

.bracket::before,
.bracket::after {
  content: '';
  position: absolute;
  background: rgba(185, 165, 141, 0.35);
}

.bracket::before {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
}

.bracket::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
}

.bracket.tl {
  top: 0;
  left: 0;
}

.bracket.tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.bracket.bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}

.bracket.br {
  bottom: 0;
  right: 0;
  transform: scale(-1);
}

/* ─── EXPLORE CTA ─── */
.hero-explore {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.5s ease forwards;
}

.hero-explore::before {
  content: '→';
  font-size: 14px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes loadSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes loadSlideUpText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadPortrait {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* ─── TRUST SECTION ─── */
.trust-section {
  background: #f8f9fb; /* match services section background */
  padding: 90px 24px 90px;
  text-align: center;
  position: relative;
  margin-top: 0;
}

.trust-inner {
  max-width: 600px;
  margin: 0 auto;
}

.trust-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-avatars img,
.trust-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
}

.trust-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.trust-avatar-placeholder:nth-child(1) {
  background: #2d6a4f;
  margin-right: -10px;
  z-index: 3;
}

.trust-avatar-placeholder:nth-child(2) {
  background: #8b4513;
  margin-right: -10px;
  z-index: 2;
}

.trust-avatar-placeholder:nth-child(3) {
  background: #1a3a5c;
  z-index: 1;
}

.trust-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.trust-stars svg {
  width: 22px;
  height: 22px;
}

.trust-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.trust-headline.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.trust-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s, filter 0.8s ease 0.1s;
}

.trust-sub.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── SERVICES SECTION ─── */
.services-section {
  background: #f8f9fb;
  padding: 90px 24px 70px;
}

/* ─── BRAND SHOWCASE ─── */
.brand-showcase {
  position: relative;
  overflow: hidden;
  background: #f8f9fb;
  padding: 72px 0 84px;
  min-height: 0;
}

.brand-inner {
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-carousel {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: clamp(150px, 20vw, 220px);
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
  pointer-events: auto;
}

.brand-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.brand-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(140px, 15vw, 190px);
  height: clamp(96px, 10.5vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.10);
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.28, 1),
              opacity 0.6s ease,
              filter 0.6s ease;
  will-change: transform, opacity, filter;
}

.brand-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.brand-slide.is-active {
  cursor: default;
}

.brand-slide.is-adjacent {
  cursor: pointer;
}

.brand-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.brand-button:hover,
.brand-button:focus-visible {
  transform: translateY(-50%) scale(1.05);
  background: #ffffff;
}

.brand-button-prev {
  left: 0;
}

.brand-button-next {
  right: 0;
}

.brand-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .brand-showcase {
    padding: 56px 0 64px;
    min-height: 0;
  }

  .brand-inner {
    gap: 16px;
  }

  .brand-carousel {
    height: clamp(120px, 34vw, 160px);
  }

  .brand-slide {
    width: clamp(108px, 30vw, 140px);
    height: clamp(76px, 20vw, 100px);
    padding: 10px;
  }

  .brand-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-email-btn {
  width: fit-content;
  padding: 16px 40px;
}

.contact-location {
  color: var(--gray);
}

.contact-phone {
  color: var(--black);
  font-weight: 600;
}

/* ─── SHOT / CTA SHOWCASE ─── */
.shot-showcase {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 120px 24px 120px;
}

.shot-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.05), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(0, 0, 0, 0.035), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(0, 0, 0, 0.035), transparent 18%);
  pointer-events: none;
}

.shot-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  justify-items: center;
}

.shot-copy {
  max-width: 900px;
  text-align: center;
}

.shot-tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 0.95;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.shot-copy p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #707070;
  font-size: 18px;
  line-height: 1.55;
}

.shot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.shot-btn:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.shot-visuals {
  position: relative;
  width: min(100%, 980px);
  height: clamp(290px, 48vw, 500px);
}

.shot-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 24vw, 260px);
  height: clamp(275px, 39vw, 470px);
  border-radius: 28px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.shot-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 1;
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-card-left {
  transform: translate(-120%, -46%) rotate(-8deg) scale(0.96);
  z-index: 1;
  animation: shotFloatLeft 7s ease-in-out infinite;
}

.shot-card-center {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  width: clamp(225px, 26vw, 305px);
  height: clamp(315px, 42vw, 505px);
}

.shot-card-right {
  transform: translate(20%, -46%) rotate(8deg) scale(0.96);
  z-index: 1;
  animation: shotFloatRight 8s ease-in-out infinite;
}

@keyframes shotFloatLeft {
  0%,
  100% {
    transform: translate(-120%, -46%) rotate(-8deg) scale(0.96);
  }

  50% {
    transform: translate(-120%, -48%) rotate(-10deg) scale(0.98);
  }
}

@keyframes shotFloatRight {
  0%,
  100% {
    transform: translate(20%, -46%) rotate(8deg) scale(0.96);
  }

  50% {
    transform: translate(20%, -48%) rotate(10deg) scale(0.98);
  }
}

@media (max-width: 980px) {
  .shot-showcase {
    padding: 96px 18px 110px;
  }

  .shot-inner {
    gap: 38px;
  }

  .shot-copy h2 {
    font-size: clamp(24px, 6.5vw, 38px);
  }

  .shot-copy p {
    font-size: 16px;
  }

  .shot-visuals {
    height: clamp(280px, 64vw, 470px);
  }

  .shot-card-left {
    transform: translate(-118%, -46%) rotate(-7deg) scale(0.88);
  }

  .shot-card-right {
    transform: translate(18%, -46%) rotate(7deg) scale(0.88);
  }

  .shot-card-center {
    width: clamp(210px, 32vw, 280px);
    height: clamp(295px, 46vw, 455px);
  }
}

@media (max-width: 640px) {
  .shot-showcase {
    padding: 84px 16px 96px;
  }

  .shot-copy h2 {
    font-size: clamp(22px, 8vw, 32px);
  }

  .shot-visuals {
    height: 580px;
    width: 100%;
  }

  .shot-card {
    width: min(68vw, 260px);
    height: clamp(240px, 66vw, 390px);
  }

  .shot-card-left {
    transform: translate(-72%, -62%) rotate(-7deg) scale(0.86);
  }

  .shot-card-center {
    width: min(78vw, 290px);
    height: clamp(280px, 78vw, 430px);
  }

  .shot-card-right {
    transform: translate(-2%, -20%) rotate(7deg) scale(0.86);
  }
}


.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.services-tag {
  display: inline-block;
  background: #f1f5f9;
  color: var(--black);
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.services-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--black);
}

.services-copy p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 32px;
}

.services-list {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
  color: var(--black);
  font-weight: 600;
}

.service-check {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 14px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  padding: 16px 30px;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #333333;
}

.services-cards {
  display: grid;
  gap: 10px;
  margin-top: 64px;
}

.service-card {
  display: flex;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 12px 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
  align-items: center;
}

.service-card-image {
  flex: 0 0 92px;
  min-width: 92px;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-copy h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--black);
}

.service-card-copy p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .services-inner {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 70px 18px 60px;
  }

  .services-copy h2 {
    font-size: clamp(34px, 8vw, 40px);
  }

  .service-card {
    flex-direction: column;
    text-align: left;
  }

  .service-card-image {
    width: 100%;
    min-width: auto;
    height: 180px;
  }
}

.laurel {  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  width: 120px;
}

.laurel.left {
  left: 8%;
}

.laurel.right {
  right: 8%;
  transform: translateY(-50%) scaleX(-1);
}

/* ─── PHILOSOPHY SECTION ─── */
.philosophy-section {
  background: #ffffff;
  padding: 80px 24px 160px;
  position: relative;
  overflow: hidden;
}

.philosophy-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.philosophy-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--black);
  text-align: center;
  position: relative;
  z-index: 2;
}

.philosophy-text .char {
  display: inline-block;
  filter: blur(10px);
  opacity: 0.15;
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.philosophy-text .char.revealed {
  filter: blur(0);
  opacity: 1;
}

.philosophy-credit {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.float-photos {
  position: relative;
  height: 500px;
  max-width: 1100px;
  margin: -60px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
}

.float-photo {
  border-radius: 18px;
  overflow: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.float-photo:nth-child(1) {
  width: 38%;
  height: 420px;
}

.float-photo:nth-child(2) {
  width: 30%;
  height: 340px;
  align-self: center;
}

.float-photo:nth-child(3) {
  width: 24%;
  height: 380px;
}

.float-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-brand .brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .brand-name span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  transition: all 0.25s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom-accent {
  color: rgba(255, 255, 255, 0.25);
}

/* ─── PORTFOLIO PAGE ─── */
.portfolio-hero {
  padding: 28px 24px 22px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}

.portfolio-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5.8vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--black);
  margin-bottom: 14px;
}

.portfolio-hero p {
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.port-card {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ececec;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.port-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.port-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.port-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.port-card:hover .port-card-img img {
  transform: scale(1.06);
}

.port-card-body {
  padding: 8px 8px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title pill"
    "date pill";
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}

.port-tag {
  grid-area: pill;
  justify-self: end;
  align-self: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #0f172a;
  background: #eef2f7;
  border-radius: 9999px;
  padding: 3px 8px;
  margin-bottom: 0;
}

.port-card-body h3 {
  grid-area: title;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin: 0;
}

.port-card-body p {
  grid-area: date;
  font-size: 9px;
  color: var(--gray);
  line-height: 1.3;
  margin: 0;
}

.trusted-partners-section {
  background: #f8f9fb;
  padding: 16px 24px 64px;
}

.trusted-partners-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 80vh;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.trusted-partners-head {
  text-align: center;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

.trusted-partners-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  color: #111827;
  margin-bottom: 8px;
}

.trusted-partners-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.trusted-partners-collage {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 0;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.partner-tile {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  position: relative;
}

.partner-tile img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  min-height: 0;
  transition: transform 160ms ease;
  transform-origin: center center;
}

.partner-tile-square {
  grid-column: span 1;
  grid-row: span 1;
}

.partner-tile-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.partner-tile-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.partner-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.partner-tile:hover {
  z-index: 2;
}

.partner-tile:hover img {
  transform: scale(1.12);
}

@media (max-width: 980px) {
  .trusted-partners-collage {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .partner-tile-wide,
  .partner-tile-large {
    grid-column: span 2;
  }

  .partner-tile-tall {
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .trusted-partners-section {
    padding: 8px 12px 48px;
  }

  .trusted-partners-inner {
    height: 80vh;
  }

  .trusted-partners-collage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-tile-square,
  .partner-tile-wide,
  .partner-tile-tall,
  .partner-tile-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.pdf-card {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.pdf-embed {
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pdf-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root {
    --kaleb-font-size: clamp(85px, 12vw, 185px);
    --kaleb-letter-gap: clamp(36px, 5vw, 80px);
  }

  .hero-bg {
    width: clamp(260px, 40vw, 480px);
  }
}

@media (max-width: 768px) {
  :root {
    --kaleb-font-size: clamp(64px, 14vw, 125px);
    --kaleb-letter-gap: clamp(24px, 4vw, 60px);
  }

  nav {
    width: calc(100% - 32px);
    bottom: 20px;
  }

  .hero-topbar {
    padding: 20px;
  }

  .hero-identity .identity-role {
    font-size: 9px;
    line-height: 1.35;
  }

  .hero-bg {
    width: clamp(220px, 65vw, 380px);
    height: 85%;
  }

  .camera-focus {
    width: 94vw;
    height: 220px;
  }

  .bracket {
    width: 36px;
    height: 36px;
  }

  .laurel {
    display: none;
  }

  .float-photos {
    height: auto;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 0 16px;
  }

  .float-photo {
    width: 100% !important;
    height: 260px !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 18px;
  }

  .portfolio-hero {
    padding: 26px 16px 18px;
  }

  .portfolio-hero h1 {
    font-size: clamp(28px, 10vw, 48px);
  }

  .contact-page-wrap {
    padding: 72px 16px 60px;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .contact-hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-submit {
    font-size: 16px;
  }

  .about-page-wrap {
    padding: 72px 16px 0;
  }

  .about-hero,
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero {
    justify-items: center;
    text-align: center;
  }

  .about-hero-copy {
    max-width: none;
  }

  .about-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-tool-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-tool-row span:last-child {
    text-align: left;
  }

  .about-portrait-frame {
    width: 220px;
    height: 220px;
  }

  .about-page .shot-showcase {
    padding-top: 20px;
    padding-bottom: 72px;
  }

  .shot-showcase {
    padding: 84px 16px 72px;
  }

  .shot-inner {
    gap: 32px;
  }

  .shot-copy h2 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .shot-copy p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .shot-visuals {
    width: 100%;
    height: 420px;
  }

  .shot-card {
    width: clamp(138px, 33vw, 195px);
    height: clamp(225px, 51vw, 315px);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  }

  .shot-card::before {
    inset: 8px;
    border-radius: 16px;
  }

  .shot-card-left {
    transform: translate(-110%, -50%) rotate(-7deg) scale(0.92);
  }

  .shot-card-center {
    width: clamp(180px, 39vw, 225px);
    height: clamp(255px, 57vw, 352px);
  }

  .shot-card-right {
    transform: translate(10%, -50%) rotate(7deg) scale(0.92);
  }

  .portfolio-hero {
    padding: 120px 24px 40px;
  }

  .pdf-card {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --kaleb-font-size: clamp(54px, 15vw, 100px);
    --kaleb-letter-gap: clamp(16px, 3.5vw, 40px);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-identity .identity-role {
    font-size: 8px;
  }

  .shot-showcase {
    padding: 72px 14px 64px;
  }

  .shot-copy h2 {
    font-size: clamp(22px, 8vw, 32px);
  }

  .shot-copy p {
    font-size: 14px;
  }

  .shot-visuals {
    height: 345px;
  }

  .shot-card {
    width: clamp(123px, 32vw, 168px);
    height: clamp(198px, 48vw, 282px);
    border-radius: 18px;
  }

  .shot-card::before {
    inset: 7px;
    border-radius: 14px;
  }

  .shot-card-left {
    transform: translate(-112%, -50%) rotate(-7deg) scale(0.9);
  }

  .shot-card-center {
    width: clamp(162px, 36vw, 198px);
    height: clamp(228px, 52vw, 312px);
  }

  .shot-card-right {
    transform: translate(12%, -50%) rotate(7deg) scale(0.9);
  }
}