﻿:root {
  --black: #11110f;
  --ink: #24231f;
  --muted: #7d786d;
  --line: #ddd8ca;
  --paper: #f4f1e9;
  --white: #fbfaf6;
  --green: #1f6a4b;
  --gold: #c6a14a;
  --purple: #3b2c6f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(31, 106, 75, 0.08) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    linear-gradient(180deg, rgba(198, 161, 74, 0.1), transparent 26rem),
    var(--paper);
  color: var(--ink);
  cursor: none;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

a,
summary,
button {
  cursor: none;
}

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

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

p,
h1,
h2,
h3,
summary,
a {
  overflow-wrap: anywhere;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zl-type {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, "PingFang SC", sans-serif;
  font-feature-settings: "tnum";
  font-stretch: condensed;
  letter-spacing: 0;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--black);
  animation: intro-out 2.7s ease forwards;
  pointer-events: none;
}

.intro span {
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  animation: intro-name 2.15s ease forwards;
}

.cursor-dot,
.cursor-mark {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
}

.cursor-mark {
  width: 34px;
  height: 34px;
  opacity: 0.82;
  transition: transform 0.14s ease, opacity 0.2s ease;
}

.cursor-mark path,
.cursor-mark circle {
  fill: none;
  stroke: var(--green);
  stroke-linecap: square;
  stroke-width: 3;
}

.cursor-mark .gold-line {
  stroke: var(--gold);
}

body.is-hovering .cursor-mark {
  transform: translate(-50%, -50%) scale(1.14) rotate(-8deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 4.5vw, 64px);
  background: rgba(244, 241, 233, 0.88);
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.mark-box {
  fill: none;
  stroke: var(--black);
  stroke-width: 2.5;
}

.mark-wall,
.mark-hoop,
.mark-net {
  fill: none;
  stroke: var(--black);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
}

.mark-thin,
.mark-hoop {
  stroke: rgba(17, 17, 15, 0.45);
  stroke-width: 1.4;
}

.mark-box-offset {
  stroke: rgba(17, 17, 15, 0.8);
}

.mark-cut,
.mark-gold {
  fill: none;
  stroke-linecap: square;
  stroke-width: 3.6;
}

.mark-cut {
  stroke: var(--green);
}

.mark-gold {
  stroke: var(--gold);
}

.mark-net {
  stroke: var(--green);
  stroke-width: 1.5;
}

nav {
  display: flex;
  gap: clamp(18px, 3.4vw, 46px);
}

nav a {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 34px;
  color: var(--muted);
  font-size: 12px;
}

nav svg {
  width: 17px;
  height: 17px;
}

nav path,
nav circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

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

nav a.is-active {
  color: var(--black);
}

nav a.is-active svg {
  color: var(--green);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(16px, 2.6vw, 34px) clamp(20px, 4.5vw, 64px) 54px;
  border-bottom: 1px solid var(--line);
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 160px);
}

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

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(251, 250, 246, 0.7);
  opacity: 1;
  transform: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 17, 15, 0.3));
  opacity: 0.5;
  pointer-events: none;
}

.hero-photo-1 {
  left: 0;
  top: 0;
  width: min(74vw, 1080px);
  height: calc(100vh - 160px);
}

.hero-photo-2 {
  right: 0;
  top: 0;
  width: calc(26vw - 12px);
  height: calc((100vh - 184px) * 0.5);
}

.hero-photo-3 {
  right: 0;
  bottom: 0;
  width: calc(26vw - 12px);
  height: calc((100vh - 184px) * 0.5);
}

.hero-photo-4 {
  display: none;
}

.hero-photo-4::after {
  border-top-color: var(--gold);
}

.hero-center {
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  bottom: clamp(28px, 7vh, 76px);
  z-index: 2;
  width: min(360px, 70vw);
  transform: none;
  text-align: left;
  opacity: 1;
}

.caption-index,
.eyebrow {
  margin-bottom: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
.section-head h2,
.about-copy h2 {
  margin-bottom: 0;
  color: var(--black);
  font-weight: 520;
  line-height: 1.18;
}

h1 {
  margin-top: 16px;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 560;
}

.hero-center p:last-child,
.section-head p,
.about-copy p,
.fee-notes p,
.project-card p,
.accordion p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.hero-center p:last-child {
  max-width: 240px;
  margin: 12px 0 0;
  color: rgba(36, 35, 31, 0.76);
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 4.5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.54fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(22px, 2.45vw, 36px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: fit-content;
  margin: -12px 0 28px 140px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-tabs a {
  padding: 11px 18px;
  background: rgba(251, 250, 246, 0.76);
  color: var(--black);
  font-size: 12px;
}

.project-tabs a:hover {
  color: var(--green);
}

.project-block-head {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.54fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: baseline;
  margin: 42px 0 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 94px;
}

.project-block-head span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.project-block-head h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 540;
}

.project-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.project-card {
  background: rgba(251, 250, 246, 0.72);
}

.project-card.is-active,
.built-card-ready.is-active {
  background: rgba(31, 106, 75, 0.08);
}

.project-card.is-active a,
.built-card-ready.is-active a {
  box-shadow: inset 0 0 0 2px rgba(31, 106, 75, 0.52);
}

.project-card.is-active .project-no,
.project-card.is-active h3,
.built-card-ready.is-active span,
.built-card-ready.is-active h3 {
  color: var(--green);
}

.project-card a {
  display: grid;
  grid-template-rows: minmax(250px, 30vw) auto;
  min-height: 430px;
}

.project-card img {
  filter: saturate(0.9);
  transition: filter 0.28s ease, transform 0.28s ease;
}

.project-card a:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.project-card div:last-child {
  padding: 18px;
  border-top: 1px solid rgba(17, 17, 15, 0.08);
}

.project-no {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 560;
}

.project-card p {
  margin-bottom: 0;
}

.empty-cover {
  display: grid;
  place-items: center;
  min-height: 250px;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--green) 45% 46.2%, transparent 46.2%),
    linear-gradient(135deg, transparent 0 59%, var(--gold) 59% 60.2%, transparent 60.2%),
    rgba(244, 241, 233, 0.9);
}

.empty-cover span {
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.gallery-stack {
  display: grid;
  gap: 52px;
  margin-top: 72px;
}

.design-gallery-stack {
  display: block;
  margin-top: 28px;
}

.design-gallery-stack .project-gallery,
.built-gallery-stack .project-gallery {
  display: none;
}

.project-grid > .project-gallery,
.built-list > .project-gallery {
  display: none;
  grid-column: 1 / -1;
  padding: clamp(18px, 3vw, 32px);
  background: rgba(251, 250, 246, 0.92);
}

.design-gallery-stack .project-gallery.is-open,
.built-gallery-stack .project-gallery.is-open {
  display: block;
  animation: galleryReveal 0.22s ease-out both;
}

.project-grid > .project-gallery.is-open,
.built-list > .project-gallery.is-open {
  display: block;
  animation: galleryReveal 0.22s ease-out both;
}

@keyframes galleryReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.project-gallery {
  scroll-margin-top: 94px;
}

.gallery-title {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  margin-bottom: 18px;
}

.gallery-title span,
.built-list span,
.service-content span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.gallery-title h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 540;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.photo-grid img {
  aspect-ratio: 1.18 / 1;
  background: var(--paper);
}

.photo-grid img:first-child {
  grid-column: span 2;
  aspect-ratio: 2.2 / 1;
}

.photo-grid.is-collapsed img:nth-child(n + 4) {
  display: none;
}

.gallery-more {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 58px;
  margin: 1px 0 0;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.72);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.gallery-more:hover {
  color: var(--green);
  border-color: rgba(31, 106, 75, 0.34);
}

.project-gallery-empty {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 0 49.4%, rgba(31, 106, 75, 0.65) 49.4% 50%, transparent 50%),
    rgba(251, 250, 246, 0.56);
}

.project-gallery-empty p {
  max-width: 540px;
  margin: 18px 0 0 164px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.built-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  scroll-margin-top: 104px;
}

.service-open-note {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.service-content a {
  display: block;
  min-height: 180px;
  background: rgba(251, 250, 246, 0.66);
  transition: background 0.24s ease, color 0.24s ease;
}

.service-content a:hover {
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(31, 106, 75, 0.22) 52% 52.6%, transparent 52.6%),
    rgba(251, 250, 246, 0.82);
  color: var(--green);
}

.built-list article,
.service-content article {
  min-height: 180px;
  padding: 22px;
  background: rgba(251, 250, 246, 0.66);
}

.built-list .built-card-ready {
  padding: 0;
}

.built-card-ready a {
  display: grid;
  grid-template-rows: 130px auto;
  height: 100%;
  min-height: 260px;
  background: rgba(251, 250, 246, 0.66);
}

.built-card-ready img {
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  filter: saturate(0.9) contrast(1.02);
  transition: filter 0.28s ease, transform 0.28s ease;
}

.built-card-ready a:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.018);
}

.built-card-ready span,
.built-card-ready h3,
.built-card-ready p {
  margin-left: 22px;
  margin-right: 22px;
}

.built-card-ready span {
  margin-top: 20px;
}

.built-card-ready h3 {
  margin-top: 18px;
}

.built-card-ready p {
  margin-bottom: 22px;
}

.built-gallery-stack {
  margin-top: 56px;
}

.service-content article {
  height: 100%;
  background: transparent;
}

.built-card-empty {
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(198, 161, 74, 0.36) 52% 53%, transparent 53%),
    rgba(251, 250, 246, 0.66);
}

.built-list h3,
.service-content h3 {
  margin: 44px 0 8px;
  font-size: 17px;
  font-weight: 560;
}

.built-list p,
.service-content p,
.idea-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 140px minmax(190px, 0.28fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.about-label span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.portrait-slot {
  position: relative;
  display: block;
  min-height: 0;
  max-height: none;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 0 49.4%, rgba(31, 106, 75, 0.78) 49.4% 50%, transparent 50%),
    linear-gradient(135deg, transparent 0 59.4%, rgba(198, 161, 74, 0.8) 59.4% 60%, transparent 60%),
    rgba(251, 250, 246, 0.55);
}

.portrait-slot span {
  color: var(--muted);
  font-size: 12px;
}

.portrait-photo {
  margin: 0;
  padding: 0;
  width: min(100%, 260px);
  aspect-ratio: 3 / 4;
  justify-self: center;
  background: rgba(251, 250, 246, 0.55);
}

.portrait-photo img {
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.about-copy {
  align-self: end;
  max-width: 640px;
}

.about-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(20px, 2vw, 28px);
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 30px;
}

.about-principles span {
  padding: 10px 14px;
  background: rgba(31, 106, 75, 0.08);
  border: 1px solid rgba(31, 106, 75, 0.14);
  color: var(--green);
  font-size: 12px;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.idea-grid article {
  padding: 24px;
  background: rgba(251, 250, 246, 0.66);
}

.idea-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.idea-grid h3 {
  margin: 48px 0 14px;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 540;
  line-height: 1.35;
}

.service-block-head {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.54fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: baseline;
  margin: 54px 0 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service-section .section-head + .service-block-head {
  margin-top: 0;
}

.service-block-head span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.service-block-head h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 540;
}

.service-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.service-note-inline {
  color: var(--green);
  font-weight: 700;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 520;
  list-style: none;
}

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

.accordion summary span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.accordion p {
  max-width: 720px;
  margin: -2px 0 26px 86px;
}

.fee-notes {
  display: grid;
  grid-template-columns: 0.72fr repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fee-notes article,
.fee-notes > p {
  min-height: 170px;
  margin: 0;
  padding: 28px;
  background: rgba(251, 250, 246, 0.62);
}

.fee-notes article span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.fee-notes article h3 {
  margin: 42px 0 10px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 520;
}

.fee-notes article p {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.payment-block-head {
  margin-top: 28px;
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.payment-steps article {
  min-height: 190px;
  padding: 28px;
  background: rgba(251, 250, 246, 0.62);
}

.payment-steps span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.payment-steps h3 {
  margin: 42px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
}

.payment-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4.5vw, 64px);
  color: var(--muted);
  font-size: 12px;
  scroll-margin-top: 92px;
}

footer strong {
  color: var(--black);
  font-size: 13px;
}

footer p {
  margin: 4px 0 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
}

.site-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  width: auto;
  padding: 0 13px 0 10px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
}

.site-brand-link svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.site-brand-link .ball {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.site-brand-link .sword,
.site-brand-link .room {
  fill: none;
  stroke: var(--green);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.social-links a:hover {
  border-color: var(--green);
  color: var(--green);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon path,
.social-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.social-icon.xhs {
  color: #b6202a;
}

.social-icon.douyin {
  color: var(--black);
}

.site-brand-link:hover {
  color: var(--green);
  border-color: rgba(31, 106, 75, 0.36);
}

@keyframes intro-name {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  35%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes intro-out {
  0%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes center-in {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

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

  .about-grid,
  .section-head {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .section-head p:last-child,
  .about-copy {
    grid-column: 2;
  }

  .portrait-slot {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .intro {
    display: none;
  }

  body,
  a,
  summary,
  button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-mark {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 360px);
    gap: 0;
  }

  .hero {
    min-height: auto;
    padding: 14px 14px 38px;
  }

  .hero-stage {
    display: block;
    min-height: min(68vh, 560px);
  }

  .hero-photo,
  .hero-center {
    animation: none;
    transform: none;
    transition: none;
  }

  .project-card img,
  .photo-grid img,
  .service-content article,
  .accordion details {
    transition: none;
  }

  .hero-photo {
    position: absolute;
    aspect-ratio: auto;
  }

  .hero-photo-1 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-photo-2,
  .hero-photo-3 {
    display: none;
  }

  .hero-center {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 28px;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .hero-center p:last-child {
    margin-left: 0;
  }

  h1 {
    font-size: 26px;
  }

  .section-head,
  .about-grid,
  .built-list,
  .service-content,
  .service-block-head,
  .project-block-head,
  .idea-grid,
  .fee-notes,
  .payment-steps,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-tabs {
    width: 100%;
    margin: -8px 0 28px;
  }

  .project-tabs a {
    flex: 1;
    text-align: center;
  }

  .gallery-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .photo-grid img,
  .photo-grid img:first-child {
    grid-column: auto;
    aspect-ratio: 1.25 / 1;
  }

  .project-gallery-empty p {
    margin-left: 0;
  }

  .built-list,
  .service-content {
    margin-top: 36px;
  }

  .service-block-head {
    gap: 10px;
    margin: 38px 0 16px;
  }

  .project-block-head {
    gap: 10px;
    margin: 34px 0 16px;
  }

  .service-block-head h3 {
    font-size: 21px;
  }

  .section-head p:last-child,
  .about-copy {
    grid-column: auto;
  }

  .project-card a {
    grid-template-rows: 300px auto;
    min-height: 0;
  }

  .about-label span {
    margin-top: 8px;
  }

  .portrait-slot {
    min-height: 0;
  }

  .portrait-photo {
    width: min(72vw, 240px);
    justify-self: start;
  }

  .accordion summary {
    grid-template-columns: 42px minmax(0, 1fr);
    font-size: 18px;
  }

  .accordion p {
    margin-left: 58px;
  }

  footer {
    flex-direction: column;
  }
}

@keyframes mobile-center-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

