@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --muted: #777;
  --surface: #f3f4f7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  background: #fff;
  color: #080808;
  font:
    16px/1.55 Inter,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
p {
  margin: 0 0 20px;
  color: var(--muted);
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 24px;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4.4vw, 60px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}
.shell {
  width: min(90%, 1280px);
  margin: auto;
}
.section {
  padding: 100px 0;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  background: var(--surface);
  font-size: 14px;
  margin-bottom: 28px;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 65px;
}
.section-head p {
  font-size: 18px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 0;
  border-radius: 30px;
  background: #080808;
  color: #fff;
  padding: 13px 23px;
  font-size: 15px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #303030;
  transform: translateY(-2px);
}
.button.light {
  background: #fff;
  color: #080808;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
.header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
}
.header .identity {
  line-height: 1.35;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.header .mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.page-header {
  position: relative;
  color: #080808;
}
.page-header .button {
  background: #080808;
  color: #fff;
}
.hero {
  height: 1000px;
  max-height: 115vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #277c8e;
}
.hero .hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(70px, 16.1vw, 270px);
  line-height: 1;
  letter-spacing: -0.075em;
  text-align: center;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}
.hero-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: auto;
}
.trust {
  text-align: center;
  max-width: 520px;
  margin: 30px auto 70px;
  padding: 0 20px;
}
.avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.avatars img {
  width: 42px;
  height: 42px;
  border: 3px solid white;
  border-radius: 50%;
  margin: 0 -5px;
}
.avatars img:nth-child(2) {
  width: 60px;
  height: 60px;
  z-index: 1;
}
.trust h2 {
  font-size: 23px;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.trust p {
  font-size: 17px;
}
.philosophy {
  text-align: center;
  padding-top: 70px;
}
.philosophy-copy {
  max-width: 1000px;
  margin: auto;
}
.philosophy-copy h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.32;
}
.collage {
  height: 820px;
  position: relative;
  margin-top: 80px;
}
.collage img {
  position: absolute;
  border-radius: 16px;
  width: 29%;
  height: 340px;
}
.collage img:nth-child(1) {
  top: 40px;
  left: 0;
  width: 25%;
  height: 270px;
}
.collage img:nth-child(2) {
  top: 0;
  left: 28%;
  width: 44%;
  height: 380px;
}
.collage img:nth-child(3) {
  top: 200px;
  right: 0;
  width: 24%;
  height: 330px;
}
.collage img:nth-child(4) {
  bottom: 40px;
  left: 5%;
  width: 28%;
  height: 320px;
}
.collage img:nth-child(5) {
  bottom: 0;
  left: 39%;
  width: 29%;
  height: 310px;
}
.collage img:nth-child(6) {
  bottom: 0;
  right: 0;
  width: 24%;
  height: 230px;
}
.service-banner {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  margin-bottom: 65px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.services-copy p {
  font-size: 18px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.checklist li {
  margin: 13px 0;
  font-size: 15px;
}
.checklist li:before {
  content: "✓";
  border-radius: 50%;
  background: var(--surface);
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.service-list {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 60px;
}
.service-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  padding: 12px;
  border-radius: 8px;
  transition: transform 0.25s;
}
.service-card:hover {
  transform: translateX(5px);
}
.service-card img {
  width: 125px;
  height: 90px;
  border-radius: 5px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 7px;
  letter-spacing: -0.035em;
}
.service-card p {
  font-size: 15px;
  margin: 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.benefit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.benefit img[src$="local-floral-portrait.webp"] {
  object-position: center top;
}
.benefit img[src$="local-wedding-couple.webp"] {
  object-position: center 15%;
}
.benefit img[src$="local-studio-reflection.webp"] {
  object-position: center 10%;
}
.benefit:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, #0009);
}
.benefit h3 {
  position: relative;
  z-index: 1;
  color: white;
  font-size: clamp(27px, 3.1vw, 42px);
  margin: 0;
}
.benefit.wide {
  grid-column: span 2;
  min-height: 200px;
}
.benefit.tall {
  grid-row: span 2;
}
.benefit.small {
  min-height: 200px;
}
.benefit.small h3 {
  font-size: 30px;
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px 24px;
}
.project img {
  width: 100%;
  height: 570px;
  border-radius: 18px;
  transition: transform 0.5s;
}
.project .image-wrap {
  border-radius: 18px;
  overflow: hidden;
}
.project:hover img {
  transform: scale(1.035);
}
.project h3 {
  font-size: 23px;
  margin: 18px 0 8px;
  letter-spacing: -0.035em;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 14px;
}
.project:nth-child(even) {
  padding-top: 110px;
}
.featured {
  text-align: center;
  margin: -25px auto 65px;
}
.featured p {
  font-size: 14px;
  margin-bottom: 12px;
}
.featured a {
  font-weight: 500;
  font-size: 20px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 30px;
  min-height: 220px;
}
.testimonial-card img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 25px;
}
.testimonial-card small {
  color: #888;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (min-width: 801px) {
  .faq-layout {
    align-items: stretch;
  }
  .faq-layout > div:first-child {
    display: flex;
    flex-direction: column;
  }
  .faq-layout .tag {
    align-self: flex-start;
  }
  .faq-layout .faq-image {
    margin-top: auto;
  }
  .faq-layout > div:first-child > p {
    margin-bottom: 36px;
  }
  .faq-layout .faq {
    align-content: space-between;
  }
}
.faq-layout h2 {
  font-size: clamp(32px, 4.3vw, 48px);
  margin-bottom: 16px;
}
.faq-layout > div > p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.faq-image {
  position: relative;
  isolation: isolate;
  margin: 36px 0 0;
  border-radius: 12px;
  overflow: hidden;
}
.faq-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0003;
  pointer-events: none;
}
.faq-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) left top / 10px 1px,
    linear-gradient(#fff, #fff) left top / 1px 10px,
    linear-gradient(#fff, #fff) right top / 10px 1px,
    linear-gradient(#fff, #fff) right top / 1px 10px,
    linear-gradient(#fff, #fff) left bottom / 10px 1px,
    linear-gradient(#fff, #fff) left bottom / 1px 10px,
    linear-gradient(#fff, #fff) right bottom / 10px 1px,
    linear-gradient(#fff, #fff) right bottom / 1px 10px;
  background-repeat: no-repeat;
}
.faq-image figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.faq-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 3;
  object-fit: cover;
  object-position: 55% 45%;
  margin: 0;
}
.faq {
  display: grid;
  gap: 18px;
}
.faq details {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
}
.faq summary {
  min-height: 40px;
  font-size: 16px;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e3e5ea;
  color: #555;
  font-size: 22px;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  padding-top: 18px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.cta {
  text-align: center;
  padding: 110px 0 80px;
}
.cta h2 {
  font-size: clamp(40px, 5.2vw, 70px);
  max-width: 830px;
  margin: 0 auto 25px;
}
.cta p {
  max-width: 550px;
  margin: 0 auto 30px;
  font-size: 18px;
}
.footer-collage {
  display: flex;
  justify-content: center;
  margin: 80px auto 40px;
  max-width: 700px;
  padding: 20px;
}
.footer-collage img {
  width: 32%;
  height: 240px;
  border-radius: 12px;
  border: 7px solid white;
  box-shadow: 0 10px 30px #0002;
  transform: rotate(-12deg);
}
.footer-collage img:nth-child(2) {
  transform: rotate(8deg);
  z-index: 1;
}
.footer-collage img:nth-child(3) {
  transform: rotate(17deg);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.footer {
  padding: 70px 0 135px;
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8%;
}
.logo-window {
  display: block;
  width: 210px;
  height: 84px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.logo-window img {
  position: absolute;
  width: 360px;
  max-width: none;
  height: 360px;
  left: -75px;
  top: -135px;
  object-fit: contain;
}
.footer p {
  font-size: 14px;
  max-width: 340px;
}
.footer h3 {
  font-size: 15px;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.dock {
  position: fixed;
  z-index: 20;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: #080808ee;
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 13px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 10px #0002;
  white-space: nowrap;
}
.home-page .dock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 150px);
  transition:
    transform 0.8s cubic-bezier(0.45, 0, 0.55, 1),
    opacity 0.8s cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0s 0.8s;
}
.home-page .dock.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.header .mark[src$="camera-shutter-svg.svg"],
.dock img[src$="camera-shutter-svg.svg"] {
  filter: brightness(0) invert(1);
}
.page-header .mark[src$="camera-shutter-svg.svg"] {
  filter: brightness(0);
}
@media (min-width: 601px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  a img[src$="camera-shutter-svg.svg"] {
    transform: rotate(0deg);
    transition: transform 450ms ease-in-out;
  }
  a:hover img[src$="camera-shutter-svg.svg"] {
    transform: rotate(180deg);
  }
}
@media (min-width: 601px) {
  .header .mark[src$="camera-shutter-svg.svg"],
  .dock img[src$="camera-shutter-svg.svg"] {
    width: 25px;
    height: 25px;
  }
}
.dock img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.dock a {
  font-size: 15px;
  transition: opacity 0.2s;
}
.dock a:hover {
  opacity: 0.6;
}
.dock a[aria-current="page"] {
  color: #bbb;
}
.page-intro {
  padding: 105px 0 80px;
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.page-intro h1 {
  font-size: clamp(48px, 6vw, 80px);
}
.page-intro p {
  font-size: 18px;
}
.about-lead {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  gap: 8%;
  align-items: center;
  padding: 80px 0;
}
.about-lead img {
  width: 100%;
  height: 650px;
  border-radius: 18px;
}
.about-lead h1 {
  font-size: clamp(42px, 5vw, 68px);
}
.about-copy {
  max-width: 780px;
  margin: 30px auto;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tool-card {
  background: var(--surface);
  padding: 25px;
  border-radius: 16px;
}
.tool-card img {
  height: 180px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}
.tool-card img[src$="local-wedding-couple.webp"] {
  object-position: center 22%;
}
.tool-card img[src$="local-dance-performance.webp"] {
  object-position: center 32%;
}
.tool-card p {
  font-size: 15px;
}
.form {
  max-width: 620px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.form label {
  font-size: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: 7px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: var(--surface);
  padding: 15px;
  color: #111;
  min-width: 0;
}
.form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: calc(1.55em + 32px);
}
.form input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: none;
  border-color: #777;
}
.form input[type="checkbox"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-hidden {
  display: none;
}
.form-note {
  font-size: 14px;
}
.form .form-consent {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}
.form .form-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #080808;
}
.form-consent a,
.form-note a,
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal {
  max-width: 760px;
  margin: 80px auto;
  padding: 0 25px;
}
.legal h1 {
  font-size: 60px;
}
.legal h2 {
  font-size: 28px;
  margin-top: 35px;
}
.project-hero {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  border-radius: 18px;
}
.project-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10%;
  padding: 60px 0;
}
.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-gallery img {
  width: 100%;
  height: 560px;
  border-radius: 18px;
}
.reveal {
  opacity: 1;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .section {
    padding: 65px 0;
  }
  .hero {
    height: 800px;
    max-height: 95svh;
    min-height: 590px;
  }
  .header {
    padding: 20px;
  }
  .header .identity {
    font-size: 16px;
  }
  .services-grid,
  .faq-layout,
  .about-lead {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-list {
    padding-top: 0;
  }
  .collage {
    height: 580px;
    margin-top: 50px;
  }
  .collage img:nth-child(1) {
    height: 180px;
  }
  .collage img:nth-child(2) {
    height: 240px;
  }
  .collage img:nth-child(3) {
    height: 190px;
    top: 130px;
  }
  .collage img:nth-child(4) {
    height: 210px;
    bottom: 80px;
  }
  .collage img:nth-child(5) {
    height: 200px;
  }
  .collage img:nth-child(6) {
    height: 160px;
  }
  .benefit-grid {
    gap: 14px;
  }
  .benefit {
    min-height: 290px;
    padding: 22px;
  }
  .benefit h3 {
    font-size: 27px;
  }
  .benefit.small h3 {
    font-size: 23px;
  }
  .project img {
    height: 380px;
  }
  .project:nth-child(even) {
    padding-top: 65px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: 160px;
  }
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-lead img {
    height: 500px;
  }
  .footer {
    gap: 25px;
  }
  .project-gallery img {
    height: 350px;
  }
}
@media (max-width: 540px) {
  .header .mark {
    display: none;
  }
  .header .button {
    padding: 10px 19px;
  }
  .hero h1 {
    font-size: 16vw;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .section-head p {
    font-size: 16px;
  }
  .service-banner {
    height: 270px;
    margin-bottom: 40px;
  }
  .service-card {
    gap: 14px;
  }
  .service-card img {
    width: 85px;
    height: 100px;
  }
  .service-card p {
    font-size: 14px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefit {
    min-height: 280px;
    padding: 20px;
  }
  .benefit.wide {
    grid-column: span 2;
  }
  .benefit.tall {
    grid-row: auto;
  }
  .benefit.small {
    min-height: 230px;
  }
  .benefit h3,
  .benefit.small h3 {
    font-size: 24px;
  }
  .projects {
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .project:nth-child(even) {
    padding-top: 0;
  }
  .project img {
    height: 440px;
  }
  .footer-collage img {
    height: 160px;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer > div:first-child {
    grid-column: span 2;
  }
  .dock {
    bottom: 18px;
    gap: 16px;
    padding: 12px 15px;
    max-width: 95%;
  }
  .dock a {
    font-size: 13px;
  }
  .dock img {
    width: 24px;
    height: 24px;
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-intro {
    padding: 70px 20px 50px;
  }
  .about-lead {
    padding: 50px 0;
  }
  .about-lead img {
    height: 420px;
  }
  .tools-grid,
  .project-story,
  .project-gallery {
    grid-template-columns: 1fr;
  }
  .cta {
    padding-top: 65px;
  }
  .legal h1 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
.header-logo {
  display: block;
  position: relative;
  width: 190px;
  height: 76px;
  overflow: hidden;
}
.header-logo img {
  position: absolute;
  max-width: none;
  width: 326px;
  height: 326px;
  left: -71px;
  top: -124px;
  object-fit: contain;
}
@media (max-width: 540px) {
  .header-logo {
    width: 155px;
    height: 62px;
  }
  .header-logo img {
    width: 266px;
    height: 266px;
    left: -58px;
    top: -101px;
  }
}

/* Keep the transparent white emblem visible on light surfaces. */
.page-header .mark,
.testimonial-card img[src$="epic-vues-favicon-hires.png"] {
  filter: brightness(0);
}

/* Extend the hero below the initial viewport. */
.hero {
  --hero-extension-height: clamp(220px, 38vh, 420px);
  height: calc(100vh + var(--hero-extension-height));
  max-height: none;
  min-height: 0;
}
.hero-title {
  bottom: auto;
  height: clamp(455px, 80.5vh, 700px);
}
@media (max-width: 800px) {
  .hero-title {
    height: clamp(413px, 66.5svh, 560px);
  }
}

/* A pinned reading layer, with individually spaced photos passing over it. */
.philosophy.philosophy-motion {
  position: relative;
  isolation: isolate;
  padding-top: 70px;
}
.philosophy-motion .philosophy-copy {
  position: sticky;
  top: 32px;
  z-index: 1;
  width: 100%;
  padding: 16px 0 0;
}
.philosophy-word {
  display: inline-block;
}
.philosophy-motion .collage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 12vh, 140px);
  height: auto;
  margin-top: 85vh;
  margin-bottom: 0;
  pointer-events: none;
}
.philosophy-motion .collage img:nth-child(n) {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  transition: none;
  object-fit: contain;
  height: auto;
  max-width: 100%;
  box-shadow: 0 12px 36px #0000000d;
}
.philosophy-motion .collage img:nth-child(1) {
  width: min(42%, 360px);
  align-self: flex-start;
  aspect-ratio: 1329/2048;
}
.philosophy-motion .collage img:nth-child(2) {
  width: min(45%, 480px);
  align-self: flex-end;
  aspect-ratio: auto;
}
.philosophy-motion .collage img:nth-child(3) {
  width: min(42%, 361px);
  align-self: center;
  aspect-ratio: auto;
}
.philosophy-motion .collage img:nth-child(4) {
  width: min(42%, 361px);
  align-self: flex-start;
  aspect-ratio: auto;
}
.philosophy-motion .collage img:nth-child(5) {
  width: min(45%, 480px);
  align-self: flex-end;
  aspect-ratio: auto;
}
.philosophy-motion .collage img:nth-child(6) {
  width: 100%;
  max-width: 1365px;
  height: clamp(600px, 90svh, 1000px);
  align-self: center;
  object-fit: cover;
  object-position: center;
  z-index: 3;
}
@media (max-width: 800px) {
  .philosophy-motion .philosophy-copy {
    top: 20px;
  }
  .philosophy-motion .philosophy-copy h2 {
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.3;
  }
  .philosophy-motion .collage {
    margin-top: 85svh;
    gap: 72px;
  }
  .philosophy-motion .collage img:nth-child(-n + 5) {
    width: min(78%, var(--photo-width, 360px));
  }
  .philosophy-motion .collage img:nth-child(2),
  .philosophy-motion .collage img:nth-child(5) {
    --photo-width: 480px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .philosophy-word {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Cropped logo files contain the full artwork without a square canvas. */
.header-logo {
  height: auto;
  aspect-ratio: 4000/1531;
  overflow: visible;
}
.logo-window {
  height: auto;
  aspect-ratio: 4000/1523;
  overflow: visible;
}
.header-logo img,
.logo-window img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  left: auto;
  top: auto;
  object-fit: contain;
}

/* Gradient hero and oversized title. */
.hero {
  --hero-title-top: clamp(150px, 19vh, 220px);
  --hero-type-size: clamp(70px, 16.1vw, 270px);
  background: linear-gradient(
    180deg,
    #103e50 0%,
    #28788c 42%,
    #80bcc5 80%,
    #c0dfe1 100%
  );
}
.hero:after {
  display: none;
}
.hero .hero-title {
  top: var(--hero-title-top);
  bottom: auto;
  height: auto;
  z-index: 2;
}
.hero h1 {
  font-size: var(--hero-type-size);
}

@media (max-width: 540px) {
  .hero {
    --hero-type-size: 16vw;
    --hero-title-top: clamp(140px, 23svh, 210px);
  }
}

/* Balance the three header elements around the page center. */
.header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
}
.header .identity {
  justify-self: start;
}
.header-logo {
  width: 140px;
}
.header > a:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.header .mark {
  position: static;
  display: block;
  transform: none;
  width: 38px;
  height: 38px;
}
.header > .button {
  justify-self: end;
}
@media (max-width: 540px) {
  .header {
    padding: 20px 18px;
    gap: 10px;
  }
  .header-logo {
    width: 112px;
  }
  .header .mark {
    width: 30px;
    height: 30px;
  }
  .header .button {
    padding: 10px 16px;
  }
}

/* Shared portfolio cards: paired on desktop, stacked on phones. */
#portfolio .projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
#portfolio .project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 4px;
  padding: 12px;
  background: var(--surface);
  border-radius: 16px;
  align-content: start;
}
#portfolio .image-wrap {
  grid-column: 1 / -1;
  aspect-ratio: 32 / 25;
  border-radius: 8px;
  margin-bottom: 12px;
}
#portfolio .project img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}
#portfolio .project img[src$="local-floral-portrait.webp"] {
  object-position: center top;
}
#portfolio .project img[src$="local-wedding-aisle.webp"] {
  object-position: center 15%;
}
#portfolio .project img[src$="local-waterfall-portrait.webp"] {
  object-position: 55% 45%;
}
#portfolio .project h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
#portfolio .project-meta {
  display: contents;
}
#portfolio .project-meta span:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  border-radius: 30px;
  padding: 7px 12px;
  background: #e3e5ea;
  color: #171717;
  font-size: 12px;
  line-height: 1.4;
}
#portfolio .image-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) left top / 10px 1px,
    linear-gradient(#fff, #fff) left top / 1px 10px,
    linear-gradient(#fff, #fff) right top / 10px 1px,
    linear-gradient(#fff, #fff) right top / 1px 10px,
    linear-gradient(#fff, #fff) left bottom / 10px 1px,
    linear-gradient(#fff, #fff) left bottom / 1px 10px,
    linear-gradient(#fff, #fff) right bottom / 10px 1px,
    linear-gradient(#fff, #fff) right bottom / 1px 10px;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  #portfolio .projects {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  #portfolio .image-wrap {
    aspect-ratio: 4 / 3;
  }
  #portfolio .project h3 {
    font-size: 14px;
  }
  #portfolio .project-meta span:last-child {
    padding: 7px 10px;
    font-size: 10px;
  }
}

/* Portfolio: full-width framed projects, following the Aperture reference. */
.portfolio-page .page-intro {
  max-width: 760px;
  padding: 60px 24px 64px;
}
.portfolio-page .page-intro h1 {
  font-size: clamp(48px, 6.4vw, 80px);
  margin-bottom: 22px;
}
.portfolio-page .page-intro p {
  max-width: 570px;
  margin: 0 auto;
  line-height: 1.55;
}
.portfolio-page .projects {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolio-page .project,
.portfolio-page .project:nth-child(even) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 20px;
  row-gap: 6px;
  padding: 16px;
  background: var(--surface);
  border-radius: 18px;
}
.portfolio-page .project .image-wrap {
  grid-column: 1/-1;
  position: relative;
  isolation: isolate;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.portfolio-page .project img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center 38%;
  transition:
    transform 0.6s,
    filter 0.4s;
}
.portfolio-page .project h3 {
  grid-column: 1;
  grid-row: 2;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin: 0;
}
.portfolio-page .project-meta {
  display: contents;
}
.portfolio-page .project-meta span:last-child {
  grid-column: 2;
  grid-row: 2/4;
  align-self: center;
  justify-self: end;
  padding: 7px 14px;
  border-radius: 30px;
  background: #e7e8ed;
  color: #171717;
  font-size: 14px;
}
.portfolio-page .image-wrap:before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) left top/13px 2px,
    linear-gradient(#fff, #fff) left top/2px 13px,
    linear-gradient(#fff, #fff) right top/13px 2px,
    linear-gradient(#fff, #fff) right top/2px 13px,
    linear-gradient(#fff, #fff) left bottom/13px 2px,
    linear-gradient(#fff, #fff) left bottom/2px 13px,
    linear-gradient(#fff, #fff) right bottom/13px 2px,
    linear-gradient(#fff, #fff) right bottom/2px 13px;
  background-repeat: no-repeat;
}
.portfolio-page .image-wrap:after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff30;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  transition:
    background 0.25s,
    transform 0.25s;
  pointer-events: none;
}
.portfolio-page .project:hover img,
.portfolio-page .project:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.86);
}
.portfolio-page .project:hover .image-wrap:after,
.portfolio-page .project:focus-visible .image-wrap:after {
  background: #ffffff50;
  transform: translate(-50%, -50%) scale(1.06);
}
.portfolio-page .cta {
  padding-top: 120px;
}
@media (max-width: 600px) {
  .portfolio-page .page-intro {
    padding: 42px 20px 44px;
  }
  .portfolio-page .project,
  .portfolio-page .project:nth-child(even) {
    padding: 10px;
    column-gap: 10px;
    border-radius: 14px;
  }
  .portfolio-page .project .image-wrap {
    aspect-ratio: 4/5;
    margin-bottom: 10px;
  }
  .portfolio-page .project h3 {
    font-size: 17px;
  }
  .portfolio-page .project-meta span:last-child {
    font-size: 12px;
    padding: 6px 9px;
    max-width: 130px;
    text-align: center;
  }
  .portfolio-page .image-wrap:after {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }
  .portfolio-page .image-wrap:before {
    inset: 12px;
  }
  .portfolio-page .cta {
    padding-top: 75px;
  }
}
.portfolio-page .project img[src$="local-floral-portrait.webp"],
.portfolio-page .project img[src$="local-wedding-aisle.webp"] {
  object-position: center top;
}

/* Portfolio images reveal their action on hover or keyboard focus. */
.projects .image-wrap {
  position: relative;
  isolation: isolate;
}
.projects .image-wrap:after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff35;
  backdrop-filter: blur(8px);
  color: white;
  font-size: 38px;
  line-height: 1;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}
.portfolio-page .project:hover img,
.projects .project:hover img {
  filter: none;
  transform: none;
}
.portfolio-page .project:hover .image-wrap:after {
  opacity: 0;
  visibility: hidden;
}
.projects .project .image-wrap:hover img {
  filter: blur(5px) brightness(0.76);
  transform: scale(1.035);
}
.projects .project .image-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}
.projects .project:focus-visible .image-wrap img {
  filter: blur(5px) brightness(0.76);
  transform: scale(1.035);
}
.projects .project:focus-visible .image-wrap:after {
  opacity: 1;
  visibility: visible;
}
.projects .image-wrap img {
  transition:
    filter 0.3s,
    transform 0.5s;
}
/* Full-bleed project introduction and two-column photo gallery. */
.detail-hero {
  position: relative;
  isolation: isolate;
  min-height: max(640px, 85svh);
  display: flex;
  align-items: flex-end;
  background: #19343b;
  color: #fff;
}
.detail-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: -2;
}
.detail-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #0005 0%,
    #0002 25%,
    #0008 70%,
    #000b 100%
  );
  z-index: -1;
}
.detail-intro {
  padding-top: 180px;
  padding-bottom: 38px;
}
.detail-back,
.detail-category {
  display: inline-flex;
  border-radius: 30px;
  background: #ffffff30;
  backdrop-filter: blur(12px);
  padding: 7px 17px;
  font-size: 14px;
  color: #fff;
}
.detail-back {
  margin-bottom: 24px;
}
.detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.detail-intro h1 {
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: 1.06;
  max-width: 1100px;
  margin-bottom: 28px;
}
.detail-intro p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: #ffffffd9;
  max-width: 1050px;
  margin: 0;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 32px 0;
  margin: 0 auto;
  max-width: 1600px;
}
.detail-gallery img[role="button"] {
  cursor: zoom-in;
}
.detail-gallery img[role="button"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
html.photo-viewer-open {
  overflow: hidden;
}
.photo-viewer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 20px;
  border: 0;
  background: transparent;
  overflow: hidden;
}
.photo-viewer[open] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-viewer::backdrop {
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-viewer-frame {
  position: relative;
  width: fit-content;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-viewer.is-visible::backdrop,
.photo-viewer.is-visible .photo-viewer-frame {
  opacity: 1;
}
.photo-viewer.is-visible .photo-viewer-frame {
  transform: translateY(0) scale(1);
}
.photo-viewer-image {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(
    100vw - 48px - env(safe-area-inset-left) - env(safe-area-inset-right)
  );
  max-height: calc(
    100dvh - 48px - env(safe-area-inset-top) - env(safe-area-inset-bottom)
  );
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 48px #0004;
}
.photo-viewer-close {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #0008;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .projects .image-wrap:after {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }
  .detail-hero {
    min-height: max(720px, 90svh);
  }
  .detail-intro {
    padding-top: 140px;
    padding-bottom: 32px;
  }
  .detail-meta {
    gap: 12px;
    flex-wrap: wrap;
  }
  .detail-category {
    font-size: 12px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
    padding: 16px 18px 0;
    gap: 16px;
  }
  .detail-gallery img {
    aspect-ratio: 4 / 3;
  }
}
.detail-cover,
.detail-gallery img {
  object-position: center 20%;
}

/* Keep portrait subjects fully visible, with their image echoed behind the cover. */
.detail-hero {
  overflow: hidden;
  background-image:
    linear-gradient(90deg, #10242bef, #10242baa), var(--detail-photo);
  background-size: cover;
  background-position: center;
}
.detail-cover {
  inset: 110px 3% 32px auto;
  width: 46%;
  height: calc(100% - 142px);
  object-fit: contain;
  object-position: center;
  z-index: 0;
}
.detail-hero:after {
  display: none;
}
.detail-intro {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.detail-intro a {
  pointer-events: auto;
}
.detail-intro h1 {
  max-width: 49%;
  font-size: clamp(42px, 5.2vw, 76px);
}
.detail-intro p {
  max-width: 46%;
  font-size: clamp(17px, 1.6vw, 22px);
}
.detail-gallery {
  align-items: start;
}
.detail-gallery img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}
.detail-gallery img[src$="local-floral-portrait.webp"],
.detail-gallery img[src$="local-garden-portrait.webp"] {
  object-position: center 15%;
}
.detail-gallery img[src$="local-wedding-couple.webp"],
.detail-gallery img[src$="local-wedding-aisle.webp"] {
  object-position: center 15%;
}
.detail-gallery img[src$="local-waterfall-portrait.webp"],
.detail-gallery img[src$="local-river-fabric.webp"],
.detail-gallery img[src$="local-river-reflection.webp"] {
  object-position: center 70%;
}
.detail-gallery img[src$="local-live-drummer.webp"],
.detail-gallery img[src$="local-dance-performance.webp"],
.detail-gallery img[src$="local-conference.webp"] {
  object-position: center;
}
/* Leave headroom around each face, including the 3.5% hover zoom. */
.portfolio-page .project img[src$="local-floral-portrait.webp"] {
  object-position: center 0%;
}
.portfolio-page .project img[src$="local-wedding-aisle.webp"],
.portfolio-page .project img[src$="local-dance-performance.webp"] {
  object-position: center 20%;
}
.portfolio-page .project img[src$="local-waterfall-portrait.webp"] {
  object-position: center 55%;
}
@media (max-width: 700px) {
  .detail-hero {
    padding-top: 520px;
    min-height: 0;
    background-position: center;
  }
  .detail-cover {
    inset: 90px 5% auto;
    width: 90%;
    height: 410px;
  }
  .detail-intro {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .detail-intro h1,
  .detail-intro p {
    max-width: 100%;
  }
  .detail-intro h1 {
    font-size: clamp(40px, 9vw, 58px);
  }
  .detail-meta {
    flex-wrap: wrap;
  }
  .detail-gallery img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* Mobile layouts and touch-friendly controls. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.services-grid > *,
.faq-layout > *,
.project > *,
.form-row > * {
  min-width: 0;
}
@media (max-width: 900px) {
  .shell {
    width: calc(100% - 36px);
  }
  .header {
    padding: 18px;
    gap: 10px;
  }
  .header-logo {
    width: clamp(96px, 17vw, 140px);
  }
  .header > a:nth-child(2) {
    min-width: 44px;
    min-height: 44px;
  }
  .header .button {
    min-height: 44px;
    padding: 10px 16px;
  }
  .hero {
    --hero-extension-height: clamp(180px, 30svh, 300px);
    height: calc(100svh + var(--hero-extension-height));
  }
  .detail-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 0 0;
    min-height: 0;
  }
  .detail-cover {
    position: relative;
    inset: auto;
    align-self: center;
    width: calc(100% - 36px);
    height: auto;
    max-height: 65svh;
    object-fit: contain;
  }
  .detail-intro {
    padding: 28px 0 40px;
  }
  .detail-intro h1,
  .detail-intro p {
    max-width: 100%;
  }
  .detail-intro h1 {
    font-size: clamp(36px, 7vw, 64px);
    overflow-wrap: break-word;
  }
  .detail-meta {
    gap: 12px;
    flex-wrap: wrap;
  }
  .detail-back {
    min-height: 44px;
    align-items: center;
  }
  .detail-gallery {
    padding: 18px 18px 0;
    gap: 18px;
  }
  .about-copy {
    width: calc(100% - 36px);
    font-size: 21px;
  }
  .dock {
    bottom: calc(12px + env(safe-area-inset-bottom));
    max-width: calc(100% - 24px);
    gap: 4px;
    padding: 6px 8px;
  }
  .dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 8px;
    font-size: 14px;
  }
  .dock a:first-child {
    min-width: 44px;
    padding: 0 6px;
  }
  .footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
  .form input,
  .form select,
  .form textarea {
    font-size: 16px;
  }
  .faq summary {
    min-height: 44px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .section {
    padding: 52px 0;
  }
  .page-intro {
    padding: 40px 18px;
  }
  .page-intro h1,
  .portfolio-page .page-intro h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero {
    --hero-title-top: clamp(140px, 26svh, 210px);
  }
  .philosophy.philosophy-motion {
    padding-top: 36px;
  }
  .philosophy-motion .philosophy-copy {
    top: 12px;
    width: min(86%, 400px);
    margin-inline: auto;
    padding: 8px 12px 0;
  }
  .philosophy-motion.mobile-copy-covered .philosophy-copy {
    opacity: 0;
    pointer-events: none;
  }
  .philosophy-motion .philosophy-copy h2 {
    font-size: clamp(24px, 6.4vw, 34px);
    line-height: 1.28;
    margin-bottom: 16px;
  }
  .philosophy-copy .tag {
    margin-bottom: 18px;
  }
  .philosophy-motion .collage {
    margin-top: 55svh;
    gap: 48px;
  }
  .philosophy-motion .collage img:nth-child(n) {
    align-self: center;
  }
  .philosophy-motion .collage img:nth-child(-n + 5) {
    width: 86%;
    max-width: 400px;
  }
  .philosophy-motion .collage img:nth-child(5),
  .philosophy-motion .collage img:nth-child(6) {
    width: 86%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1508 / 2261;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit img[src$="local-studio-reflection.webp"] {
    /* Keep about 24px above her hair as the mobile card width changes. */
    object-position: center calc(33px - 25vw);
  }
  .benefit.wide {
    grid-column: auto;
  }
  .benefit,
  .benefit.small,
  .benefit.wide {
    min-height: 280px;
  }
  .projects {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project:nth-child(even) {
    padding-top: 0;
  }
  .project img {
    height: auto;
    aspect-ratio: 4/5;
    object-position: center 20%;
  }
  .portfolio-page .project {
    grid-template-columns: minmax(0, 1fr);
  }
  .portfolio-page .project-meta span:last-child {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    max-width: 100%;
    margin-top: 5px;
    text-align: left;
  }
  .project-meta {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .footer-collage {
    margin: 42px auto 28px;
    padding: 16px 28px;
  }
  .footer-collage img {
    height: 130px;
    border-width: 4px;
  }
  .cta {
    padding: 58px 18px 48px;
  }
  .cta h2 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .cta p {
    font-size: 16px;
  }
  .about-lead {
    padding: 32px 0;
  }
  .about-lead img {
    height: auto;
    max-height: 70svh;
    object-fit: contain;
  }
  .tools-grid,
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .service-card img {
    flex-shrink: 0;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .legal {
    margin: 40px auto;
    padding: 0 18px;
    overflow-wrap: anywhere;
  }
  .legal h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .footer nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer nav {
    gap: 0;
  }
}
@media (max-width: 370px) {
  .header-logo {
    width: 96px;
  }
  .header .mark {
    width: 26px;
    height: 26px;
  }
  .header .button {
    font-size: 13px;
    padding: 10px 12px;
  }
  .dock a {
    font-size: 12px;
    padding: 0 6px;
  }
  .dock a:first-child {
    display: none;
  }
  .philosophy-motion .philosophy-copy h2 {
    font-size: 23px;
  }
}
/* Touch taps navigate directly without leaving a simulated hover blur behind. */
@media (hover: none) and (pointer: coarse) {
  .projects .project .image-wrap:hover img,
  .projects .project:focus-visible .image-wrap img {
    filter: none;
    transform: none;
  }
  .projects .project .image-wrap:hover:after {
    opacity: 0;
    visibility: hidden;
  }
  .button:hover,
  .service-card:hover {
    transform: none;
  }
}
/* Short screens and reduced motion use the same photos in a natural reading flow. */
@media (max-height: 500px) and (max-width: 900px),
  (prefers-reduced-motion: reduce) {
  .philosophy-motion .philosophy-copy {
    position: relative;
    top: auto;
  }
  .philosophy .collage {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 32px;
    margin-top: 32px;
  }
  .philosophy .collage img:nth-child(n) {
    position: relative;
    inset: auto;
    width: min(100%, 480px);
    height: auto;
    align-self: center;
    object-fit: contain;
  }
  .philosophy-word {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Coastal photograph hero, with contrast for the white title. */
.hero {
  background: #244953;
}
.hero .hero-image {
  inset: 0;
  object-position: center;
  z-index: 0;
}
.hero:after {
  display: block;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.52) 40%,
    rgba(0, 0, 0, 0.24) 100%
  );
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero .hero-image {
    object-position: 42% center;
  }
}

/* Frame the homepage title on phones, tablets, and desktops. */
.home-page .hero .hero-title {
  padding: 8px 0;
}
.home-page .hero-title::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) left top / 10px 1px,
    linear-gradient(#fff, #fff) left top / 1px 10px,
    linear-gradient(#fff, #fff) right top / 10px 1px,
    linear-gradient(#fff, #fff) right top / 1px 10px,
    linear-gradient(#fff, #fff) left bottom / 10px 1px,
    linear-gradient(#fff, #fff) left bottom / 1px 10px,
    linear-gradient(#fff, #fff) right bottom / 10px 1px,
    linear-gradient(#fff, #fff) right bottom / 1px 10px;
  background-repeat: no-repeat;
}

/* Compact mobile homepage header and hero, fading into the introduction. */
@media (max-width: 600px) {
  .home-page .header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: calc(20px + env(safe-area-inset-top)) 18px 0;
    gap: 16px;
  }
  .home-page .header > a:nth-child(2) {
    display: none;
  }
  .home-page .header-logo {
    width: 108px;
  }
  .home-page .header .button {
    min-height: 40px;
    padding: 9px 20px;
    font-size: 12px;
    line-height: 1.4;
  }
  .home-page .hero {
    --hero-title-top: calc(90px + env(safe-area-inset-top));
    --hero-type-size: 16.6vw;
    --hero-extension-height: clamp(160px, 26svh, 220px);
    height: clamp(480px, 74svh, 620px);
    min-height: 0;
    max-height: none;
  }
  .home-page .hero .hero-title {
    width: calc(100% - 36px);
    padding: 8px 0;
  }

  .home-page .trust {
    margin: 8px auto 28px;
    padding: 0 24px;
  }
  .home-page .avatars {
    margin-bottom: 22px;
  }
  .home-page .avatars img {
    width: 32px;
    height: 32px;
  }
  .home-page .avatars img:nth-child(2) {
    width: 48px;
    height: 48px;
  }
  .home-page .trust h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .home-page .trust p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Phone headers keep only the brand and Contact link. */
@media (max-width: 600px) {
  .header {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .header > a:nth-child(2) {
    display: none;
  }
}

.dock-links {
  display: contents;
}
@media (max-width: 600px) {
  .dock {
    width: max-content;
    max-width: calc(100% - 24px);
    gap: 0;
    padding: 6px 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 150px);
    transition:
      transform 0.8s cubic-bezier(0.45, 0, 0.55, 1),
      opacity 0.8s cubic-bezier(0.45, 0, 0.55, 1),
      visibility 0s 0.8s;
  }
  .dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
  }
  .dock > a:first-child {
    display: none;
  }
  .dock-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto;
  }
  .dock .dock-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: clamp(12px, 3.5vw, 14px);
  }
  .dock-links a:hover,
  .dock-links a:focus-visible {
    background: #ffffff1a;
  }
}

/* Service thumbnails retain each photograph's complete composition. */
.service-card img {
  width: 125px;
  height: 90px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  flex: 0 0 125px;
  align-self: center;
}
.service-card > div {
  min-width: 0;
}
@media (max-width: 540px) {
  .service-card img {
    width: 85px;
    height: 100px;
    flex-basis: 85px;
  }
}
.service-card:nth-child(1) img {
  object-position: center 0%;
}
.service-card:nth-child(2) img {
  object-position: center 18%;
}
.service-card:nth-child(3) img {
  object-position: center 45%;
}

/* Full-width project photographs with the introduction layered below the faces. */
.detail-hero {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  min-height: max(740px, 95svh);
  padding: 0;
  background: #172b30;
  isolation: isolate;
}
.detail-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 0;
  align-self: auto;
}
.detail-cover[src$="local-live-drummer.webp"],
.portfolio-page .project img[src$="local-live-drummer.webp"],
#portfolio .project img[src$="local-live-drummer.webp"] {
  object-position: center 40%;
}
.detail-cover[src$="local-dance-performance.webp"] {
  object-position: center 22%;
}
.detail-cover[src$="local-floral-portrait.webp"] {
  object-position: center 8%;
}
.detail-cover[src$="local-wedding-couple.webp"],
.detail-cover[src$="local-wedding-aisle.webp"] {
  object-position: center 21%;
}
.detail-cover[src$="local-resort-coast.webp"] {
  object-position: center 45%;
}
.detail-cover[src$="local-waterfall-portrait.webp"] {
  object-position: center 45%;
}
/* Match the gallery crop's headroom in the Bridal Expo hero. */
.bridal-expo-page .detail-cover,
.detail-cover[src$="bridal-expo-58.webp"] {
  object-position: center 20%;
}
/* Bottom blur with a soft transition across the strip's upper 20%. */
.detail-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 225px;
  z-index: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to top, #000 80%, transparent 100%);
  mask-image: linear-gradient(to top, #000 80%, transparent 100%);
}
.detail-hero::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
}
.detail-intro {
  position: relative;
  z-index: 2;
  padding: 400px 0 48px;
  margin: 0 auto;
  width: min(84%, 1280px);
}
.detail-intro h1 {
  max-width: 100%;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.detail-intro p {
  max-width: 1000px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}
.detail-meta {
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.detail-back {
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .detail-hero {
    min-height: max(900px, 100svh);
  }
  .detail-intro {
    width: calc(100% - 36px);
    padding: 480px 0 calc(100px + env(safe-area-inset-bottom));
  }
  .detail-intro h1 {
    font-size: clamp(38px, 7vw, 64px);
  }
  .detail-intro p {
    font-size: 17px;
  }
  .detail-meta {
    gap: 10px;
    margin-bottom: 20px;
  }
  .detail-cover[src$="local-floral-portrait.webp"] {
    object-position: 48% 8%;
  }
  .detail-cover[src$="local-wedding-couple.webp"],
  .detail-cover[src$="local-wedding-aisle.webp"] {
    object-position: 50% 15%;
  }
  .detail-cover[src$="local-waterfall-portrait.webp"] {
    object-position: 55% 45%;
  }
  .detail-cover[src$="local-resort-coast.webp"] {
    object-position: 40% center;
  }
}
@media (max-width: 600px) {
  /* Place the mobile introduction over the 225px bottom blur. */
  .detail-hero {
    min-height: max(640px, 85svh);
  }
  .detail-intro {
    padding-top: 360px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
  .detail-intro h1 {
    font-size: clamp(30px, 7vw, 40px);
    margin-bottom: 16px;
  }
  .detail-intro p {
    font-size: 16px;
  }
}

/* Full-bleed drone film with an overlapping, rounded introduction. */
.home-page .hero {
  height: clamp(740px, 110svh, 1050px);
  min-height: 0;
  max-height: none;
  --hero-extension-height: clamp(220px, 32svh, 340px);
  background: #28312a url("./assets/hero-drone-poster.webp") center / cover no-repeat;
}
.home-page .hero::after {
  content: none;
  display: none;
  background: none;
}
.home-page .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  /* Keep native autoplay-blocked controls hidden over the still image. */
  opacity: 0;
}
.home-page .hero-video.is-playing {
  opacity: 1;
}
@media (max-width: 600px) {
  .home-page .hero {
    height: clamp(500px, 76svh, 680px);
    --hero-extension-height: clamp(100px, 16svh, 140px);
    background-image: url("./assets/hero-drone-mobile-poster.webp");
  }
}

/* Shared Lucide arrows for Instagram and experience links. */
.instagram-link-icon,
.experience-link-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.2em;
  pointer-events: none;
}

/* Event collections reuse the portfolio card treatment. */
.event-collections {
  padding-top: 32px;
  padding-bottom: 8px;
}
/* Preserve heads when portrait photos fill the shared 4:3 gallery tiles. */
.bridal-expo-page .detail-gallery img {
  object-position: center top;
}
.bridal-expo-page .detail-gallery img[src$="bridal-expo-19.webp"] {
  object-position: center 50%;
}
.bridal-expo-page .detail-gallery img[src$="bridal-expo-44.webp"] {
  object-position: center 40%;
}
.bridal-expo-page .detail-gallery img[src$="bridal-expo-28.webp"] {
  object-position: center 22%;
}
.bridal-expo-page .detail-gallery img[src$="bridal-expo-11.webp"] {
  object-position: center 30%;
}
.bridal-expo-page .detail-gallery img[src$="bridal-expo-60.webp"] {
  object-position: center 30%;
}

/* A crisp white introduction overlaps the film on every screen size. */
.home-page .trust {
  --intro-radius: clamp(24px, 5.5vw, 48px);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: calc(-1 * var(--intro-radius)) auto 28px;
  padding: clamp(28px, 4vw, 48px) 24px 0;
  border-radius: var(--intro-radius) var(--intro-radius) 0 0;
  background: #fff;
}
.home-page .trust h2,
.home-page .trust p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  /* Match the reference's 393 × 228 panel; let enlarged text add height. */
  .home-page .trust {
    aspect-ratio: 393 / 228;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 7.12vw, 42px) 24px;
  }

  .home-page .trust > * {
    flex-shrink: 0;
  }

  .home-page .trust p {
    margin-bottom: 0;
  }
}
