:root {
  --ink: #171719;
  --muted: #626762;
  --paper: #f3f5f2;
  --white: #fffdf8;
  --sage: #6f806f;
  --rust: #b2563d;
  --blue: #263f63;
  --teal: #214f4b;
  --clay: #dfb7a3;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 4.5vw;
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(255, 250, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 0.2rem 0;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0.58rem 0.9rem !important;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 253, 248, 0.16);
  color: inherit;
}

.site-header.is-solid .nav-cta:hover,
.site-header.is-solid .nav-cta:focus-visible,
.site-header.is-open .nav-cta:hover,
.site-header.is-open .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--ink);
}

.hero-media img {
  position: absolute;
  object-fit: cover;
  filter: saturate(0.96);
}

.hero-media img:first-child {
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-drift 18s var(--ease-soft) forwards;
  object-position: center 48%;
  transform: scale(1.035);
  transform-origin: center;
}

.hero-media img:not(:first-child) {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.4) 34%, rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 9vw));
  margin-left: 4.5vw;
  padding: 8.5rem 0 5rem;
}

.hero-content > * {
  opacity: 0;
  animation: hero-content-in 820ms var(--ease-out) forwards;
  transform: translateY(22px);
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 330ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c6a7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 5.7rem);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 500;
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 1.65rem;
  color: rgba(255, 250, 244, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 470px;
  margin-top: 1.6rem;
}

.hero-tags span {
  border: 1px solid rgba(255, 250, 244, 0.48);
  border-radius: 4px;
  background: rgba(255, 250, 244, 0.1);
  color: rgba(255, 250, 244, 0.84);
  padding: 0.42rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.76rem 1.05rem;
  font-weight: 700;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 23, 25, 0.14);
}

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

.button-secondary {
  border-color: currentColor;
  color: inherit;
}

.section {
  overflow-x: clip;
  padding: 7rem 4.5vw;
}

@supports not (overflow: clip) {
  .section {
    overflow-x: hidden;
  }
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-note,
.text-link {
  color: var(--muted);
  font-size: 0.98rem;
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--rust);
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 760ms var(--ease-soft),
    filter 760ms var(--ease-soft),
    transform 760ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll[data-reveal="fade-left"] {
  transform: translate3d(0, 24px, 0);
}

.reveal-on-scroll[data-reveal="fade-right"] {
  transform: translate3d(0, 24px, 0);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@keyframes hero-drift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.2%, -1.2%, 0);
  }
}

@keyframes hero-content-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  background: var(--paper);
  padding-bottom: 6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-media {
  position: sticky;
  top: 100px;
}

.about-media-header {
  margin-bottom: 1.5rem;
}

.about-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.about-tagline {
  color: var(--rust);
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(23, 23, 25, 0.12);
  transition:
    box-shadow 420ms var(--ease-out),
    transform 520ms var(--ease-out);
}

.about-media:hover img {
  box-shadow: 0 38px 90px rgba(23, 23, 25, 0.18);
  transform: translateY(-4px) scale(1.01);
}

.about-copy {
  max-width: 620px;
}

.about-copy h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-text-box {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(23, 23, 25, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--ease-out);
}

.about-copy:hover .about-text-box {
  border-color: rgba(178, 86, 61, 0.22);
  box-shadow: 0 24px 64px rgba(23, 23, 25, 0.1);
  transform: translateY(-2px);
}

.about-text-box p:last-of-type {
  margin-bottom: 0;
}

.about-actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-button {
  background: #333333;
  color: var(--white);
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: background 200ms ease;
}

.about-button:hover {
  background: #1a1a1a;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-media {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .about-section {
    padding-top: 5rem;
  }
  
  .about-copy h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .about-text-box {
    padding: 1.75rem;
  }
}

.intro-section {
  background: var(--white);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: 4rem;
  align-items: start;
}

.intro-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.love-stories-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(255, 253, 248, 0.96)),
    var(--paper);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.editorial-heading {
  align-items: start;
}

.editorial-heading .section-note {
  max-width: 430px;
}

.featured-stories-grid {
  display: grid;
  gap: 1.2rem;
}

.featured-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(23, 23, 25, 0.11);
  transition:
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease-out);
}

.featured-story-card:hover {
  border-color: rgba(178, 86, 61, 0.26);
  box-shadow: 0 26px 78px rgba(23, 23, 25, 0.16);
  transform: translateY(-3px);
}

.featured-story-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  background: #eeede8;
}

.featured-story-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  color: inherit;
  cursor: zoom-in;
  padding: 0;
}

.featured-story-image::after,
.story-card-media::after,
.client-gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(23, 23, 25, 0.12)),
    radial-gradient(circle at 50% 28%, rgba(255, 253, 248, 0.16), transparent 48%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.featured-story-image:focus-visible,
.story-card-media:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.featured-story-image img,
.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 320ms ease,
    opacity 220ms ease,
    transform 520ms var(--ease-out);
}

.featured-story-image:hover img,
.featured-story-image:focus-visible img {
  opacity: 0.9;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.featured-story-image:hover::after,
.featured-story-image:focus-visible::after,
.story-card:hover .story-card-media::after,
.story-card-media:focus-visible::after,
.client-gallery-tile:hover::after,
.client-gallery-tile:focus-visible::after {
  opacity: 1;
}

.featured-story-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 3rem);
}

.featured-story-meta {
  margin-bottom: 0.75rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-story-body h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
}

.featured-story-session,
.client-gallery-session {
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.featured-story-body > p:not(.featured-story-meta, .featured-story-session) {
  color: var(--muted);
  font-size: 1.02rem;
}

.featured-story-footer {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.client-pride-badges,
.story-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.client-pride-badges span,
.story-card-badges span {
  border: 1px solid rgba(178, 86, 61, 0.22);
  border-radius: 4px;
  background: rgba(178, 86, 61, 0.08);
  color: var(--rust);
  padding: 0.34rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.client-pride-badges span:hover,
.story-card-badges span:hover {
  border-color: rgba(178, 86, 61, 0.38);
  background: rgba(178, 86, 61, 0.12);
  transform: translateY(-1px);
}

.story-link {
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.story-link:hover,
.story-link:focus-visible {
  color: var(--rust);
  transform: translateX(2px);
}

.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid rgba(23, 23, 25, 0.08);
}

.testimonial-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.client-galleries-section {
  background: #f6f5f1;
}

.client-gallery-list {
  display: grid;
  gap: clamp(1.4rem, 2.2vw, 2.25rem);
}

.client-gallery {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 25, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 58px rgba(23, 23, 25, 0.1);
  transition:
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease-out);
}

.client-gallery:hover {
  border-color: rgba(33, 79, 75, 0.22);
  box-shadow: 0 26px 76px rgba(23, 23, 25, 0.15);
  transform: translateY(-3px);
}

.client-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 1.5rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.2rem, 2.2vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(243, 245, 242, 0.86)),
    var(--white);
}

.client-gallery-meta {
  margin-bottom: 0.6rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.client-gallery h3 {
  margin-bottom: 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
}

.client-gallery-header p:not(.client-gallery-meta, .client-gallery-count, .client-gallery-session) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.02rem;
}

.client-gallery-header .client-gallery-session {
  max-width: 700px;
  color: var(--blue);
}

.client-gallery-aside {
  display: grid;
  justify-items: end;
  gap: 0.75rem;
}

.client-gallery-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.client-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 0.8vw, 0.78rem);
  padding: clamp(0.5rem, 0.8vw, 0.78rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.42), rgba(23, 23, 25, 0.04)),
    #eeede8;
}

.client-gallery-tile {
  position: relative;
  display: block;
  flex: 1 1 clamp(170px, 22%, 300px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  cursor: zoom-in;
  padding: 0;
}

.client-gallery-tile:first-child,
.client-gallery-tile:nth-child(6n) {
  flex-basis: clamp(320px, 46%, 680px);
  aspect-ratio: 16 / 10;
}

.client-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition:
    filter 320ms ease,
    opacity 220ms ease,
    transform 520ms var(--ease-out);
}

.client-gallery-tile:hover img,
.client-gallery-tile:focus-visible img {
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.client-gallery-tile:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

@media (min-width: 981px) {
  .client-galleries-section > .section-heading,
  .client-gallery-list {
    width: min(100%, 1320px);
    margin-inline: auto;
  }

  .client-gallery-list {
    gap: clamp(1.15rem, 1.6vw, 1.65rem);
  }

  .client-gallery {
    border-color: rgba(23, 23, 25, 0.1);
    box-shadow: 0 16px 48px rgba(23, 23, 25, 0.08);
  }

  .client-gallery:hover {
    box-shadow: 0 22px 62px rgba(23, 23, 25, 0.12);
    transform: translateY(-2px);
  }

  .client-gallery-header {
    grid-template-columns: minmax(0, 1fr) minmax(260px, max-content);
    gap: clamp(1.2rem, 2vw, 2rem);
    padding: clamp(1.15rem, 1.7vw, 1.65rem);
  }

  .client-gallery h3 {
    font-size: clamp(1.75rem, 2.35vw, 2.65rem);
  }

  .client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.58rem, 0.72vw, 0.78rem);
    padding: clamp(0.58rem, 0.72vw, 0.78rem);
  }

  .client-gallery-tile,
  .client-gallery-tile:first-child,
  .client-gallery-tile:nth-child(6n) {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 5;
    flex: none;
  }

  .client-gallery-tile {
    border: 1px solid rgba(23, 23, 25, 0.06);
    box-shadow: 0 8px 22px rgba(23, 23, 25, 0.05);
    transition:
      border-color 220ms ease,
      box-shadow 260ms ease,
      transform 260ms var(--ease-out);
  }

  .client-gallery-tile:hover,
  .client-gallery-tile:focus-visible {
    border-color: rgba(178, 86, 61, 0.18);
    box-shadow: 0 14px 34px rgba(23, 23, 25, 0.1);
    transform: translateY(-2px);
  }

  .client-gallery-tile:hover img,
  .client-gallery-tile:focus-visible img {
    transform: scale(1.025);
  }
}

@media (min-width: 1181px) {
  .client-gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-gallery--duo .client-gallery-grid,
  .client-gallery--compact .client-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-gallery--balanced .client-gallery-grid,
  .client-gallery--quad .client-gallery-grid,
  .client-gallery--full .client-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-gallery-tile,
  .client-gallery-tile:first-child,
  .client-gallery-tile:nth-child(6n) {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 5;
    flex: none;
  }

  .client-gallery--duo .client-gallery-tile {
    aspect-ratio: 16 / 10;
  }

  .client-gallery--small .client-gallery-tile {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 981px) {
  .client-gallery--duo .client-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-gallery--compact .client-gallery-grid,
  .client-gallery--balanced .client-gallery-grid,
  .client-gallery--quad .client-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-gallery--small .client-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 0.9vw, 0.9rem);
    padding: clamp(0.65rem, 0.9vw, 0.9rem);
  }

  .client-gallery--duo .client-gallery-tile {
    aspect-ratio: 16 / 10;
  }

  .client-gallery--small .client-gallery-tile {
    aspect-ratio: 1 / 1;
  }
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
  background: var(--white);
}

.experience-media {
  display: grid;
  min-height: clamp(460px, 42vw, 560px);
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.68fr);
  gap: 1rem;
}

.experience-media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--paper);
  object-fit: cover;
  object-position: center;
  transition:
    filter 360ms ease,
    transform 520ms var(--ease-out);
}

.experience-media:hover img {
  filter: saturate(1.03) contrast(1.02);
}

.experience-media:hover img:first-child {
  transform: translateY(-4px) scale(1.01);
}

.experience-media:hover img:last-child {
  transform: translateY(4px) scale(1.01);
}

.experience-media img:first-child {
  object-position: 52% 56%;
}

.experience-media img:last-child {
  object-position: 50% 62%;
}

.experience-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
}

.feature-list span {
  color: var(--rust);
  font-weight: 800;
}

.feature-list p {
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 1rem;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition:
    box-shadow 360ms ease,
    transform 360ms var(--ease-out);
}

.story-card:hover {
  box-shadow: 0 30px 78px rgba(18, 18, 18, 0.22);
  transform: translateY(-3px);
}

.story-card-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition:
    filter 320ms ease,
    opacity 260ms ease,
    transform 520ms var(--ease-out);
}

.story-card:hover .story-card-media img,
.story-card-media:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  opacity: 0.96;
  transform: scale(1.045);
}

.story-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.15rem;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.story-card-badges {
  margin-bottom: 0.8rem;
}

.story-card-badges span {
  border-color: rgba(255, 250, 244, 0.28);
  background: rgba(255, 250, 244, 0.14);
  color: rgba(255, 250, 244, 0.9);
}

.story-card-body p {
  margin-bottom: 0.35rem;
  color: rgba(255, 250, 244, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-card-body h3 {
  margin-bottom: 0;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 4rem;
  background: var(--teal);
  color: var(--white);
}

.offer-section .section-kicker,
.approach-section .section-kicker,
.contact-section .section-kicker {
  color: var(--clay);
}

.offer-copy {
  align-self: center;
}

.offer-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.74);
}

.offer-copy .button {
  margin-top: 0.8rem;
}

.offer-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.18);
}

.offer-steps div {
  min-height: 210px;
  padding: 1.25rem;
  background: var(--teal);
  transition:
    background 220ms ease,
    transform 240ms var(--ease-out);
}

.offer-steps div:hover {
  background: #255a55;
  transform: translateY(-2px);
}

.offer-steps span {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--clay);
  font-weight: 800;
}

.offer-steps h3 {
  margin-bottom: 0.65rem;
}

.offer-steps p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.7);
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 5rem;
  background: var(--ink);
  color: var(--white);
}

.approach-copy p:last-child {
  max-width: 620px;
  color: rgba(255, 250, 244, 0.74);
}

.approach-list {
  display: grid;
  gap: 1px;
  align-self: start;
  background: rgba(255, 250, 244, 0.16);
}

.approach-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--ink);
  transition:
    background 220ms ease,
    transform 240ms var(--ease-out);
}

.approach-list div:hover {
  background: #202024;
  transform: translateY(-2px);
}

.approach-list span {
  color: #f0c6a7;
  font-weight: 800;
}

.approach-list h3 {
  margin-bottom: 0.3rem;
}

.approach-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.7);
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 245, 241, 0.98)),
    var(--white);
}

.services-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(178, 86, 61, 0.07), transparent 26%, rgba(33, 79, 75, 0.07) 100%),
    linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.6));
  pointer-events: none;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

.services-heading {
  margin-bottom: 1.1rem;
}

.services-heading .section-note {
  max-width: 520px;
}

.services-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.services-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 25, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 16px 46px rgba(23, 23, 25, 0.08);
  transition:
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease-out);
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(178, 86, 61, 0.12), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(33, 79, 75, 0.12), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(178, 86, 61, 0.28);
  box-shadow: 0 28px 74px rgba(23, 23, 25, 0.15);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card-media {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--ink);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  transition:
    filter 420ms ease,
    opacity 320ms ease,
    transform 700ms var(--ease-out);
}

.service-card:hover .service-card-media img,
.service-card:focus-within .service-card-media img {
  filter: saturate(1.04) contrast(1.02);
  opacity: 1;
  transform: scale(1.045);
}

.service-card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 4px;
  background: rgba(23, 23, 25, 0.7);
  color: var(--white);
  padding: 0.34rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.service-card-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  text-transform: uppercase;
}

.service-card-subtitle {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.service-card-rate {
  margin: 0;
  color: var(--rust);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-features {
  display: grid;
  gap: 0.62rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.service-card-features li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card-features li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--rust);
  content: "";
  transform: translateY(-50%);
}

.service-card-note {
  margin: auto 0 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(33, 79, 75, 0.24);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  padding: 0.72rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.service-card-link:hover,
.service-card-link:focus-visible {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--white);
  transform: translateY(-2px);
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  border: 1px solid rgba(23, 23, 25, 0.12);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  box-shadow: 0 20px 58px rgba(23, 23, 25, 0.16);
}

.services-cta p {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 4rem;
  align-items: start;
  background: #eef3f4;
}

.privacy-copy p:last-child {
  max-width: 640px;
  color: var(--muted);
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 23, 25, 0.16);
}

.privacy-points p {
  min-height: 120px;
  margin: 0;
  padding: 1.2rem;
  background: #eef3f4;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 800;
  transition:
    background 220ms ease,
    transform 240ms var(--ease-out);
}

.privacy-points p:hover {
  background: #e4ecee;
  transform: translateY(-2px);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(23, 23, 25, 0.1);
  padding: 1rem 0;
}

.faq-item summary {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.instagram-section {
  background: #e9eee8;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feed-card {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease-out);
}

.feed-card:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.feed-card:hover,
.feed-card:focus-visible {
  border-color: rgba(178, 86, 61, 0.24);
  box-shadow: 0 18px 46px rgba(23, 23, 25, 0.12);
  transform: translateY(-3px);
}

.feed-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}

.feed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 520ms var(--ease-out);
}

.feed-card:hover .feed-media img,
.feed-card:focus-visible .feed-media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.feed-badge {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  border-radius: 4px;
  background: rgba(23, 23, 23, 0.76);
  color: var(--white);
  padding: 0.22rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.feed-body {
  padding: 1rem;
}

.feed-body p {
  display: -webkit-box;
  min-height: 4.8em;
  margin-bottom: 0.9rem;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.feed-date,
.feed-loading {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.feed-loading {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  min-height: 640px;
  background: var(--ink);
  color: var(--white);
}

.contact-media {
  min-height: 520px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 720ms var(--ease-out);
}

.contact-section:hover .contact-media img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.015);
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5vw;
}

.contact-content p {
  color: rgba(255, 250, 244, 0.74);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 4px;
  background: rgba(23, 23, 25, 0.4);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 200ms ease, background 200ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(23, 23, 25, 0.8);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: max-content;
  margin-top: 0.8rem;
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.3rem;
}

.seo-content-section {
  background: var(--white);
  text-align: center;
}

.seo-copy {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 4.5vw;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--white);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  gap: 1rem;
  align-items: center;
  animation: lightbox-in 260ms var(--ease-out);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

.lightbox-figure {
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-figure figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  color: rgba(255, 253, 248, 0.8);
}

.lightbox-figure figcaption span:first-child {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.lightbox-close,
.lightbox-control {
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  right: 76px;
  top: -3.4rem;
  min-height: 42px;
  padding: 0 0.85rem;
}

.lightbox-control {
  min-height: 54px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-control:hover,
.lightbox-control:focus-visible {
  background: rgba(255, 253, 248, 0.18);
}

.lightbox-control:disabled {
  cursor: default;
  opacity: 0.38;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
    padding: 0 1rem;
    background: rgba(255, 250, 244, 0.96);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(14px);
  }

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

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    min-height: calc(100vh - 66px);
    min-height: calc(100svh - 66px);
    max-height: calc(100vh - 66px);
    max-height: calc(100svh - 66px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    color: var(--ink);
    padding: 1rem max(1rem, env(safe-area-inset-right)) calc(1rem + env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
    min-height: max(680px, 100svh);
  }

  .hero-media img:first-child {
    animation: none;
    object-position: 52% 50%;
    transform: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll[data-reveal="fade-left"],
  .reveal-on-scroll[data-reveal="fade-right"] {
    filter: none;
    transform: translate3d(0, 18px, 0);
    transition:
      opacity 520ms var(--ease-soft),
      transform 520ms var(--ease-soft);
  }

  h1 {
    font-size: clamp(3.2rem, 10vw, 4.5rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .intro-grid,
  .featured-story-card,
  .client-gallery-header,
  .experience-section,
  .offer-section,
  .approach-section,
  .privacy-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .featured-story-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-gallery-aside {
    justify-items: start;
  }

  .client-gallery-grid {
    gap: 0.55rem;
  }

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

  .contact-media {
    min-height: 420px;
  }
}

@media (hover: none) {
  .hero {
    min-height: 100vh;
    min-height: max(680px, 100svh);
  }

  .hero-media img:first-child {
    animation: none;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100vh;
    min-height: max(620px, 100svh);
    align-items: end;
  }

  .hero-media {
    display: block;
  }

  .hero-media img {
    inset: 0;
    width: 100%;
    height: 100%;
    animation: none;
    transform: none;
  }

  .hero-media img:first-child,
  .hero-media img:nth-child(n + 3) {
    display: none;
  }

  .hero-media img:nth-child(2) {
    display: block;
    object-position: 52% 48%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  }

  .hero-content {
    width: min(100%, 30rem);
    margin-left: 0;
    padding: 2.5rem max(1.1rem, env(safe-area-inset-right)) clamp(1.5rem, 5svh, 2.5rem)
      max(1.1rem, env(safe-area-inset-left));
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2.35rem, 10.2vw, 3.1rem);
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    max-width: 25rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .button {
    flex: 1 1 9.75rem;
    min-width: 0;
    min-height: 48px;
    padding: 0.72rem 0.86rem;
    text-align: center;
  }

  .hero-tags {
    width: 100%;
    max-width: min(100%, 24rem);
    gap: 0.45rem;
    margin-top: 1.15rem;
  }

  .hero-tags span {
    max-width: 100%;
    padding: 0.36rem 0.5rem;
    font-size: clamp(0.68rem, 2.6vw, 0.78rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .intro-section {
    padding-bottom: 3rem;
  }

  .love-stories-section {
    padding-top: 3rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .story-grid,
  .feed-grid,
  .featured-stories-grid,
  .client-gallery-list,
  .offer-steps,
  .service-grid,
  .privacy-points,
  .testimonials-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-auto-rows: 330px;
  }

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

  .featured-story-media {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-gallery-list {
    gap: 1.2rem;
  }

  .client-gallery-grid {
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .client-gallery-tile {
    flex-basis: clamp(135px, calc(50% - 0.45rem), 260px);
  }

  .client-gallery-tile:first-child,
  .client-gallery-tile:nth-child(6n) {
    flex-basis: clamp(135px, calc(50% - 0.45rem), 260px);
    aspect-ratio: 4 / 5;
  }

  .client-gallery-header {
    gap: 0.6rem;
    padding: 1rem;
  }

  .services-intro {
    margin-bottom: 1.3rem;
  }

  .service-card-media {
    aspect-ratio: 4 / 3;
  }

  .service-card-body {
    padding: 1.15rem;
  }

  .services-cta {
    align-items: stretch;
  }

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

  .approach-section {
    gap: 2.5rem;
  }

  .experience-media {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .experience-media img {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .experience-media img:last-child {
    display: block;
  }

  .offer-steps div,
  .privacy-points p {
    min-height: auto;
  }

  .approach-list div {
    grid-template-columns: 42px 1fr;
    padding: 1rem;
  }

  .contact-content {
    padding: 4.5rem 1rem;
  }

  .lightbox {
    padding: 1rem;
  }

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

  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-close {
    right: 0;
    top: -3.1rem;
  }

  .lightbox-control {
    min-height: 46px;
  }

  .site-footer {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 980px), (hover: none) {
  .about-media:hover img,
  .about-copy:hover .about-text-box,
  .featured-story-card:hover,
  .client-gallery:hover,
  .experience-media:hover img:first-child,
  .experience-media:hover img:last-child,
  .story-card:hover,
  .offer-steps div:hover,
  .approach-list div:hover,
  .service-card:hover,
  .service-card:focus-within,
  .privacy-points p:hover,
  .feed-card:hover,
  .feed-card:focus-visible,
  .contact-section:hover .contact-media img,
  .featured-story-image:hover img,
  .featured-story-image:focus-visible img,
  .client-gallery-tile:hover img,
  .client-gallery-tile:focus-visible img,
  .story-card:hover .story-card-media img,
  .story-card-media:focus-visible img,
  .service-card:hover .service-card-media img,
  .service-card:focus-within .service-card-media img,
  .feed-card:hover .feed-media img,
  .feed-card:focus-visible .feed-media img {
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 100vh;
    min-height: max(590px, 100svh);
  }

  .hero-media img:nth-child(2) {
    inset: -2.25rem 0 auto 0;
    height: calc(100% + 2.25rem);
    object-position: 55% 48%;
  }

  .hero-content {
    padding-bottom: clamp(1.45rem, 5svh, 2.4rem);
  }

  .hero .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.35rem);
    line-height: 0.98;
  }

  .hero-copy {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .hero-actions .button {
    flex-basis: 100%;
  }

  .hero-tags {
    margin-top: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    flex-basis: auto;
  }
}

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

  .hero-content > *,
  .reveal-on-scroll {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-media img:first-child {
    animation: none !important;
    transform: none !important;
  }
}
