:root {
  --ink: #171411;
  --muted: #6f6a63;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --line: #ded8cf;
  --accent: #b65f3a;
  --accent-strong: #8d3c24;
  --forest: #31534a;
  --shadow: 0 24px 60px rgba(23, 20, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(23, 20, 17, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
}

.nav-links a,
.header-cta {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.language-toggle {
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  outline: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 80px) 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.76), rgba(23, 20, 17, 0.36) 46%, rgba(23, 20, 17, 0.08)),
    linear-gradient(0deg, rgba(23, 20, 17, 0.84), rgba(23, 20, 17, 0) 38%),
    var(--hero-image) var(--hero-position, center) / cover no-repeat;
  transition: opacity 1100ms ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding-bottom: 140px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c2a4;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 35px rgba(141, 60, 36, 0.24);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button-outline:hover {
  border-color: var(--ink);
}

.hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1060px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  padding: clamp(18px, 3vw, 28px);
}

.hero-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.hero-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.section-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(70px, 10vw, 120px) 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.works {
  padding: clamp(52px, 7vw, 80px) 0;
  color: #fff;
  background: #181a17;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.works .section-heading h2 {
  color: #fff;
}

.works .section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 0.65fr) auto;
  align-items: end;
}

.works .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.gallery-note {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
}

.works-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.expand-all-trigger,
.sections-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 9px 4px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.sections-trigger::after {
  width: 7px;
  height: 7px;
  margin: 0 11px 4px 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.sections-trigger[aria-expanded="true"]::after {
  margin-top: 5px;
  margin-bottom: 0;
  transform: rotate(225deg);
}

.expand-all-trigger:hover,
.expand-all-trigger:focus-visible,
.sections-trigger:hover,
.sections-trigger:focus-visible {
  border-color: #fff;
  outline: 0;
}

.section-list {
  position: absolute;
  z-index: 3;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 40px));
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: #272925;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.section-list[hidden] {
  display: none;
}

.section-list-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  width: 100%;
  padding: 11px 10px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.section-list-button:hover,
.section-list-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.section-list-index {
  color: #f0c2a4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-list-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.portfolio-modules {
  display: grid;
  gap: 0;
}

.portfolio-module {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-module:first-child {
  padding-top: 0;
  border-top-color: transparent;
}

.portfolio-module-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 42px;
  gap: 16px;
  align-items: center;
}

.portfolio-module-index {
  margin: 0;
  color: #f0c2a4;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portfolio-module h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.portfolio-module-title {
  min-width: 0;
}

.portfolio-module-copy {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
}

.module-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.module-toggle::before {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.module-toggle[aria-expanded="false"]::before {
  margin-top: 0;
  margin-right: 4px;
  transform: rotate(-45deg);
}

.module-toggle:hover,
.module-toggle:focus-visible {
  border-color: #fff;
  outline: 0;
}

.portfolio-grid {
  column-count: 3;
  column-gap: 12px;
  padding: 2px 0 0;
}

.module-image {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
}

.module-image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: zoom-in;
}

.module-image-trigger:focus-visible {
  outline: 2px solid #f0c2a4;
  outline-offset: 3px;
}

.module-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: filter 240ms ease, transform 320ms ease;
}

.module-image:hover img {
  filter: saturate(1.04);
  transform: scale(1.015);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: clamp(68px, 7vw, 96px) clamp(24px, 5vw, 72px) 24px;
  color: #fff;
  background: rgba(12, 11, 9, 0.94);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox-stage {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  touch-action: pan-y;
}

.lightbox-stage img {
  width: auto;
  max-width: calc(100vw - 200px);
  height: auto;
  max-height: calc(100dvh - 150px);
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  outline: 0;
  transform: translateY(-1px);
}

.lightbox-counter {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.pricing {
  padding: clamp(70px, 10vw, 124px) 0;
}

.pricing .section-heading {
  align-items: start;
}

.pricing .section-heading > p {
  max-width: 440px;
}

.pricing-stack {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.pricing-group {
  display: grid;
  gap: 18px;
}

.pricing-group-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-group-title h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.pricing-group-title .section-kicker {
  margin: 0;
}

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

.pricing-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-card.compact {
  min-height: 420px;
}

.price-card.engagement-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1fr) minmax(190px, auto);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  min-height: auto;
}

.price-card.highlighted {
  color: #fff;
  border-color: transparent;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.package-name {
  margin: 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.highlighted .package-name {
  color: #f1c8ac;
}

.price-card h3 {
  margin: 12px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1;
}

.package-note {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
}

.highlighted .package-note {
  color: rgba(255, 255, 255, 0.74);
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.highlighted li::before {
  background: #f1c8ac;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.engagement-card .button {
  margin-top: 0;
}

.process {
  padding: 0 0 clamp(70px, 10vw, 120px);
}

.process h2 {
  margin-bottom: 28px;
}

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

.process-grid div {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.process-grid span {
  color: var(--accent);
  font-weight: 900;
}

.process-grid h3 {
  margin: 46px 0 8px;
  font-size: 1.3rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding: clamp(70px, 10vw, 118px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.9), rgba(23, 20, 17, 0.62)),
    url("./assets/portfolio/travel/rainy-city-night.jpg")
      center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hold {
  max-width: 760px;
}

.contact-hold p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.08rem;
}

.contact-list span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  outline: 0;
}

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

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f1c8ac;
  box-shadow: 0 0 0 3px rgba(241, 200, 172, 0.2);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .works .section-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .portfolio-module-heading {
    grid-template-columns: 52px minmax(0, 1fr) 42px;
  }

  .portfolio-module-copy {
    grid-column: auto;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .gallery-note {
    grid-column: 1;
  }

  .works-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .pricing-grid,
  .pricing-grid.two-up,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.engagement-card {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 6px;
  }

  .language-toggle {
    min-width: 38px;
    min-height: 38px;
  }

  .hero {
    min-height: 96vh;
    padding: 112px 18px 0;
  }

  .hero-slide {
    background:
      linear-gradient(0deg, rgba(23, 20, 17, 0.88), rgba(23, 20, 17, 0.26) 68%),
      var(--hero-image) var(--hero-position, center) / cover no-repeat;
  }

  .hero-content {
    padding-bottom: 72px;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .hero-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .section-wrap {
    width: min(100% - 32px, 1160px);
  }

  .portfolio-module-heading,
  .pricing-grid,
  .pricing-grid.two-up,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-module-copy {
    grid-column: 2;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .works .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-note {
    grid-column: 1;
    grid-row: 3;
  }

  .works-actions {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .works-actions {
    gap: 8px;
  }

  .sections-trigger {
    min-height: 40px;
    padding-left: 10px;
  }

  .section-list {
    width: min(300px, calc(100vw - 32px));
  }

  .portfolio-module-heading {
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    gap: 12px;
    align-items: start;
  }

  .portfolio-module h3 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .module-toggle {
    width: 40px;
    height: 40px;
  }

  .price-card {
    min-height: auto;
  }

  .process-grid {
    border-left: 0;
  }

  .process-grid div {
    border-left: 1px solid var(--line);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 72px 12px 20px;
  }

  .lightbox-close {
    top: 14px;
    right: 16px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-stage img {
    max-width: calc(100vw - 108px);
    max-height: calc(100dvh - 132px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .lightbox,
  .module-image img {
    transition: none;
  }
}
