:root {
  --bg: #f5f4f1;
  --bg-deep: #ece8e2;
  --surface: #f0ebe4;
  --surface-strong: #e6ddd1;
  --ink: #2f2b29;
  --ink-soft: #6f6964;
  --ink-light: rgba(255, 255, 255, 0.82);
  --line: rgba(47, 43, 41, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #8b7767;
  --accent-soft: #d7b897;
  --dark: #26221f;
  --header-h: 88px;
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --max: 1540px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.site-shell {
  min-height: 100vh;
}

.site-announcement {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 0.26rem;
  width: min(15rem, calc(100vw - 40px));
  padding: 0.9rem 1rem 0.95rem;
  border: 1px solid rgba(47, 43, 41, 0.1);
  border-radius: 22px;
  background: rgba(245, 244, 241, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(23, 19, 16, 0.12);
  color: var(--ink);
  text-align: left;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    opacity 220ms var(--ease);
}

.site-announcement.is-hidden {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

.site-announcement:hover,
.site-announcement:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 119, 103, 0.3);
  box-shadow: 0 22px 46px rgba(23, 19, 16, 0.16);
}

.site-announcement__tag,
.site-announcement__meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-announcement__tag {
  color: var(--accent);
}

.site-announcement__text {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-announcement__meta {
  color: var(--ink-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 16px 0;
  color: #fff;
  transition: color 280ms var(--ease);
}

.site-header.is-scrolled {
  color: var(--ink);
}

.site-header-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: calc(var(--header-h) - 16px);
  padding: 0 18px;
  pointer-events: auto;
}

.site-header-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(47, 43, 41, 0.08);
  border-radius: 999px;
  background: rgba(245, 244, 241, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}

.site-header.is-scrolled .site-header-bar::before {
  opacity: 1;
  transform: translateY(0);
}

.header-link,
.site-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-link {
  color: #fff;
  white-space: nowrap;
  transition: color 280ms var(--ease);
}

.site-header.is-scrolled .header-link {
  color: var(--ink);
}

.header-link:last-child {
  justify-self: end;
}

.site-logo {
  justify-self: center;
  color: inherit;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  letter-spacing: 0.08em;
}

.header-menu-icon {
  display: inline-grid;
  gap: 5px;
}

.header-menu-icon span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  padding: 1.4rem;
  background: rgba(27, 23, 21, 0.88);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 10, 9, 0.78);
}

.site-menu-top,
.site-menu-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-menu-grid {
  align-items: end;
}

.menu-eyebrow,
.site-menu-close,
.section-label,
.gallery-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-menu-close,
.menu-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-menu-nav {
  display: grid;
  gap: 0.7rem;
}

.site-menu-nav a {
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
  color: #fff;
}

.site-menu-meta {
  display: grid;
  align-content: end;
  gap: 0.6rem;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
}

.hero-media-wrap,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.25), rgba(14, 10, 8, 0.4) 30%, rgba(14, 10, 8, 0.7) 100%),
    linear-gradient(90deg, rgba(14, 10, 8, 0.52), rgba(14, 10, 8, 0.08) 45%, rgba(14, 10, 8, 0.52) 100%);
}

.hero-content,
.section,
.site-footer-inner {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.section,
.site-footer {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3.5rem) 0 2.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 46rem) minmax(14rem, 1fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
}

.hero-copy {
  max-width: 46rem;
}

.hero-title,
.section-intro h2,
.gallery-caption h3,
.process-lead,
.site-footer-logo {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
}

.hero-title {
  display: grid;
  gap: 0;
  max-width: none;
}

.hero-title-main,
.hero-title-sub {
  display: grid;
}

.hero-title-line {
  display: block;
}

.hero-title-main {
  max-width: none;
  gap: 0.02em;
  font-size: clamp(3.4rem, 4.95vw, 5.15rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero-title-main .hero-title-line {
  white-space: nowrap;
}

.hero-title-sub {
  max-width: 16ch;
  margin: 2.35rem 0 0;
  gap: 0.04em;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(62px);
  will-change: transform, opacity;
}

.hero-title__word + .hero-title__word {
  margin-left: 0.18ch;
}

.hero-detail {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.9rem;
}

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

.hero-actions {
  margin-top: 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(47, 43, 41, 0.24);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.button-link.light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-1px);
  border-color: currentColor;
}

.hero-aside {
  justify-self: end;
  display: grid;
  gap: 0.85rem;
  align-content: end;
  max-width: 11rem;
  padding-bottom: 1.2rem;
}

.hero-proof {
  display: grid;
  gap: 0.3rem;
}

.hero-proof-value {
  font-family: "Prata", Georgia, serif;
  font-size: clamp(3.6rem, 4.6vw, 5rem);
  line-height: 0.9;
}

.hero-proof-text,
.story-copy p,
.services-list p,
.services-note p,
.process-steps p,
.trust-grid p,
.contact-copy p,
.form-note,
.form-result,
.site-menu-meta p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}

.hero-aside-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.65;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 1px;
  height: 14px;
  background: #fff;
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-4px);
    opacity: 0;
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}

.section {
  padding: 8rem 0;
}

.section-intro {
  display: grid;
  gap: 0.8rem;
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section-intro.light h2,
.section-intro.light .section-label {
  color: #fff;
}

.section-label {
  color: var(--accent);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.15rem, 3.8vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.story-section .section-intro,
.services-section .section-intro,
.trust-section .section-intro,
.contact-section .section-intro {
  max-width: 36rem;
}

.gallery-section .section-intro {
  max-width: 42rem;
}

.gallery-section .section-intro h2 {
  max-width: 15ch;
}

.story-grid,
.contact-layout {
  display: grid;
  gap: 2.2rem;
}

.story-grid,
.contact-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-media-frame,
.process-side-image,
.gallery-image {
  position: relative;
  overflow: hidden;
  background: #ddd3c8;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}

.story-media {
  display: flex;
}

.story-media-frame {
  flex: 1;
  height: 100%;
  min-height: 44rem;
}

.story-media-frame img,
.process-side-image img,
.gallery-image img {
  height: 100%;
  object-fit: cover;
}

.story-copy p,
.services-list p,
.services-note p,
.trust-grid p,
.contact-copy p,
.form-note,
.form-result {
  color: var(--ink-soft);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.story-metrics div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.story-metrics span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Prata", Georgia, serif;
  font-size: 2.6rem;
  line-height: 0.9;
}

.story-metrics small {
  color: var(--ink-soft);
  line-height: 1.55;
}

.gallery-section {
  background: linear-gradient(180deg, transparent, rgba(236, 232, 226, 0.42));
}

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

.gallery-item {
  grid-column: span 3;
}

.gallery-item-large {
  grid-column: span 6;
}

.gallery-item-wide {
  grid-column: span 6;
}

.gallery-image {
  min-height: 20rem;
}

.gallery-item-large .gallery-image,
.gallery-item-wide .gallery-image {
  min-height: 33rem;
}

.gallery-caption {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
}

.gallery-kicker {
  color: var(--accent);
}

.gallery-caption h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.gallery-caption p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.services-board,
.process-grid {
  display: grid;
  gap: 2.2rem;
}

.services-board {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.services-overview {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.services-overview-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}

.services-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.services-formats span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-track {
  display: grid;
  border-top: 1px solid var(--line);
}

.services-track article,
.process-steps article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.services-track article:hover,
.services-track article:focus-within {
  transform: translateX(6px);
  border-bottom-color: rgba(139, 119, 103, 0.34);
}

.service-order,
.service-note,
.process-steps span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-order {
  padding-top: 0.35rem;
}

.service-note {
  align-self: center;
  white-space: nowrap;
  font-size: 0.7rem;
}

.service-body h3,
.process-steps h3,
.trust-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.55rem;
  line-height: 1.08;
}

.service-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.process-section {
  padding-top: 1.5rem;
}

.process-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 34px;
  background: linear-gradient(140deg, #22354e 0%, #243248 44%, #1c2634 100%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(17, 20, 25, 0.18);
}

.process-panel::before,
.process-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.process-panel::before {
  top: -10rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(202, 159, 111, 0.24), transparent 68%);
}

.process-panel::after {
  right: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(126, 151, 189, 0.22), transparent 70%);
}

.process-panel > * {
  position: relative;
  z-index: 1;
}

.process-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.process-panel-top .section-intro {
  margin-bottom: 0;
  max-width: none;
}

.process-panel-top .section-intro h2 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 4.1vw, 3.85rem);
  line-height: 0.98;
}

.process-lead {
  max-width: 21rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.process-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.process-side {
  display: grid;
  gap: 1rem;
}

.process-side-image {
  min-height: 40rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.process-side-note {
  max-width: 22rem;
  margin-left: auto;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.process-side-note span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-side-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.68;
}

.process-steps {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-light);
}

.process-steps article {
  border-bottom-color: var(--line-light);
}

.process-steps article:hover,
.process-steps article:focus-within {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.04);
}

.process-steps span {
  padding-top: 0.35rem;
  color: var(--accent-soft);
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

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

.trust-grid article {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(139, 119, 103, 0.26);
  border-radius: 50%;
  color: var(--accent);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-grid p {
  margin: 0;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-actions {
  margin: 1rem 0;
}

.contact-facts {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-facts div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-facts span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-facts small {
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: rgba(236, 232, 226, 0.72);
  border: 1px solid rgba(47, 43, 41, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(47, 43, 41, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid rgba(139, 119, 103, 0.5);
  border-color: rgba(139, 119, 103, 0.5);
}

.form-submit {
  min-height: 56px;
  margin-top: 0.4rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-1px);
}

.form-note,
.form-result {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 2rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.site-footer-brand,
.site-footer-nav,
.site-footer-meta {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.site-footer-logo {
  display: inline-block;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  letter-spacing: 0.08em;
}

.site-footer-brand p,
.site-footer-meta p,
.site-footer-meta small {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-footer-nav a,
.site-footer-meta a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

[data-hero-img] {
  opacity: 0;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.05);
  transition: opacity 1.4s var(--ease), transform 1.8s var(--ease);
}

[data-hero-img].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1);
}

[data-animate] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

[data-animate][data-animate-faster] {
  transform: translateY(26px);
  transition-duration: 0.7s;
}

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

[data-animate-img] {
  overflow: hidden;
}

[data-animate-img] img {
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}

[data-animate-img].is-visible img {
  transform: scale(1);
}

@media (max-width: 1120px) {
  .story-grid,
  .services-board,
  .process-panel-top,
  .process-grid,
  .contact-layout,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .services-overview {
    position: static;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 6;
  }

  .process-side-note {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 82px;
  }

  .site-announcement {
    right: 14px;
    bottom: 14px;
    width: min(14rem, calc(100vw - 28px));
  }

  .site-header {
    padding: 10px 10px 0;
  }

  .site-header-bar {
    padding: 0 14px;
  }

  .site-logo {
    font-size: 1.4rem;
  }

  .hero-content,
  .section,
  .site-footer-inner {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 4rem);
  }

  .hero-layout,
  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 1.4rem;
  }

  .hero-copy {
    max-width: 32rem;
  }

  .hero-aside {
    justify-self: start;
    max-width: 14rem;
    padding-bottom: 0.2rem;
  }

  .hero-rail {
    gap: 0.65rem;
    margin-top: 1.6rem;
  }

  .story-metrics,
  .trust-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: auto;
  }

  .gallery-item-large .gallery-image,
  .gallery-item-wide .gallery-image {
    min-height: 25rem;
  }

  .site-menu-top,
  .site-menu-grid {
    flex-direction: column;
  }

  .site-menu-inner {
    overflow: auto;
  }
}

@media (max-width: 560px) {
  .site-announcement {
    right: 12px;
    bottom: 12px;
    width: min(13.5rem, calc(100vw - 24px));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .header-link,
  .site-logo {
    font-size: 0.68rem;
  }

  .site-logo {
    font-size: 1.08rem;
  }

  .hero-title-main {
    font-size: clamp(3rem, 11.8vw, 4.05rem);
  }

  .hero-title-main .hero-title-line {
    white-space: normal;
  }

  .hero-title-sub {
    max-width: 14ch;
    font-size: 1.12rem;
  }

  .hero-detail {
    gap: 1rem;
    margin-top: 1.45rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-intro h2 {
    max-width: 12ch;
    font-size: 2.35rem;
  }

  .story-media-frame,
  .process-side-image {
    min-height: 28rem;
  }

  .gallery-image {
    min-height: 17rem;
  }

  .gallery-item-large .gallery-image,
  .gallery-item-wide .gallery-image {
    min-height: 20rem;
  }

  .services-track article,
  .process-steps article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .service-order,
  .service-note,
  .process-steps span {
    padding-top: 0;
  }

  .contact-form {
    padding: 1.2rem;
  }
}
