:root {
  --bg: #ffffff;
  --ink: #101014;
  --muted: #53545a;
  --line: #d6d6d6;
  --soft-line: #e8e8e8;
  --slot: #f0f0ef;
  --slot-deep: #e3e3e1;
  --accent: #e7542f;
  --accent-dark: #c94121;
  --radius: 12px;
  --max: 1220px;
  --gutter: clamp(1.25rem, 3.5vw, 3rem);
  --display: "Bebas Neue", Impact, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(231, 84, 47, 0.06), transparent 20rem),
    linear-gradient(#fff, #fff);
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: rgba(231, 84, 47, 0.22);
}

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--bg);
}

.skip-link:focus {
  top: 1rem;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 46% 46%, rgba(231, 84, 47, 0.08), transparent 19rem),
    var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff8a62);
  box-shadow: 0 0 18px rgba(231, 84, 47, 0.28);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none;
}

.slash-loader {
  display: block;
  overflow: hidden;
  background: transparent;
  transition: visibility 1ms linear 520ms;
}

.slash-loader.is-hidden {
  opacity: 1;
  visibility: hidden;
}

.slash-panel {
  position: absolute;
  top: -22vh;
  left: -38vw;
  width: 38vw;
  min-width: 280px;
  height: 144vh;
  background:
    linear-gradient(90deg, rgba(231, 84, 47, 0.94), rgba(231, 84, 47, 0.72)),
    var(--accent);
  box-shadow: 0 0 0 9999px rgba(255, 255, 255, 0.9);
  transform: skewX(-18deg) translateX(-80vw);
  animation: slashSweep 620ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-word {
  display: inline-flex;
  align-items: baseline;
  min-height: 1.1em;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  white-space: nowrap;
}

.loader-cursor {
  width: 0.08em;
  height: 0.72em;
  margin-left: 0.1em;
  background: var(--accent);
  animation: cursorBlink 460ms steps(1, end) infinite;
}

.hero,
.split-section,
.section-block,
.site-footer {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  --header-focus-x: 52%;
  --header-focus-width: 74px;
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 90px;
  padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  transform: translateY(0);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(17rem, 52vw, calc(100% - 15rem));
  z-index: -1;
  width: 74px;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(var(--accent), var(--accent)) top left / 18px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top right / 18px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom left / 18px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right / 18px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top left / 2px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top right / 2px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom left / 2px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right / 2px 12px no-repeat;
  opacity: 0.42;
  pointer-events: none;
  transform: translate3d(-28px, -50%, 0) scale(0.94);
  animation: headerFocusSweep 7200ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@media (min-width: 941px) {
  .site-header::before {
    left: var(--header-focus-x);
    width: var(--header-focus-width);
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition: left 780ms cubic-bezier(0.45, 0, 0.18, 1),
      width 780ms cubic-bezier(0.45, 0, 0.18, 1);
    animation: headerFocusLock 2200ms ease-in-out infinite;
  }

  .site-header[data-focus-ready="true"]::before {
    opacity: 0.34;
  }
}

.hero,
.split-section,
.section-block,
.detail-hero,
.detail-content {
  scroll-margin-top: 110px;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  font-weight: 500;
}

.brand::after {
  content: "";
  display: inline-block;
  width: 0.06em;
  height: 0.72em;
  margin-left: 0.1em;
  background: var(--accent);
  opacity: 0;
  vertical-align: -0.04em;
  animation: brandCursor 2400ms ease 250ms 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.site-nav a,
.portfolio-tabs button {
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.portfolio-tabs button {
  border: 0;
  padding: 0;
  background: transparent;
  text-transform: uppercase;
}

.site-nav a::after,
.portfolio-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.portfolio-tabs button:hover::after,
.portfolio-tabs button:focus-visible::after,
.portfolio-tabs button.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: clamp(560px, 72svh, 760px);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

body.is-ready .hero-copy h1,
body.is-ready .hero-copy .hero-rule,
body.is-ready .hero-copy p,
body.is-ready .hero-actions {
  animation: heroIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.is-ready .hero-copy .hero-rule {
  transform-origin: left;
  animation-name: ruleDraw;
  animation-delay: 300ms;
}

body.is-ready .hero-copy h1 {
  animation: heroIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both,
    neonPulse 2600ms ease-in-out 950ms infinite;
}

body.is-ready .hero-copy p {
  animation-delay: 420ms;
}

body.is-ready .hero-actions {
  animation-delay: 540ms;
}

.hero h1,
.section-block h2,
.split-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

.hero h1 {
  max-width: 5.3ch;
  padding-top: 0.08em;
  font-size: clamp(6.8rem, 13vw, 11.5rem);
  line-height: 0.82;
  text-shadow: 0 0 0 rgba(231, 84, 47, 0);
}

.hero-rule,
.title-rule {
  display: block;
  width: 78px;
  height: 3px;
  background: var(--accent);
}

.hero p,
.split-section p,
.contact-copy p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  margin-top: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  padding: 0.9rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.button-secondary {
  color: var(--ink);
  background: var(--bg);
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.82), transparent 17rem),
    linear-gradient(135deg, var(--slot), var(--slot-deep));
}

body.is-ready .image-slot {
  animation: slotIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.image-slot::before,
.image-slot::after {
  content: "";
  position: absolute;
  background: repeating-linear-gradient(
    90deg,
    rgba(83, 84, 90, 0.38) 0 5px,
    transparent 5px 10px
  );
  opacity: 0.45;
  transform-origin: center;
}

.image-slot::before {
  width: 1px;
  height: 142%;
  transform: rotate(48deg);
}

.image-slot::after {
  width: 1px;
  height: 142%;
  transform: rotate(-48deg);
}

.image-slot span {
  position: relative;
  z-index: 1;
  color: rgba(83, 84, 90, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-align: center;
}

.image-slot.has-photo {
  background: #111;
}

.image-slot.has-photo::before,
.image-slot.has-photo::after {
  display: none;
}

.image-slot.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
  will-change: transform;
}

.hero-image.has-photo img {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.045);
}

.image-slot.has-photo.portfolio-hockey img {
  object-fit: cover;
  object-position: center 44%;
}

.image-slot.has-photo.portfolio-hockey {
  background:
    radial-gradient(circle at 50% 50%, rgba(231, 84, 47, 0.08), transparent 28rem),
    #111318;
}

.image-slot.has-photo.portfolio-basketball-jv img {
  object-position: center 72%;
}

.image-slot.has-photo.portfolio-sports-dunk img,
.image-slot.has-photo.detail-sports-image img {
  object-position: center 42%;
}

.image-slot.has-photo.portfolio-sports-layup img {
  object-position: center 46%;
}

.image-slot.has-photo.portfolio-portrait-wyatt img,
.image-slot.has-photo.detail-portrait-image img {
  object-position: center 35%;
}

.hero-image {
  min-height: clamp(420px, 58vw, 620px);
}

.hero-image.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border-radius: inherit;
  border: 2px solid rgba(231, 84, 47, 0.34);
  background: none;
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.hero-ring {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-ring-track,
.hero-ring-runner {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-ring-track {
  stroke: var(--accent);
  stroke-width: 2;
}

.hero-ring-runner {
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30 70;
  stroke-dashoffset: 0;
  filter:
    drop-shadow(0 0 8px rgba(231, 84, 47, 0.88))
    drop-shadow(0 0 18px rgba(231, 84, 47, 0.44));
  animation: heroRingAround 4600ms linear infinite;
}

.split-section {
  display: grid;
  grid-template-columns: 0.42fr 0.78fr 0.58fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 4.8rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-section h2 {
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.instagram-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 126px;
  border-left: 1px solid var(--line);
}

.instagram-card a {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.instagram-icon {
  width: 34px;
  height: 34px;
  border: 3px solid var(--accent);
  border-radius: 9px;
}

.section-block {
  padding: clamp(3.4rem, 7vw, 5.3rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.section-block > h2 {
  text-align: center;
  font-size: clamp(3.5rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.neon-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neon-sign {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 0.08em;
}

.neon-word {
  display: inline-flex;
  line-height: 0.9;
}

.neon-word [data-neon-letter] {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow: none;
}

.neon-title.is-neon-lit .neon-word [data-neon-letter] {
  animation: neonLetterOn 720ms cubic-bezier(0.19, 1, 0.22, 1) var(--letter-delay, 0ms) both;
}

.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.title-rule {
  margin: 0.8rem auto clamp(2rem, 5vw, 3.2rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.service-grid article {
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-height: 190px;
  padding: 0 2rem;
  text-align: center;
}

.service-grid article + article {
  border-left: 1px solid var(--line);
}

.service-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-grid p {
  max-width: 16rem;
  font-size: 0.96rem;
}

.service-icon {
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  color: var(--accent);
}

.portrait-icon::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.portrait-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 3px;
  width: 32px;
  height: 22px;
  border: 2px solid currentColor;
  border-bottom: none;
  border-radius: 26px 26px 0 0;
}

.sports-icon::before {
  content: "";
  position: absolute;
  inset: 5px 8px 8px 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skew(-16deg) rotate(-18deg);
}

.sports-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.landscape-icon::before {
  content: "";
  position: absolute;
  inset: 12px 4px 7px;
  clip-path: polygon(0 100%, 35% 10%, 55% 66%, 72% 34%, 100% 100%);
  background: currentColor;
}

.landscape-icon::after {
  content: "";
  position: absolute;
  inset: 16px 8px 11px;
  clip-path: polygon(0 100%, 34% 18%, 50% 67%, 70% 36%, 100% 100%, 100% 86%, 72% 22%, 52% 54%, 35% 0, 0 92%);
  background: white;
}

.car-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 42px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 12px 16px 8px 8px;
}

.car-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 26px;
  height: 8px;
  border-left: 6px solid currentColor;
  border-right: 6px solid currentColor;
  border-radius: 999px;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 5.5rem);
  margin: -1rem 0 2rem;
  text-transform: uppercase;
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows:
    clamp(210px, 21vw, 300px)
    clamp(300px, 32vw, 440px)
    clamp(320px, 34vw, 460px);
  grid-template-areas:
    "one two three"
    "four four four"
    "five five five";
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.portfolio-mosaic .image-slot {
  min-height: 0;
}

.portfolio-mosaic .image-slot:nth-child(1) {
  grid-area: one;
}

.portfolio-mosaic .image-slot:nth-child(2) {
  grid-area: two;
}

.portfolio-mosaic .image-slot:nth-child(3) {
  grid-area: three;
}

.portfolio-mosaic .image-slot:nth-child(4) {
  grid-area: four;
}

.portfolio-mosaic .image-slot:nth-child(5) {
  grid-area: five;
}

.portfolio-mosaic[data-active-filter="sports"] {
  grid-template-rows:
    clamp(210px, 21vw, 300px)
    clamp(320px, 33vw, 460px);
  grid-template-areas:
    "one two three"
    "four four four";
}

.portfolio-mosaic[data-active-filter="portraits"] {
  grid-template-columns: minmax(0, min(640px, 100%));
  grid-template-rows: clamp(340px, 42vw, 560px);
  grid-template-areas: "five";
  justify-content: center;
}

.portfolio-mosaic[data-active-filter="portraits"] .image-slot:nth-child(5) {
  min-height: clamp(340px, 42vw, 560px);
}

.portfolio-mosaic .image-slot.is-hidden {
  display: none;
}

.portfolio-mosaic .image-slot.is-entering {
  animation: filterIn 240ms ease both;
}

.portfolio-entry {
  display: grid;
  justify-items: center;
  text-align: center;
}

.portfolio-entry p {
  max-width: 38rem;
  margin: -1rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.portfolio-hero {
  display: grid;
  align-items: end;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: clamp(360px, 46svh, 520px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 400;
  line-height: 0.8;
}

.portfolio-hero p {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.portfolio-category-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
  text-align: center;
}

.portfolio-category-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.85;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
}

.portfolio-photo {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #111;
  cursor: zoom-in;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.portfolio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(16, 16, 20, 0.38)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80%);
}

.portfolio-photo:hover,
.portfolio-photo:focus-visible {
  border-color: rgba(231, 84, 47, 0.46);
  box-shadow: 0 28px 80px rgba(16, 16, 20, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-4px);
}

.portfolio-photo:hover img,
.portfolio-photo:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.portfolio-photo:hover::after,
.portfolio-photo:focus-visible::after {
  animation: shutterFlash 460ms ease both;
}

.has-modal-open {
  overflow: hidden;
}

.portfolio-viewer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(16, 16, 20, 0.78);
  backdrop-filter: blur(18px);
  animation: viewerIn 220ms ease both;
}

.portfolio-viewer.is-closing {
  animation: viewerOut 220ms ease both;
}

.portfolio-viewer-frame {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1100px, 100%);
  margin: 0;
  color: white;
}

.portfolio-viewer-frame img {
  display: block;
  max-width: 100%;
  max-height: min(78svh, 760px);
  border-radius: 8px;
  opacity: 0;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  transform: scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-viewer.is-loaded .portfolio-viewer-frame img {
  opacity: 1;
  transform: scale(1);
}

.portfolio-viewer-frame figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.portfolio-viewer-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.portfolio-viewer.is-loaded .portfolio-viewer-loading {
  display: none;
}

.portfolio-viewer-close {
  position: fixed;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}

.package-card {
  --spotlight-x: 50%;
  --spotlight-y: 28%;
  display: grid;
  align-content: space-between;
  transform-origin: center;
  min-height: clamp(250px, 24vw, 340px);
  padding: clamp(1rem, 2.6vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(231, 84, 47, 0), transparent 12rem),
    radial-gradient(circle at 20% 16%, rgba(231, 84, 47, 0.08), transparent 12rem),
    #fff;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  will-change: transform;
}

.package-card:hover,
.package-card:focus-visible {
  transform: translateY(-8px) scale(1.045);
  border-color: rgba(231, 84, 47, 0.48);
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(231, 84, 47, 0.18), transparent 12rem),
    radial-gradient(circle at 20% 16%, rgba(231, 84, 47, 0.12), transparent 12rem),
    #fff;
  box-shadow: 0 28px 90px rgba(16, 16, 20, 0.13);
  z-index: 1;
}

.package-grid p,
.package-grid span {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-grid h3 {
  max-width: 15rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.8vw, 4.3rem);
  font-weight: 400;
  line-height: 0.92;
}

.package-grid span {
  color: var(--muted);
}

.instagram-preview {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: end;
}

.instagram-preview .section-kicker,
.instagram-preview h2 {
  text-align: left;
}

.instagram-preview h2 {
  margin: 0;
  max-width: 100%;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.instagram-preview p {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.instagram-live-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.instagram-slot {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.instagram-slot span {
  position: relative;
  z-index: 1;
  margin: 0.65rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  color: white;
  background: rgba(16, 16, 20, 0.72);
  font-size: clamp(0.72rem, 1.1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.instagram-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(231, 84, 47, 0.74);
  box-shadow: 0 0 0 3px rgba(231, 84, 47, 0.12), 0 10px 28px rgba(16, 16, 20, 0.06);
}

.contact-form input,
.contact-form textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.25rem;
  margin: -0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
}

.form-status.is-sending {
  color: var(--muted);
}

.form-status.is-success {
  color: #147a4a;
}

.form-status.is-error {
  color: #b23a1f;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.detail-hero,
.detail-content {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  min-height: clamp(460px, 64svh, 650px);
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.detail-hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
}

.detail-hero p {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-price {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.6vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 16%, rgba(231, 84, 47, 0.08), transparent 12rem),
    #fff;
}

.detail-price p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-price strong {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.85;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.detail-image {
  min-height: clamp(330px, 44vw, 560px);
}

.detail-list h2 {
  margin: 0 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.detail-list ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  clip-path: circle(0 at var(--origin-x, 50%) var(--origin-y, 50%));
  animation: portalReveal 420ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.booking-modal.is-closing {
  animation: portalHide 260ms ease forwards;
}

.booking-panel {
  width: min(560px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 14%, rgba(231, 84, 47, 0.1), transparent 12rem),
    #fff;
  box-shadow: 0 30px 100px rgba(16, 16, 20, 0.18);
  animation: bookingPanelIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.booking-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.booking-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.85;
}

.booking-panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-close {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal="left"] {
  transform: translateY(22px);
}

[data-reveal="right"] {
  transform: translateY(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes cursorBlink {
  0%,
  44% {
    opacity: 1;
  }

  45%,
  100% {
    opacity: 0;
  }
}

@keyframes brandCursor {
  0%,
  18%,
  42%,
  66% {
    opacity: 1;
  }

  9%,
  31%,
  55%,
  82%,
  100% {
    opacity: 0;
  }
}

@keyframes headerFocusSweep {
  0%,
  14% {
    opacity: 0;
    transform: translate3d(-72px, -50%, 0) scale(0.92);
  }

  24%,
  58% {
    opacity: 0.44;
  }

  44% {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  70%,
  100% {
    opacity: 0;
    transform: translate3d(72px, -50%, 0) scale(0.92);
  }
}

@keyframes headerFocusLock {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  28%,
  72% {
    opacity: 0.42;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ruleDraw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes slotIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes filterIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(231, 84, 47, 0);
  }

  50% {
    text-shadow:
      0 0 8px rgba(231, 84, 47, 0.45),
      0 0 18px rgba(231, 84, 47, 0.35),
      0 0 34px rgba(231, 84, 47, 0.24);
  }
}

@keyframes neonLetterOn {
  0% {
    color: transparent;
    -webkit-text-stroke-color: rgba(16, 16, 20, 0.82);
    text-shadow: none;
  }

  18% {
    color: rgba(231, 84, 47, 0.12);
    -webkit-text-stroke-color: var(--accent);
    text-shadow: 0 0 16px rgba(231, 84, 47, 0.42);
  }

  33% {
    color: transparent;
    text-shadow: none;
  }

  58%,
  100% {
    color: var(--ink);
    -webkit-text-stroke-color: rgba(231, 84, 47, 0.86);
    text-shadow:
      0 0 8px rgba(231, 84, 47, 0.34),
      0 0 20px rgba(231, 84, 47, 0.22);
  }
}

@keyframes heroRingAround {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes shutterFlash {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  42% {
    opacity: 0.46;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes slashSweep {
  0% {
    transform: skewX(-18deg) translateX(-80vw);
  }

  48% {
    transform: skewX(-18deg) translateX(82vw);
  }

  100% {
    transform: skewX(-18deg) translateX(172vw);
  }
}

@keyframes portalReveal {
  to {
    clip-path: circle(150% at var(--origin-x, 50%) var(--origin-y, 50%));
  }
}

@keyframes portalHide {
  from {
    clip-path: circle(150% at var(--origin-x, 50%) var(--origin-y, 50%));
  }

  to {
    clip-path: circle(0 at var(--origin-x, 50%) var(--origin-y, 50%));
  }
}

@keyframes bookingPanelIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes viewerIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes viewerOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.contact {
  display: grid;
  grid-template-columns: 0.75fr 0.9fr 0.72fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact h2 {
  text-align: left;
}

.contact .hero-rule {
  margin: 0.75rem 0 1.4rem;
}

.contact-copy p {
  max-width: 24rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: var(--bg);
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.connect-card {
  min-height: 260px;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
}

.connect-card h3 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.connect-card p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connect-card a {
  display: block;
  color: var(--ink);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.connect-card a + p {
  margin-top: 1.45rem;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .image-slot,
  .button,
  .package-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .package-card {
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 180ms ease,
      box-shadow 180ms ease,
      background 180ms ease;
  }

  .image-slot:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 84, 47, 0.42);
    box-shadow: 0 24px 70px rgba(16, 16, 20, 0.08);
  }

  .portfolio-mosaic .image-slot.has-photo {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform-style: preserve-3d;
  }

  .portfolio-mosaic .image-slot.has-photo:hover {
    transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-4px);
    border-color: rgba(231, 84, 47, 0.46);
    box-shadow: 0 28px 80px rgba(16, 16, 20, 0.13);
  }

  .portfolio-mosaic .image-slot.has-photo:hover img {
    transform: scale(1.035);
  }

  .portfolio-mosaic .image-slot.has-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    width: auto;
    height: auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
    opacity: 0;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .portfolio-mosaic .image-slot.has-photo:hover::after {
    animation: shutterFlash 460ms ease both;
  }

  .instagram-slot:hover img,
  .instagram-slot:focus-visible img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.03);
  }

  .instagram-slot:hover span,
  .instagram-slot:focus-visible span {
    transform: translateY(-5px);
    background: rgba(231, 84, 47, 0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body.is-loading {
    overflow: auto;
  }

  .site-loader {
    display: none;
  }

  .site-header::before {
    display: none;
  }

  .booking-modal,
  .booking-panel {
    animation: none;
    clip-path: none;
  }

  .scroll-progress {
    display: none;
  }

  .hero-image.has-photo img,
  .instagram-slot img {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .site-header::before {
    display: none;
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    display: none;
    width: min(290px, calc(100vw - (var(--gutter) * 2)));
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 24px 80px rgba(16, 16, 20, 0.12);
  }

  .site-header[data-open="true"] .site-nav {
    display: grid;
    gap: 1rem;
  }

  .site-nav a::after {
    bottom: -0.25rem;
  }

  .hero,
  .split-section,
  .contact,
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(5.5rem, 19vw, 8rem);
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-hero h1 {
    max-width: 8ch;
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .portfolio-hero {
    min-height: auto;
  }

  .portfolio-hero h1 {
    font-size: clamp(5rem, 20vw, 8rem);
  }

  .split-section {
    gap: 1.4rem;
  }

  .instagram-card {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 0;
  }

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

  .package-card {
    min-height: 220px;
  }

  .package-card:hover,
  .package-card:focus-visible {
    transform: translateY(-5px) scale(1.018);
  }

  .portfolio-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows:
      minmax(210px, 34vw)
      minmax(210px, 34vw)
      minmax(270px, 42vw)
      minmax(270px, 42vw);
    grid-template-areas:
      "one two"
      "three three"
      "four four"
      "five five";
  }

  .portfolio-mosaic[data-active-filter="sports"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows:
      minmax(210px, 34vw)
      minmax(210px, 34vw)
      minmax(270px, 42vw);
    grid-template-areas:
      "one two"
      "three three"
      "four four";
  }

  .portfolio-mosaic[data-active-filter="portraits"] {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(320px, 56vw);
    grid-template-areas: "five";
  }

  .connect-card {
    padding: 1.4rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .instagram-preview {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .instagram-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  :root {
    --gutter: 1rem;
    --radius: 10px;
  }

  .hero h1 {
    font-size: clamp(5rem, 25vw, 7rem);
  }

  .button {
    min-width: 0;
    flex: 1 1 145px;
  }

  .hero-image {
    min-height: 300px;
  }

  .section-block > h2,
  .split-section h2,
  .contact h2 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .service-grid,
  .portfolio-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "one"
      "two"
      "three"
      "four"
      "five";
  }

  .portfolio-mosaic[data-active-filter="sports"],
  .portfolio-mosaic[data-active-filter="portraits"] {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .portfolio-mosaic[data-active-filter="sports"] {
    grid-template-areas:
      "one"
      "two"
      "three"
      "four";
  }

  .portfolio-mosaic[data-active-filter="portraits"] {
    grid-template-areas: "five";
  }

  .portfolio-mosaic .image-slot {
    min-height: 250px;
  }

  .portfolio-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .portfolio-viewer {
    padding: 0.75rem;
  }

  .portfolio-viewer-frame img {
    max-height: 76svh;
  }

  .service-grid article {
    padding: 0 0 1.8rem;
    border-left: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .connect-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .connect-card h3 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .connect-card p {
    margin-bottom: 0.45rem;
  }

  .connect-card a {
    font-size: clamp(1rem, 5vw, 1.18rem);
    line-height: 1.35;
    white-space: normal;
  }

  .portfolio-tabs {
    gap: 1.3rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }

  .instagram-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-tall,
  .mosaic-wide {
    min-height: 250px;
  }
}
