:root {
  --ink: #16231d;
  --muted: #68766f;
  --paper: #fbfaf4;
  --cream: #eef4ee;
  --clay: #d9e7e9;
  --line: #cadbd2;
  --navy: #173d32;
  --soft-blue: #dcecf1;
  --olive: #dbe8d9;
  --warm: #d8a7ad;
  --rose: #f1d6db;
  --rose-deep: #aa6c77;
  --mist: #eaf4f4;
  --shadow: 0 24px 80px rgba(21, 57, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 214, 219, 0.7), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(220, 236, 241, 0.78), transparent 30%),
    var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 42px;
  border-bottom: 1px solid rgba(202, 219, 210, 0.82);
  background: rgba(251, 250, 244, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  text-decoration: none;
  color: var(--navy);
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--muted);
}

nav a:hover {
  color: var(--rose-deep);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(251, 250, 244, 0.98), rgba(247, 252, 249, 0.98)),
    var(--paper);
  box-shadow: var(--shadow);
}

section {
  padding: 88px 78px;
  border-bottom: 1px solid var(--line);
}

.story-strip {
  padding: 20px 0;
  overflow: hidden;
  background: var(--navy);
}

.story-strip div {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-inline: 24px;
  animation: drift 28s linear infinite;
}

.story-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f8fbf8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-34%);
  }
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 64px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 710px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.lead {
  max-width: 640px;
  margin-top: 30px;
  color: #33453b;
  font-size: 20px;
}

.hero {
  min-height: calc(100vh - 66px);
  padding-top: 72px;
}

.cover-hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 58px);
  padding: 30px 62px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 214, 219, 0.72), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(220, 236, 241, 0.94), transparent 24%),
    linear-gradient(135deg, #fbfaf4 0%, #eef7f4 58%, #dcecf1 100%);
}

.cover-hero::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 2px solid rgba(23, 61, 50, 0.12);
  border-radius: 34px;
  pointer-events: none;
}

.cover-hero::after {
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(23, 61, 50, 0.18);
  border-radius: 50%;
  background: rgba(241, 214, 219, 0.25);
  pointer-events: none;
}

.cover-nav {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 15px;
}

.cover-copy {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 18vh auto 0;
  text-align: center;
}

.cover-small {
  margin: 0 0 8px;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cover-copy h1 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(86px, 13.2vw, 178px);
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.cover-copy h1 span {
  display: block;
  margin-bottom: 8px;
  color: #9a5d68;
  font-size: clamp(42px, 5vw, 72px);
  font-style: italic;
  letter-spacing: -0.035em;
}

.cover-copy p:not(.cover-small) {
  max-width: 580px;
  margin: 24px auto 0;
  color: #31493f;
  font-size: 17px;
}

.creator-cutout {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 72px;
  width: min(300px, 24vw);
  transform: translateX(-50%);
}

.cutout-photo {
  overflow: hidden;
  border: 10px solid rgba(251, 250, 244, 0.92);
  border-radius: 46% 46% 30% 30% / 30% 30% 20% 20%;
  background: var(--mist);
  box-shadow:
    0 26px 70px rgba(23, 61, 50, 0.22),
    0 0 0 2px rgba(23, 61, 50, 0.08);
}

.cutout-photo img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.14);
}

.creator-cutout::before {
  position: absolute;
  inset: -16px;
  z-index: -1;
  content: "";
  border-radius: 48% 48% 32% 32% / 32% 32% 22% 22%;
  background: rgba(241, 214, 219, 0.56);
  transform: rotate(-5deg);
}

.hero-callout {
  position: absolute;
  z-index: 6;
  width: 178px;
  padding: 13px 14px;
  border: 1px solid rgba(202, 219, 210, 0.92);
  border-radius: 18px;
  background: rgba(251, 250, 244, 0.88);
  box-shadow: 0 16px 48px rgba(23, 61, 50, 0.1);
}

.hero-callout span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-callout p {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-callout::after {
  position: absolute;
  width: 54px;
  height: 1px;
  content: "";
  background: rgba(23, 61, 50, 0.35);
}

.callout-travel {
  left: 9%;
  top: 35%;
}

.callout-travel::after {
  right: -44px;
  top: 45%;
  transform: rotate(14deg);
}

.callout-ugc {
  right: 11%;
  top: 34%;
}

.callout-ugc::after {
  left: -48px;
  top: 48%;
  transform: rotate(-12deg);
}

.callout-dogs {
  left: 12%;
  bottom: 24%;
}

.callout-dogs::after {
  right: -45px;
  top: 36%;
  transform: rotate(-18deg);
}

.callout-tech {
  right: 9%;
  bottom: 24%;
}

.callout-tech::after {
  left: -46px;
  top: 42%;
  transform: rotate(18deg);
}

.callout-wellness {
  left: 50%;
  top: 13%;
  width: 230px;
  transform: translateX(-50%);
  text-align: center;
}

.callout-wellness::after {
  left: 50%;
  bottom: -34px;
  width: 1px;
  height: 36px;
}

.tool-card {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 150px;
  border: 1px solid rgba(23, 61, 50, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(251, 250, 244, 0.88), rgba(220, 236, 241, 0.78));
  box-shadow: 0 18px 58px rgba(23, 61, 50, 0.12);
  color: var(--navy);
  text-align: center;
}

.tool-card::before {
  width: 44px;
  height: 44px;
  content: "";
  border: 4px solid var(--navy);
  border-radius: 14px;
  box-shadow: inset 0 0 0 7px rgba(241, 214, 219, 0.8);
}

.tool-card span {
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-card strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 0.98;
}

.tool-dji {
  left: 26%;
  bottom: 78px;
  transform: rotate(-8deg);
}

.tool-iphone {
  right: 24%;
  bottom: 84px;
  transform: rotate(8deg);
}

.dog-bubble {
  position: absolute;
  z-index: 4;
  right: 22%;
  top: 17%;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 7px solid rgba(251, 250, 244, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 46px rgba(23, 61, 50, 0.14);
}

.dog-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-visual {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 72px;
  width: min(340px, 27vw);
  transform: translateX(-50%);
}

.cover-photo-wrap {
  overflow: hidden;
  border: 10px solid rgba(251, 250, 244, 0.86);
  border-radius: 42px 42px 142px 142px;
  background: rgba(220, 236, 241, 0.9);
  box-shadow: 0 28px 80px rgba(23, 61, 50, 0.2);
}

.cover-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.cover-sticker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(170, 108, 119, 0.28);
  border-radius: 999px;
  background: rgba(241, 214, 219, 0.9);
  color: #713f4a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticker-left {
  left: -58px;
  top: 24px;
  transform: rotate(-8deg);
}

.sticker-right {
  right: -72px;
  bottom: 54px;
  transform: rotate(7deg);
}

.cover-meta {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: 12px;
  max-width: 210px;
  color: var(--navy);
}

.cover-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-meta strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 0.95;
}

.cover-meta-left {
  grid-column: 1;
  grid-row: 3;
}

.cover-meta-right {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  text-align: right;
}

.cover-actions {
  position: relative;
  z-index: 4;
  justify-content: center;
  margin-top: 320px;
}

.laptop-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 66px);
  padding: 54px 58px 64px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 13% 23%, rgba(241, 214, 219, 0.82), transparent 31%),
    radial-gradient(circle at 82% 20%, rgba(139, 207, 232, 0.72), transparent 34%),
    radial-gradient(circle at 30% 80%, rgba(219, 232, 217, 0.96), transparent 38%),
    linear-gradient(135deg, #fbf4f6 0%, #edf6f1 48%, #dcecf1 100%);
}

.laptop-hero::before {
  display: none;
}

.laptop-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 22px 8px;
}

.laptop-screen {
  position: relative;
  min-height: clamp(430px, 56vw, 600px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.laptop-screen::after {
  display: none;
}

.laptop-nav {
  position: absolute;
  z-index: 7;
  top: 23px;
  left: 50%;
  display: flex;
  width: min(72%, 680px);
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  transform: translateX(-50%);
  color: #294a41;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 600;
  white-space: nowrap;
}

.laptop-kicker {
  position: absolute;
  z-index: 5;
  top: 17%;
  left: 39%;
  color: #6aa184;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: 0.01em;
  transform: rotate(13deg);
}

.name-lockup {
  position: absolute;
  z-index: 4;
  top: 24%;
  left: 37%;
  color: #6fbde0;
  font-family: "Caveat Brush", "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 0.76;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.name-lockup span,
.name-lockup strong {
  display: block;
  font-size: clamp(86px, 12vw, 162px);
  font-weight: 400;
  letter-spacing: 0;
}

.name-lockup strong {
  margin-left: 0.24em;
}

.hero-sticker {
  position: absolute;
  z-index: 6;
  left: 1.5%;
  bottom: 3%;
  width: clamp(150px, 14vw, 190px);
  margin: 0;
  filter: drop-shadow(0 18px 34px rgba(23, 61, 50, 0.26));
  transform: rotate(-1.5deg);
}

.hero-sticker::before {
  display: none;
}

.hero-sticker img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.dji-sticker {
  position: absolute;
  z-index: 6;
  right: auto;
  left: 20%;
  top: 40%;
  width: clamp(58px, 5.6vw, 78px);
  filter:
    grayscale(0.18)
    drop-shadow(0 16px 24px rgba(23, 61, 50, 0.22));
  transform: rotate(8deg);
}

.dog-sticker {
  position: absolute;
  z-index: 6;
  height: auto;
  filter: drop-shadow(0 15px 28px rgba(23, 61, 50, 0.18));
}

.dog-richie {
  left: 21%;
  bottom: 4%;
  width: clamp(58px, 6.2vw, 86px);
  transform: rotate(3deg);
}

.dog-lab {
  left: 27%;
  bottom: 5%;
  width: clamp(66px, 7vw, 98px);
  transform: rotate(-3deg);
}

.mini-label {
  position: absolute;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #2e574a;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-label span {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.mini-label span::after {
  width: 38px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: rgba(170, 108, 119, 0.48);
}

.label-left {
  left: 4%;
  bottom: 11%;
}

.label-right {
  right: 8%;
  bottom: 26%;
}

.label-right span::after {
  order: -1;
  margin-right: 10px;
  margin-left: 0;
}

.laptop-base {
  display: none;
}

.laptop-base::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 18px;
  content: "";
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(170, 178, 175, 0.55));
  transform: translateX(-50%);
}

.laptop-actions {
  position: relative;
  z-index: 3;
  justify-content: center;
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary {
  background: linear-gradient(135deg, var(--navy), #215a4a);
  color: white;
}

.secondary {
  border: 1px solid rgba(170, 108, 119, 0.28);
  background: rgba(241, 214, 219, 0.56);
  color: #713f4a;
}

.hero-media {
  position: relative;
}

.portrait-card {
  height: min(690px, 74vh);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 96px 0 0;
  background: var(--clay);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-style-card img {
  object-position: center top;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(202, 219, 210, 0.88);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(251, 250, 244, 0.94), rgba(241, 214, 219, 0.82));
  box-shadow: var(--shadow);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 22px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 42px;
}

.about-layout .section-heading {
  margin-bottom: 0;
}

.about-story-flow::after {
  display: block;
  clear: both;
  content: "";
}

.about-copy {
  min-width: 0;
  max-width: none;
  margin-bottom: 0;
}

.about-collage {
  float: left;
  display: grid;
  width: min(48%, 620px);
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 258px 258px;
  gap: 14px;
  min-height: 530px;
  margin: -18px clamp(34px, 5vw, 72px) 28px 0;
}

.about-photo {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid rgba(252, 249, 242, 0.92);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(37, 75, 66, 0.16);
}

.about-photo-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  object-position: center top;
}

.about-photo-dog {
  grid-column: 2;
  grid-row: 1;
  object-position: center center;
}

.about-photo-disney {
  grid-column: 2;
  grid-row: 2;
  object-position: center top;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-wide-copy {
  margin: 4px 0 42px;
}

.about-wide-copy p {
  max-width: none;
  column-count: 2;
  column-gap: clamp(34px, 5vw, 64px);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-facts span {
  min-height: 66px;
  padding: 15px 16px;
  border: 1px solid rgba(202, 219, 210, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 219, 235, 0.36), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 248, 0.9));
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.audience-card {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(202, 219, 210, 0.88);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(241, 214, 219, 0.72), transparent 32%),
    linear-gradient(180deg, #ffffff, #f3fbfa);
}

.audience-card div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.audience-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.audience-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.world-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.world-grid article,
.services-grid article {
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6fbfa);
}

.world-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--rose-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
}

.world-grid h3,
.services-grid h3 {
  margin-bottom: 12px;
}

.photo-portfolio-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(241, 214, 219, 0.54), transparent 26%),
    radial-gradient(circle at 92% 6%, rgba(220, 236, 241, 0.82), transparent 28%),
    linear-gradient(180deg, #fbfaf4, #eef7f4);
}

.photo-showcase-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.photo-showcase-heading h2 {
  color: var(--navy);
}

.photo-showcase-heading > p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: #4f675d;
}

.photo-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 22px;
}

.photo-showcase-card {
  min-width: 0;
}

.photo-showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(23, 61, 50, 0.14);
  border-radius: 20px;
  background: var(--soft-blue);
  box-shadow: 0 18px 46px rgba(23, 61, 50, 0.1);
}

.photo-showcase-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-showcase-contain .photo-showcase-frame {
  background: linear-gradient(180deg, #dceef5, #eaf5ef);
}

.photo-showcase-contain .photo-showcase-frame img {
  object-fit: contain;
}

.photo-showcase-meta {
  padding: 16px 2px 0;
}

.photo-showcase-meta h3 {
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.photo-showcase-meta p {
  margin-top: 6px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .photo-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .photo-showcase-heading {
    margin-bottom: 30px;
  }

  .photo-showcase-heading > p:last-child {
    font-size: 15px;
  }

  .photo-showcase-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .photo-showcase-card {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .photo-showcase-frame {
    border-radius: 18px;
  }

  .photo-showcase-meta h3 {
    font-size: 25px;
  }
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.stack-main {
  width: 74%;
  height: 580px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.stack-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 360px;
  object-fit: cover;
  border: 12px solid var(--paper);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tag-cloud span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mist), #f4f9f6);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 48px;
  padding-bottom: 48px;
  background:
    linear-gradient(135deg, rgba(23, 61, 50, 0.98), rgba(22, 70, 66, 0.96)),
    var(--navy);
}

.metric-card {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(220, 236, 241, 0.08);
}

.metric-card span {
  display: block;
  margin-bottom: 16px;
  color: #cfe5e4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.metric-card p {
  color: #e7f1ee;
  font-size: 15px;
  line-height: 1.5;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 310px);
  gap: 20px;
}

.work-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--clay);
  color: white;
  text-decoration: none;
}

.work-card.large {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(10, 14, 18, 0.72), rgba(10, 14, 18, 0.08) 62%);
}

.work-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.work-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 430px;
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

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

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.video-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 61, 50, 0.12), rgba(23, 61, 50, 0.62)),
    url("assets/day-life-cover.jpg") center / cover;
  color: white;
  text-decoration: none;
}

.video-card:nth-child(2) .video-frame {
  background:
    linear-gradient(180deg, rgba(23, 61, 50, 0.08), rgba(23, 61, 50, 0.64)),
    url("assets/interior-warm.jpg") center / cover;
}

.video-card:nth-child(3) .video-frame {
  background:
    linear-gradient(180deg, rgba(23, 61, 50, 0.06), rgba(23, 61, 50, 0.64)),
    url("assets/sf-home.jpg") center / cover;
}

.video-card:nth-child(4) .video-frame {
  background:
    linear-gradient(180deg, rgba(23, 61, 50, 0.1), rgba(23, 61, 50, 0.66)),
    url("assets/profile-early.jpg") center top / cover;
}

.video-frame span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(241, 214, 219, 0.72);
  border-radius: 999px;
  background: rgba(170, 108, 119, 0.36);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card div {
  padding: 20px;
}

.video-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.04;
}

.archive-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid rgba(170, 108, 119, 0.3);
  background: rgba(241, 214, 219, 0.34);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.services-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(241, 214, 219, 0.48), transparent 24%),
    linear-gradient(180deg, #f5faf7, #eaf4f4);
}

.services-availability {
  width: fit-content;
  margin-top: 34px;
  padding: 14px 20px;
  border: 1px solid rgba(23, 61, 50, 0.18);
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mood-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.mood-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.mood-board img:first-child {
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(23, 61, 50, 0.98), rgba(26, 75, 72, 0.98)),
    var(--navy);
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: white;
}

.contact-section p {
  max-width: 720px;
  margin-top: 24px;
  color: #e4f1ee;
}

.contact-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fbfaf4, #f8fbfa);
}

.contact-card span {
  display: block;
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card span:first-child {
  margin-top: 0;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    padding: 18px 22px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  section {
    padding: 64px 28px;
  }

  .section-grid,
  .reverse,
  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-story-layout {
    gap: 34px;
  }

  .about-collage {
    width: 52%;
    max-width: none;
    min-height: 530px;
    margin: 0 32px 26px 0;
  }

  .hero {
    min-height: auto;
  }

  .portrait-card {
    height: 620px;
  }

  .floating-note {
    right: 18px;
  }

  .cover-hero {
    min-height: auto;
    padding: 32px 28px 42px;
  }

  .cover-copy {
    margin-top: 64px;
  }

  .cover-copy h1 {
    font-size: clamp(72px, 18vw, 132px);
  }

  .creator-cutout {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(310px, 72vw);
    margin: 28px auto 0;
    transform: none;
  }

  .hero-callout {
    position: static;
    width: auto;
    transform: none;
  }

  .hero-callout::after {
    display: none;
  }

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

  .cover-nav,
  .cover-copy,
  .creator-cutout,
  .dog-bubble,
  .tool-card,
  .cover-actions {
    grid-column: 1 / -1;
  }

  .callout-travel,
  .callout-ugc,
  .callout-dogs,
  .callout-tech,
  .callout-wellness {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .dog-bubble {
    position: relative;
    right: auto;
    top: auto;
    justify-self: center;
    margin-top: 12px;
  }

  .tool-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: 150px;
    height: 116px;
  }

  .tool-dji,
  .tool-iphone {
    transform: none;
  }

  .cover-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .world-grid,
  .services-grid,
  .metrics-section,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .work-card,
  .work-card.large {
    grid-row: auto;
    height: 440px;
  }

  .laptop-hero {
    padding: 42px 22px 56px;
  }

  .laptop-stage {
    padding-inline: 0;
  }

  .laptop-screen {
    min-height: 520px;
  }

  .laptop-nav {
    width: 88%;
    gap: 12px;
  }

  .name-lockup {
    top: 24%;
    left: 35%;
  }

  .hero-sticker {
    left: 0;
    width: clamp(136px, 18vw, 166px);
  }

  .dji-sticker {
    right: auto;
    left: 18%;
    top: 48%;
    width: clamp(50px, 5.8vw, 64px);
  }

  .dog-richie {
    left: 19%;
    bottom: 4%;
    width: 66px;
  }

  .dog-lab {
    left: 27%;
    bottom: 4%;
    width: 76px;
  }

  .label-right {
    right: 5%;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  section {
    padding: 54px 18px;
  }

  .cover-hero {
    padding: 22px 16px 34px;
    grid-template-columns: 1fr;
  }

  .cover-hero::before {
    inset: 10px;
    border-radius: 28px;
  }

  .cover-hero::after {
    right: -28px;
    bottom: 100px;
    width: 118px;
    height: 118px;
  }

  .cover-nav {
    display: none;
  }

  .cover-small {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .cover-copy h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(56px, 17vw, 68px);
    line-height: 0.82;
    letter-spacing: -0.045em;
  }

  .cover-copy h1 span {
    font-size: clamp(34px, 12vw, 48px);
  }

  .cover-copy p:not(.cover-small) {
    max-width: 300px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .creator-cutout {
    width: min(250px, 72vw);
    margin-top: 18px;
  }

  .cutout-photo {
    border-width: 8px;
  }

  .hero-callout {
    padding: 12px 14px;
  }

  .hero-callout p {
    font-size: 12px;
  }

  .tool-card {
    width: 100%;
    max-width: 220px;
    height: 96px;
    margin: 0 auto;
  }

  .tool-card::before {
    width: 34px;
    height: 34px;
    border-width: 3px;
  }

  .cover-photo-wrap {
    border-width: 8px;
    border-radius: 30px 30px 100px 100px;
  }

  .cover-sticker {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }

  .sticker-left {
    left: -24px;
    top: 18px;
  }

  .sticker-right {
    right: -44px;
    bottom: 42px;
  }

  .cover-actions {
    gap: 10px;
  }

  .cover-actions .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .lead {
    font-size: 18px;
  }

  .portrait-card {
    height: 520px;
    border-radius: 0 64px 0 0;
  }

  .floating-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .about-collage {
    float: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 230px;
    min-height: auto;
    margin: 0 0 28px;
  }

  .world-grid,
  .services-grid,
  .metrics-section,
  .video-grid,
  .mood-board {
    grid-template-columns: 1fr;
  }

  .world-grid article,
  .services-grid article {
    min-height: auto;
  }

  .about-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 100%;
  }

  .about-photo-dog {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 100%;
  }

  .about-photo-disney {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 100%;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-wide-copy {
    margin-top: 8px;
  }

  .about-wide-copy p {
    column-count: 1;
  }

  .world-grid span {
    margin-bottom: 44px;
  }

  .image-stack {
    min-height: 560px;
  }

  .stack-main {
    width: 88%;
    height: 500px;
  }

  .stack-small {
    width: 52%;
    height: 260px;
  }

  .work-card,
  .work-card.large {
    height: 420px;
  }

  .work-card h3 {
    font-size: 28px;
  }

  .mood-board {
    grid-template-rows: 260px 220px 220px;
  }

  .laptop-hero {
    min-height: auto;
    padding: 28px 14px 44px;
  }

  .laptop-hero::before {
    inset: 10px;
    border-radius: 24px;
  }

  .laptop-stage {
    padding-bottom: 24px;
  }

  .laptop-screen {
    min-height: 520px;
    border-radius: 0;
  }

  .laptop-nav {
    display: none;
  }

  .laptop-kicker {
    top: 14%;
    left: 49%;
    font-size: 18px;
  }

  .name-lockup {
    top: 21%;
    left: 32%;
  }

  .name-lockup span,
  .name-lockup strong {
    font-size: clamp(50px, 16vw, 64px);
  }

  .hero-sticker {
    left: -1%;
    bottom: 5%;
    width: 120px;
  }

  .dji-sticker {
    right: auto;
    left: 31%;
    top: 49%;
    width: 44px;
  }

  .dog-richie {
    left: 24%;
    bottom: 5%;
    width: 48px;
  }

  .dog-lab {
    left: 34%;
    bottom: 5%;
    width: 56px;
  }

  .mini-label {
    font-size: 9px;
  }

  .label-left {
    left: 9%;
    bottom: 6%;
  }

  .label-right {
    right: 5%;
    bottom: 11%;
  }

  .mini-label span::after {
    width: 22px;
    margin-left: 7px;
  }

  .label-right span::after {
    margin-right: 7px;
  }

  .laptop-base {
    display: none;
  }

  .laptop-actions {
    gap: 10px;
  }

  .laptop-actions .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }
}

/* Editorial hero */
.editorial-hero {
  position: relative;
  display: block;
  min-height: 900px;
  padding: 48px 58px 44px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 14%, rgba(242, 161, 187, 0.42), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(135deg, #edf7f8 0%, #dceef5 58%, #eaf5ef 100%);
}

.editorial-hero::before {
  position: absolute;
  inset: 28px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(20, 62, 51, 0.18);
  border-radius: 34px;
  pointer-events: none;
}

.editorial-hero::after {
  position: absolute;
  right: -72px;
  bottom: -92px;
  z-index: -1;
  width: 290px;
  height: 290px;
  content: "";
  border: 54px solid rgba(21, 73, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.editorial-heading {
  position: absolute;
  z-index: 1;
  top: 72px;
  right: 52px;
  left: 52px;
  text-align: center;
}

.editorial-heading p {
  position: relative;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4px;
  color: #174a3b;
  font-family: "Caveat Brush", "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1;
  transform: translateX(-250px) rotate(-3deg);
}

.editorial-heading h1 {
  max-width: none;
  color: #df789d;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(88px, 10.4vw, 146px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.editorial-heading h1 span {
  color: #c85f87;
  font-style: italic;
}

.editorial-visual {
  position: absolute;
  z-index: 3;
  top: 245px;
  left: 50%;
  width: 520px;
  height: 610px;
  transform: translateX(-50%);
}

.editorial-person {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: auto;
  left: 50%;
  width: 320px;
  margin: 0;
  filter: drop-shadow(0 25px 34px rgba(19, 66, 53, 0.2));
  transform: translateX(-50%);
}

.editorial-person img,
.editorial-dog,
.editorial-camera {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.editorial-dog,
.editorial-camera {
  position: absolute;
  filter: drop-shadow(0 18px 28px rgba(19, 66, 53, 0.18));
}

.editorial-richie {
  z-index: 5;
  bottom: 28px;
  left: 12px;
  width: 135px;
  transform: rotate(-3deg);
}

.editorial-disney {
  z-index: 4;
  right: 4px;
  bottom: 24px;
  width: 145px;
  transform: rotate(2deg);
}

.editorial-camera {
  z-index: 2;
  top: 82px;
  right: 30px;
  width: 72px;
  transform: rotate(9deg);
}

.editorial-copy {
  position: absolute;
  z-index: 6;
  bottom: 56px;
  left: 66px;
  width: min(325px, 27vw);
}

.editorial-role {
  color: #174a3b;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 0.98;
}

.editorial-location {
  margin-top: 10px;
  color: #a44d70;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-summary {
  margin-top: 16px;
  color: #36564d;
  font-size: 15px;
  line-height: 1.55;
}

.editorial-hero .editorial-actions {
  gap: 10px;
  margin-top: 22px;
}

.editorial-hero .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.07em;
}

.editorial-hero .primary {
  background: #174a3b;
}

.editorial-hero .secondary {
  border-color: rgba(164, 77, 112, 0.35);
  background: rgba(250, 221, 230, 0.74);
}

.editorial-socials {
  position: absolute;
  z-index: 6;
  right: 66px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.editorial-handle {
  color: #a44d70;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.editorial-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #174a3b;
}

.editorial-socials a {
  color: #174a3b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-socials a:hover {
  color: #a44d70;
}

@media (max-width: 980px) {
  .editorial-hero {
    min-height: 880px;
    padding: 42px 30px;
  }

  .editorial-heading {
    top: 66px;
    right: 28px;
    left: 28px;
  }

  .editorial-heading h1 {
    font-size: clamp(72px, 12.8vw, 116px);
  }

  .editorial-heading p {
    transform: translateX(-210px) rotate(-3deg);
  }

  .editorial-visual {
    top: 220px;
    width: 460px;
    height: 620px;
  }

  .editorial-person {
    top: 0;
    bottom: auto;
    width: 300px;
  }

  .editorial-richie {
    bottom: 24px;
    left: 6px;
    width: 122px;
  }

  .editorial-disney {
    right: 0;
    bottom: 22px;
    width: 134px;
  }

  .editorial-camera {
    top: 92px;
    right: 24px;
    width: 64px;
  }

  .editorial-copy {
    bottom: 46px;
    left: 42px;
    width: 280px;
  }

  .editorial-socials {
    right: 42px;
    bottom: 96px;
  }
}

@media (max-width: 640px) {
  .editorial-hero {
    display: flex;
    min-height: auto;
    padding: 42px 18px 34px;
    flex-direction: column;
    align-items: center;
  }

  .editorial-hero::before {
    inset: 10px;
    border-radius: 26px;
  }

  .editorial-hero::after {
    right: -86px;
    bottom: 130px;
    width: 220px;
    height: 220px;
    border-width: 42px;
  }

  .editorial-heading {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    order: 1;
  }

  .editorial-heading p {
    font-size: 32px;
    transform: rotate(-3deg);
  }

  .editorial-heading h1 {
    font-size: clamp(54px, 16vw, 68px);
    line-height: 0.84;
    white-space: normal;
  }

  .editorial-heading h1 span {
    display: block;
  }

  .editorial-visual {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 356px;
    height: 430px;
    margin-top: 4px;
    order: 2;
    transform: none;
  }

  .editorial-person {
    top: auto;
    bottom: 0;
    width: 210px;
  }

  .editorial-richie {
    left: 6px;
    bottom: 16px;
    width: 86px;
  }

  .editorial-disney {
    right: 2px;
    bottom: 14px;
    width: 96px;
  }

  .editorial-camera {
    top: 102px;
    right: 38px;
    width: 46px;
  }

  .editorial-copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 350px;
    margin-top: 14px;
    order: 3;
    text-align: center;
  }

  .editorial-role {
    font-size: 30px;
  }

  .editorial-location {
    font-size: 10px;
  }

  .editorial-summary {
    font-size: 14px;
  }

  .editorial-hero .editorial-actions {
    justify-content: center;
  }

  .editorial-socials {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    order: 4;
  }
}

@media (min-width: 641px) and (max-height: 800px) {
  .editorial-hero {
    min-height: calc(100vh - 61px);
    padding: 28px 40px 24px;
  }

  .editorial-hero::before {
    inset: 22px 28px;
  }

  .editorial-heading {
    top: 30px;
    right: 28px;
    left: 28px;
  }

  .editorial-heading p {
    font-size: 38px;
    transform: translateX(-180px) rotate(-3deg);
  }

  .editorial-heading h1 {
    font-size: clamp(92px, 12.4vw, 116px);
  }

  .editorial-visual {
    top: 145px;
    width: 430px;
    height: 500px;
  }

  .editorial-person {
    top: 20px;
    bottom: auto;
    width: 280px;
  }

  .editorial-richie {
    bottom: -20px;
    left: 20px;
    width: 106px;
  }

  .editorial-disney {
    right: -15px;
    bottom: -22px;
    width: 118px;
  }

  .editorial-camera {
    top: 178px;
    right: 42px;
    width: 52px;
  }

  .editorial-copy {
    bottom: 22px;
    left: 42px;
    width: 250px;
  }

  .editorial-role {
    font-size: 36px;
  }

  .editorial-location {
    margin-top: 9px;
    font-size: 11px;
  }

  .editorial-summary {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .editorial-hero .editorial-actions {
    gap: 7px;
    margin-top: 14px;
  }

  .editorial-hero .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 10px;
  }

  .editorial-socials {
    right: 42px;
    bottom: 104px;
  }

  .editorial-handle {
    font-size: 24px;
  }

  .editorial-socials a {
    font-size: 13px;
  }
}

/* Selected video work */
.video-showcase-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(220, 236, 241, 0.7), transparent 24%),
    radial-gradient(circle at 6% 96%, rgba(241, 214, 219, 0.46), transparent 24%),
    #fbfaf4;
}

.video-showcase-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.video-showcase-heading h2 {
  color: var(--navy);
}

.video-showcase-heading > p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: #4f675d;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 22px;
}

.video-showcase-card {
  min-width: 0;
}

.video-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 61, 50, 0.14);
  border-radius: 20px;
  background: var(--soft-blue);
  box-shadow: 0 18px 46px rgba(23, 61, 50, 0.1);
  cursor: pointer;
}

.video-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(10, 35, 28, 0.16));
  transition: background 180ms ease;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.video-cover:hover img,
.video-cover:focus-visible img {
  transform: scale(1.025);
}

.video-cover:hover::after,
.video-cover:focus-visible::after {
  background: linear-gradient(180deg, rgba(23, 61, 50, 0.03), rgba(10, 35, 28, 0.24));
}

.video-cover:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 4px;
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(224, 117, 153, 0.92);
  box-shadow: 0 12px 28px rgba(35, 31, 34, 0.2);
  transform: translate(-50%, -50%);
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid white;
  content: "";
}

.video-cover:hover .video-play,
.video-cover:focus-visible .video-play {
  background: var(--navy);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-showcase-meta {
  padding: 15px 2px 0;
}

.video-showcase-meta h3 {
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.video-showcase-meta p {
  margin-top: 6px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 22, 0.82);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 430px);
  padding: 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: #fbfaf4;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
}

.video-modal-frame iframe,
.video-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-frame video {
  background: #0b1713;
  object-fit: contain;
}

.video-modal-close {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--rose-deep);
  color: white;
  cursor: pointer;
  font: 400 30px/1 "Inter", sans-serif;
  place-items: center;
}

.video-modal-close:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

#video-modal-title {
  margin-top: 14px;
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
}

body.video-modal-open {
  overflow: hidden;
}

/* Services page */
.services-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 214, 219, 0.62), transparent 27%),
    radial-gradient(circle at 8% 38%, rgba(220, 236, 241, 0.76), transparent 30%),
    linear-gradient(180deg, #fbfaf4 0%, #f2f8f5 100%);
}

.services-heading {
  max-width: 900px;
  margin-bottom: 46px;
}

.services-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-offer {
  display: flex;
  min-height: 470px;
  padding: 30px 28px;
  border: 1px solid rgba(23, 61, 50, 0.15);
  border-radius: 30px;
  flex-direction: column;
  justify-content: space-between;
}

.service-offer-video {
  background: linear-gradient(160deg, #dcecf1, #edf6f5);
}

.service-offer-location {
  background: linear-gradient(160deg, #f1d6db, #f9e9ea);
}

.service-offer-photo {
  border-color: rgba(23, 61, 50, 0.24);
  background: linear-gradient(160deg, #fbfaf4, #eaf3e8);
}

.service-number {
  color: var(--rose-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.service-offer h3 {
  margin-bottom: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
}

.service-offer p {
  margin: 0 0 22px;
  color: #4f635b;
  font-size: 15px;
  line-height: 1.6;
}

.service-offer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-offer li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.service-offer li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  content: "";
}

.services-extras {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 30px;
  align-items: center;
  margin: 34px 0 46px;
}

.services-extras > p {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-extras > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-extras span {
  padding: 10px 14px;
  border: 1px solid rgba(23, 61, 50, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.services-process {
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 236, 241, 0.17), transparent 32%),
    var(--navy);
  color: white;
}

.services-process-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

.services-process .eyebrow {
  margin-top: 7px;
  color: #f1d6db;
}

.services-process h3 {
  max-width: 650px;
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 4vw, 47px);
  font-weight: 500;
  line-height: 1.04;
}

.services-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.services-process li {
  min-height: 158px;
  padding: 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.services-process li:first-child {
  padding-left: 0;
}

.services-process li:last-child {
  padding-right: 0;
  border-right: 0;
}

.services-process li > span {
  display: block;
  margin-bottom: 20px;
  color: #f1d6db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-process strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.services-process li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: var(--rose);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.services-cta:hover {
  background: white;
  transform: translateY(-2px);
}

.services-cta:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .services-offers {
    grid-template-columns: 1fr;
  }

  .service-offer {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 26px;
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .services-heading {
    margin-bottom: 32px;
  }

  .services-heading > p:last-child {
    font-size: 15px;
  }

  .service-offer {
    display: flex;
    min-height: auto;
    padding: 24px 22px;
    gap: 54px;
  }

  .service-number {
    font-size: 40px;
  }

  .service-offer h3 {
    font-size: 28px;
  }

  .services-extras {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .services-process {
    padding: 30px 22px;
    border-radius: 26px;
  }

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

  .services-process li,
  .services-process li:first-child,
  .services-process li:last-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
  }

  .services-process li > span {
    margin-bottom: 10px;
  }

  .services-cta {
    width: 100%;
  }
}

/* Contact page */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 56px;
  align-items: start;
  background:
    radial-gradient(circle at 6% 12%, rgba(220, 236, 241, 0.88), transparent 31%),
    radial-gradient(circle at 94% 86%, rgba(241, 214, 219, 0.56), transparent 30%),
    linear-gradient(180deg, #fbfaf4, #eef6f2);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--navy);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(23, 61, 50, 0.18);
}

.contact-details span,
.contact-form label > span,
.contact-form-heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  border: 1px solid rgba(170, 108, 119, 0.23);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 236, 241, 0.72), transparent 32%),
    linear-gradient(160deg, #f7e2e5, #fbf2ef);
  box-shadow: 0 22px 60px rgba(23, 61, 50, 0.1);
}

.contact-form-heading {
  margin-bottom: 6px;
}

.contact-form-heading h3 {
  color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.contact-form label {
  display: block;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 61, 50, 0.23);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: #89958f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 4px rgba(23, 61, 50, 0.09);
}

.contact-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-submit:hover {
  background: #245846;
  transform: translateY(-2px);
}

.contact-submit:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 3px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-form .contact-privacy,
.contact-form .contact-status {
  margin: -8px 0 0;
  color: #68766f;
  font-size: 11px;
  line-height: 1.5;
}

.contact-form .contact-status:empty {
  display: none;
}

.contact-form .contact-status.is-success {
  color: #1f6647;
  font-weight: 700;
}

.contact-form .contact-status.is-error {
  color: #9b3b4c;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 44px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.site-footer > a {
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  text-align: center;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.site-footer div a {
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--rose);
}

@media (max-width: 980px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer div {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .contact-form {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-details {
    margin-top: 34px;
  }

  .site-footer {
    padding: 28px 18px;
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .video-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .video-showcase-heading {
    margin-bottom: 30px;
  }

  .video-showcase-heading > p:last-child {
    font-size: 15px;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .video-showcase-card {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .video-cover {
    border-radius: 18px;
  }

  .video-play {
    width: 56px;
    height: 56px;
  }

  .video-showcase-meta h3 {
    font-size: 25px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal-dialog {
    width: min(88vw, 390px);
  }

  .video-modal-close {
    top: -12px;
    right: -10px;
  }
}
