:root {
  color-scheme: light;
  --cream: #f4eee5;
  --cream-soft: #faf7f2;
  --white: #fffdf9;
  --brown-950: #24130d;
  --brown-900: #321b11;
  --brown-800: #47281a;
  --brown-700: #613a27;
  --brown-500: #9a6c4b;
  --brown-300: #c7a78f;
  --brown-200: #dfcdbf;
  --brown-100: #eee1d6;
  --ink: #291912;
  --muted: #78665b;
  --pad: clamp(1.25rem, 4.5vw, 4.75rem);
  --radius-sm: 1rem;
  --radius-md: 1.75rem;
  --radius-lg: clamp(2rem, 4vw, 3.75rem);
  --shadow-soft: 0 1rem 3rem rgba(55, 28, 15, 0.1);
  --shadow-float: 0 1.15rem 3.5rem rgba(48, 26, 16, 0.17);
  font: 100%/1.5 -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--brown-500) var(--cream);
}

[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

button,
a,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #b66b38;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--brown-700);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--brown-950);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 76rem);
  transform: translateX(-50%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.45rem 0.55rem 0.45rem 1.1rem;
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.4rem;
  box-shadow: 0 0.65rem 2.4rem rgba(45, 23, 13, 0.08);
  backdrop-filter: blur(1.25rem) saturate(145%);
  -webkit-backdrop-filter: blur(1.25rem) saturate(145%);
  transition: background-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms ease-out;
}

.site-header[data-scrolled="true"] .nav-shell {
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 0.8rem 3rem rgba(45, 23, 13, 0.14);
}

.brand {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.7vw, 2.5rem);
  align-items: center;
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  color: #5d4b40;
  font-size: 0.84rem;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease-out;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1rem 0 1.2rem;
  color: var(--white);
  background: var(--brown-900);
  border-radius: 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 100ms ease-out, background-color 180ms ease-out;
}

.nav-cta:hover {
  background: var(--brown-700);
}

.nav-cta:active {
  transform: scale(0.97);
}

.nav-cta svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(26rem, 1.18fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  min-height: 100svh;
  padding: 7.5rem var(--pad) 4.5rem;
  background: var(--cream);
}

.hero-copy {
  z-index: 2;
  width: min(100%, 39rem);
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--brown-700);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero h1 {
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  line-height: 0.89;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--brown-700);
}

.hero-description {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 470;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 1.1rem;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: transform 100ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.button:active,
.circle-button:active,
.dialog-close:active {
  transform: scale(0.97);
}

.button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--white);
  background: var(--brown-900);
}

.button-primary:hover {
  background: var(--brown-700);
}

.button-secondary {
  border-color: rgba(75, 42, 26, 0.14);
  background: rgba(255, 253, 249, 0.56);
}

.button-secondary:hover {
  background: var(--white);
}

.tiny-note {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.6rem;
  color: #8b786d;
  font-size: 0.77rem;
  font-weight: 570;
}

.tiny-paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--brown-500);
  border: 1px solid var(--brown-300);
  border-radius: 50%;
  font-size: 0.32rem;
}

.hero-visual {
  position: relative;
  max-width: 48rem;
  margin-right: auto;
}

.hero-photo {
  height: min(78svh, 53rem);
  min-height: 38rem;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.glass-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(1.4rem) saturate(150%);
  -webkit-backdrop-filter: blur(1.4rem) saturate(150%);
}

.mood-card {
  top: 12%;
  left: -2.3rem;
  padding: 0.85rem 1.2rem 0.85rem 0.9rem;
  border-radius: 1.25rem;
  font-size: 0.9rem;
  font-weight: 720;
}

.mood-card small {
  display: block;
  margin-bottom: 0.04rem;
  color: #806f64;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  background: #65a45d;
  border: 3px solid rgba(101, 164, 93, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
}

.good-boy-card {
  right: -1.6rem;
  bottom: 10%;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 720;
}

.good-boy-card svg {
  width: 1.05rem;
  fill: var(--brown-700);
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: var(--pad);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #8a776d;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1px;
  overflow: hidden;
  background: var(--brown-200);
}

.scroll-line::after {
  position: absolute;
  inset: 0;
  background: var(--brown-700);
  content: "";
  transform: translateX(-100%);
  animation: scroll-hint 2.2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 15% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.section-pad {
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

.section-heading {
  max-width: 82rem;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.98;
}

.story {
  color: var(--cream-soft);
  background: var(--brown-950);
}

.story .eyebrow {
  color: var(--brown-300);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(16rem, 0.62fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 82rem;
  margin: 0 auto;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  background: var(--brown-800);
  border-radius: var(--radius-md);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-large {
  grid-row: span 2;
  min-height: 58rem;
}

.story-photo-large img {
  object-position: center 55%;
}

.story-photo-small {
  min-height: 35rem;
}

.story-photo-small img {
  object-position: center 60%;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 21rem;
  padding: clamp(2rem, 4vw, 4rem);
  color: #d8c9be;
  background: var(--brown-800);
  border-radius: var(--radius-md);
}

.story-copy p {
  max-width: 34rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.story-copy .story-lead {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.personality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.personality-list span {
  padding: 0.55rem 0.8rem;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 680;
}

.moments {
  overflow: hidden;
  background: var(--cream-soft);
}

.moments-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.moments-heading h2 {
  max-width: none;
}

.gallery-controls,
.dialog-controls {
  display: flex;
  gap: 0.65rem;
}

.circle-button,
.dialog-close {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(68, 38, 23, 0.11);
  border-radius: 50%;
  box-shadow: 0 0.4rem 1.5rem rgba(55, 28, 15, 0.06);
  cursor: pointer;
  transition: transform 100ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.circle-button:hover,
.dialog-close:hover {
  color: var(--white);
  background: var(--brown-800);
}

.circle-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.circle-button svg,
.dialog-close svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.gallery-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: flex-start;
  margin: 0 calc(var(--pad) * -1);
  padding: 0 var(--pad) 1.25rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: var(--pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.gallery-card {
  flex: 0 0 clamp(17rem, 27vw, 24rem);
  margin: 0;
  scroll-snap-align: start;
}

.gallery-card-wide {
  flex-basis: clamp(20rem, 34vw, 30rem);
}

.photo-button {
  display: block;
  width: 100%;
  height: clamp(27rem, 45vw, 40rem);
  padding: 0;
  overflow: hidden;
  background: var(--brown-100);
  border: 0;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  transition: transform 160ms ease-out;
}

.photo-button:active {
  transform: scale(0.985);
}

.photo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-button:hover img {
  transform: scale(1.025);
}

.gallery-card:nth-child(2) img,
.gallery-card:nth-child(4) img,
.gallery-card:nth-child(6) img {
  object-position: center 58%;
}

.gallery-card figcaption {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.gallery-card figcaption span {
  color: var(--brown-500);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.gallery-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 82rem;
  margin: 2.25rem auto 0;
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.drag-icon {
  display: inline-block;
  margin-right: 0.35rem;
  color: var(--brown-700);
}

.gallery-progress {
  width: min(14rem, 32vw);
  height: 2px;
  overflow: hidden;
  background: var(--brown-200);
}

.gallery-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--brown-700);
  transform: scaleX(1);
  transform-origin: left;
}

.partnerships {
  background: var(--brown-100);
}

.partnerships-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
  column-gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.partnerships-heading .eyebrow {
  grid-column: 1 / -1;
}

.partnerships-heading h2 {
  max-width: 12ch;
}

.section-summary {
  max-width: 31rem;
  margin: 0 0 0.6rem;
  color: var(--brown-700);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 82rem;
  margin: 0 auto;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 13rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--brown-950);
  background: var(--white);
  border: 1px solid rgba(70, 39, 24, 0.08);
  border-radius: var(--radius-md);
}

.metric-card::before {
  width: 2.7rem;
  height: 0.3rem;
  background: var(--brown-300);
  border-radius: 999px;
  content: "";
}

.metric-card strong {
  margin-top: auto;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.metric-card span {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 580;
}

.metric-card-accent {
  color: var(--cream-soft);
  background: var(--brown-700);
}

.metric-card-accent::before {
  background: var(--brown-200);
}

.metric-card-accent span {
  color: #e2d3c8;
}

.viral-panel {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  gap: 2rem;
  max-width: 82rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream-soft);
  background: var(--brown-950);
  border-radius: var(--radius-lg);
}

.viral-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.viral-heading .eyebrow {
  margin-bottom: 2rem;
  color: var(--brown-300);
}

.viral-heading p {
  max-width: 12rem;
  margin: 0;
  color: #d8c8bd;
  font-size: 0.82rem;
  font-weight: 620;
}

.viral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: end;
}

.viral-stats div {
  display: flex;
  flex-direction: column;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.viral-stats strong {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.viral-stats span {
  margin-top: 0.75rem;
  color: var(--brown-300);
  font-size: 0.76rem;
  font-weight: 620;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 82rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
}

.partnership-card {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
}

.partnership-card h3,
.contact-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 4.2rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.check-list,
.service-list {
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--brown-700);
  font-size: 0.92rem;
  font-weight: 570;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  color: var(--white);
  background: var(--brown-700);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 800;
}

.options-card {
  color: var(--cream-soft);
  background: var(--brown-700);
}

.options-card .eyebrow {
  color: var(--brown-200);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
}

.service-list li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.9rem 0;
  color: #f1e7df;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 610;
}

.service-list li span {
  color: var(--brown-300);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.partner-fit {
  max-width: 82rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: rgba(255, 253, 249, 0.48);
  border: 1px solid rgba(70, 39, 24, 0.08);
  border-radius: var(--radius-md);
}

.partner-fit .eyebrow {
  margin-bottom: 1.4rem;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.partner-tags span {
  padding: 0.75rem 1rem;
  color: var(--brown-800);
  background: var(--white);
  border: 1px solid rgba(70, 39, 24, 0.08);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 680;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2.5rem;
  align-items: end;
  max-width: 82rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--cream-soft);
  background: var(--brown-950);
  border-radius: var(--radius-lg);
}

.contact-panel .eyebrow {
  color: var(--brown-300);
}

.contact-panel h3 {
  max-width: 14ch;
}

.contact-panel > div:first-child > p:last-child {
  margin: 1.25rem 0 0;
  color: #cdbdb2;
  font-size: 0.88rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.contact-panel .button-cream {
  width: auto;
  margin-top: 0;
}

.text-link,
.footer-contact {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  color: var(--brown-200);
  font-size: 0.78rem;
  font-weight: 660;
}

.text-link {
  min-height: 2.6rem;
}

.text-link svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-email {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--cream-soft);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: underline;
  text-decoration-color: var(--brown-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.data-note {
  grid-column: 1 / -1;
  margin: -1rem 0 0;
  color: #9f8a7b;
  font-size: 0.66rem;
}

.favorites {
  background: var(--cream);
}

.favorites-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(20rem, 35rem));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 82rem;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background: var(--brown-800);
  border-radius: var(--radius-lg);
}

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

.bento-people {
  grid-row: 1 / 3;
}

.bento-people img {
  object-position: center 58%;
}

.bento-chair img {
  object-position: center 56%;
}

.bento-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 1.35rem;
  color: var(--cream-soft);
  background: rgba(46, 25, 16, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.35rem;
  backdrop-filter: blur(1.1rem) saturate(125%);
  -webkit-backdrop-filter: blur(1.1rem) saturate(125%);
}

.bento-label > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brown-300);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bento-label h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.bento-label p {
  margin: 0.55rem 0 0;
  color: #d9cabf;
  font-size: 0.84rem;
}

.bento-simple {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--brown-900);
  background: var(--brown-200);
}

.bento-simple .bento-label {
  position: static;
  padding: 0;
  color: var(--brown-950);
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.bento-simple .bento-label p {
  color: var(--brown-700);
}

.bento-simple .bento-label > span {
  color: var(--brown-700);
}

.line-art {
  align-self: flex-end;
  width: min(15rem, 52%);
}

.line-art svg {
  fill: none;
  stroke: var(--brown-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.closing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: min(84rem, 100svh);
  color: var(--cream-soft);
  background: var(--brown-900);
}

.closing-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
}

.closing .eyebrow {
  color: var(--brown-300);
}

.closing h2 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  line-height: 0.94;
}

.button-cream {
  margin-top: 2.5rem;
  color: var(--brown-950);
  background: var(--cream-soft);
}

.button-cream:hover {
  background: var(--brown-200);
}

.closing-photo {
  min-height: 44rem;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.closing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 8rem;
  padding: 2rem var(--pad);
  color: var(--cream);
  background: var(--brown-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: #bca99b;
  font-size: 0.72rem;
  font-weight: 550;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-contact {
  color: #cdbdb2;
  transition: color 160ms ease-out;
}

.footer-contact:hover {
  color: var(--cream-soft);
}

.photo-dialog {
  width: min(91vw, 68rem);
  max-width: none;
  padding: 0;
  overflow: visible;
  color: var(--cream-soft);
  background: transparent;
  border: 0;
  opacity: 0;
  transform: translateY(1.2rem) scale(0.975);
  transition:
    opacity 220ms ease-out,
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    display 400ms allow-discrete,
    overlay 400ms allow-discrete;
}

.photo-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .photo-dialog[open] {
    opacity: 0;
    transform: translateY(1.2rem) scale(0.975);
  }
}

.photo-dialog::backdrop {
  background: rgba(24, 12, 8, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background-color 300ms ease-out,
    backdrop-filter 300ms ease-out,
    display 400ms allow-discrete,
    overlay 400ms allow-discrete;
}

.photo-dialog[open]::backdrop {
  background: rgba(24, 12, 8, 0.78);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

@starting-style {
  .photo-dialog[open]::backdrop {
    background: rgba(24, 12, 8, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}

.dialog-shell {
  position: relative;
  overflow: hidden;
  background: var(--brown-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  box-shadow: 0 2rem 7rem rgba(17, 8, 5, 0.48);
}

.dialog-shell > img {
  width: 100%;
  height: min(74vh, 48rem);
  object-fit: contain;
  background: #1f100b;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  background: rgba(40, 21, 13, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.dialog-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem 1rem 1.5rem;
}

.dialog-footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 640;
}

.dialog-controls .circle-button {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.dialog-controls .circle-button:hover {
  color: var(--brown-950);
  background: var(--cream-soft);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 650ms ease-out, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 9rem;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero-visual {
    width: calc(100% - 1.75rem);
    max-width: none;
    margin: 0;
  }

  .hero-photo {
    height: min(75rem, 112vw);
  }

  .mood-card {
    left: 1rem;
  }

  .good-boy-card {
    right: -1.75rem;
  }

  .scroll-cue {
    display: none;
  }

  .story-layout {
    grid-template-columns: 1fr 1fr;
  }

  .story-photo-large {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 70rem;
  }

  .story-copy,
  .story-photo-small {
    min-height: 34rem;
  }

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

  .section-summary {
    margin-top: 1.5rem;
  }

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

  .viral-panel,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .viral-heading {
    flex-direction: row;
    align-items: center;
  }

  .viral-heading .eyebrow {
    margin: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(35rem, 58rem) minmax(26rem, 35rem);
  }

  .bento-people {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .closing {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .closing-copy {
    min-height: 42rem;
  }

  .closing-photo {
    height: 105vw;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 1.1rem;
    --radius-md: 1.35rem;
  }

  .site-header {
    top: 0.65rem;
    width: calc(100% - 1.3rem);
  }

  .nav-shell {
    min-height: 3.85rem;
    padding-left: 0.9rem;
    border-radius: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 3rem;
  }

  .hero {
    gap: 2.25rem;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 20vw, 6rem);
  }

  .hero-description {
    margin-top: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: calc(100% - 0.75rem);
  }

  .hero-photo {
    height: 125vw;
    min-height: 31rem;
    border-radius: 1.85rem;
  }

  .mood-card {
    top: 1rem;
    left: 1rem;
  }

  .good-boy-card {
    right: -0.75rem;
    bottom: 1.25rem;
  }

  .section-pad {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 14.5vw, 4.75rem);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-photo-large {
    grid-column: auto;
    min-height: 145vw;
  }

  .story-copy {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .story-photo-small {
    min-height: 125vw;
  }

  .moments-heading {
    display: block;
  }

  .gallery-controls {
    margin-top: 2rem;
  }

  .gallery-card,
  .gallery-card-wide {
    flex-basis: 81vw;
  }

  .photo-button {
    height: 116vw;
  }

  .gallery-footer {
    align-items: flex-end;
  }

  .gallery-footer p {
    max-width: 11rem;
  }

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

  .metric-card {
    min-height: 10.5rem;
  }

  .viral-panel {
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }

  .viral-heading {
    align-items: flex-start;
  }

  .viral-stats {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .viral-stats div {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    padding: 2rem 1.5rem;
  }

  .contact-panel {
    padding: 2.5rem 1.5rem;
  }

  .contact-actions,
  .contact-panel .button-cream,
  .text-link {
    width: 100%;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

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

  .bento-people {
    grid-column: auto;
    min-height: 140vw;
  }

  .bento-chair,
  .bento-simple {
    min-height: 110vw;
  }

  .closing-copy {
    min-height: 40rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .closing h2 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }

  .closing .button {
    width: auto;
  }

  .closing-photo {
    height: 132vw;
    min-height: 34rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .photo-dialog {
    width: calc(100vw - 1.25rem);
  }

  .dialog-shell {
    border-radius: 1.5rem;
  }

  .dialog-shell > img {
    height: 72vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-shell,
  .glass-card,
  .bento-label,
  .dialog-close {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell,
  .glass-card {
    background: var(--white);
  }

  .bento-label,
  .dialog-close {
    background: var(--brown-950);
  }
}

@media (prefers-contrast: more) {
  .nav-shell,
  .glass-card {
    background: var(--white);
    border-color: var(--brown-900);
  }

  .button-secondary,
  .circle-button {
    border-color: var(--brown-900);
  }
}
