:root {
  --bg: #f3f5f4;
  --bg-elevated: #ffffff;
  --ink: #1a221f;
  --ink-soft: #4d5a54;
  --line: rgba(26, 34, 31, 0.12);
  --accent: #2f5d50;
  --accent-deep: #23463c;
  --accent-soft: #d9e6e1;
  --hero-ink: #f7faf8;
  --shadow: 0 24px 60px rgba(26, 34, 31, 0.08);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #e4ece8 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 20%, #e8ece7 0%, transparent 50%),
    linear-gradient(180deg, #f7f8f7 0%, var(--bg) 40%, #eef1ef 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

strong {
  font-weight: 600;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.25rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(26, 34, 31, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    min-height 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 3.85rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(26, 34, 31, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 30px rgba(26, 34, 31, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--ink);
}

.logo-mark {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(47, 93, 80, 0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  border: 1px solid rgba(26, 34, 31, 0.08);
  border-radius: 999px;
  background: rgba(243, 245, 244, 0.65);
}

.nav a {
  position: relative;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav a::after {
  display: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 2px rgba(26, 34, 31, 0.06);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #f7faf8;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(47, 93, 80, 0.22);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #f7faf8;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(47, 93, 80, 0.28);
}

.header-cta:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

@media (max-width: 719px) {
  .logo-tag {
    display: none;
  }

  .logo-mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  .header-cta {
    min-height: 2.35rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--hero-ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 28, 24, 0.18) 0%, rgba(18, 28, 24, 0.55) 55%, rgba(18, 28, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 28, 24, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 7.5rem 0 4.5rem;
  animation: riseIn 1s ease 0.15s both;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: rgba(247, 250, 248, 0.92);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(247, 250, 248, 0.82);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #f7faf8;
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--hero-ink);
  border-color: rgba(247, 250, 248, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(247, 250, 248, 0.1);
  border-color: rgba(247, 250, 248, 0.8);
}

.section-inner {
  width: min(100% - 2.5rem, var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  box-sizing: border-box;
  overflow-x: clip;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-intro p,
.about-copy > p,
.differentiator > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 300;
}

.about-copy > p + p {
  margin-top: 1rem;
}

.video-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent),
    var(--bg);
}

.video-player {
  width: 100%;
  max-width: 920px;
  min-width: 0;
}

.video-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 560px);
  background: #18211e;
  box-shadow: var(--shadow);
}

.video-frame {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
}

.collage {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  min-width: 0;
  min-height: 0;
}

.collage.is-active {
  opacity: 1;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: collageKen 8s ease-in-out infinite alternate;
}

.collage-single {
  display: block;
}

.collage-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #0f1613;
}

.collage-duo img {
  min-width: 0;
  min-height: 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #0f1613;
}

.collage-grid img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
}

@keyframes collageKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 640px) {
  .video-stage {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-idle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at center, rgba(16, 24, 21, 0.1) 0%, rgba(16, 24, 21, 0.45) 72%),
    linear-gradient(180deg, rgba(16, 24, 21, 0.22) 0%, rgba(16, 24, 21, 0.58) 100%);
  text-align: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-player.is-playing .video-idle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-idle .play-btn {
  pointer-events: auto;
}

.video-caption-idle {
  margin: 0;
  max-width: min(24rem, 90%);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: 1.2;
  color: #f4f7f5;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.video-controls {
  position: absolute;
  left: clamp(0.65rem, 2.5vw, 1rem);
  right: clamp(0.65rem, 2.5vw, 1rem);
  bottom: clamp(0.65rem, 2.5vw, 1rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(247, 250, 248, 0.18);
  border-radius: 999px;
  background: rgba(16, 24, 21, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.video-player.is-playing .video-controls {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.video-controls .video-caption {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  line-height: 1.25;
  color: #f4f7f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  text-shadow: none;
}

.stop-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border: 1px solid rgba(247, 250, 248, 0.28);
  border-radius: 999px;
  background: rgba(247, 250, 248, 0.12);
  color: #f7faf8;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.stop-btn:hover,
.stop-btn:focus-visible {
  background: rgba(247, 250, 248, 0.22);
  border-color: rgba(247, 250, 248, 0.55);
  transform: translateY(-1px);
}

.stop-btn:focus-visible {
  outline: 2px solid #f7faf8;
  outline-offset: 2px;
}

.stop-icon {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.15rem;
  background: currentColor;
}

.play-btn {
  --play-size: clamp(4.25rem, 14vw, 5.75rem);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--play-size);
  height: var(--play-size);
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f7faf8;
  font-family: var(--font-body);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.3s ease;
}

.play-btn:hover,
.play-btn:focus-visible {
  transform: scale(1.06);
}

.play-btn:focus-visible {
  outline: 2px solid #f7faf8;
  outline-offset: 6px;
}

.play-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 250, 248, 0.45);
  animation: playPulse 2.4s ease-out infinite;
}

.play-pulse-delay {
  animation-delay: 1.2s;
}

.play-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    var(--accent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 12px 32px rgba(16, 24, 21, 0.35),
    0 0 40px rgba(47, 93, 80, 0.45);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover .play-core,
.play-btn:focus-visible .play-core {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    var(--accent-deep);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 16px 40px rgba(16, 24, 21, 0.4),
    0 0 48px rgba(47, 93, 80, 0.55);
}

.play-core svg {
  width: 1.55rem;
  height: 1.55rem;
  margin-left: 0.12rem;
}

.play-label {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 24, 21, 0.55);
  border: 1px solid rgba(247, 250, 248, 0.2);
  color: #f7faf8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  animation: labelGlow 2.4s ease-in-out infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes labelGlow {
  0%,
  100% {
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(247, 250, 248, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(247, 250, 248, 0.12);
  }
}

@media (max-width: 720px) {
  .video-controls {
    border-radius: 16px;
    padding: 0.7rem;
    gap: 0.65rem;
  }

  .video-controls .video-caption {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .stop-btn {
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .video-controls {
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
  }

  .stop-btn {
    justify-content: center;
    width: 100%;
  }
}

.video-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  height: 3px;
  background: rgba(247, 250, 248, 0.18);
}

.video-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-soft), #f4f7f5);
  transition: width 0.2s linear;
}

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

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-copy h2 {
  max-width: 14ch;
}

.differentiator {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background:
    linear-gradient(145deg, #ffffff 0%, #eef4f1 100%);
  border: 1px solid var(--line);
  animation: fadeUp 0.8s ease both;
}

.differentiator h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}

.diff-stat {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.diff-stat span {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.35em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  color: var(--ink-soft);
}

.services-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65) 20%, rgba(255, 255, 255, 0.85));
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.service-item {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d7ddd9;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.04);
}

.service-copy h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
}

.service-copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-weight: 300;
}

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

.contact-panel {
  display: grid;
  gap: 2.5rem;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.contact-copy p:last-child {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 300;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-action {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  transition:
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(26, 34, 31, 0.1);
}

.contact-action:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.contact-action-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-action-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-action-phone {
  background:
    linear-gradient(145deg, #ffffff 0%, #eef4f1 100%);
}

.contact-action-email:hover,
.contact-action-email:focus-visible {
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e8ece9;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-contact {
  margin-top: 0.75rem !important;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

.footer-meta {
  font-size: 0.8rem !important;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    gap: 3rem;
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .service-item.reverse .service-image {
    order: 2;
  }

  .service-item.reverse .service-copy {
    order: 1;
    justify-self: end;
    text-align: right;
  }

  .service-item.reverse .service-copy p {
    margin-left: auto;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img,
  .service-item,
  .collage img {
    transform: none;
    opacity: 1;
  }
}
