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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 87, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #04070d 0%, #060b14 42%, #0b1220 100%);
}

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

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

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

:root {
  --ink-950: #02050a;
  --ink-900: #07101b;
  --ink-850: #0d1828;
  --ink-800: #122034;
  --ink-700: #21324b;
  --line: rgba(152, 177, 214, 0.18);
  --line-strong: rgba(152, 177, 214, 0.32);
  --text: #eef4ff;
  --muted: #9db0ca;
  --accent: #0057ff;
  --accent-strong: #2d7dff;
  --accent-soft: rgba(45, 125, 255, 0.16);
  --card: rgba(7, 16, 27, 0.86);
  --surface: rgba(15, 26, 41, 0.72);
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(2, 6, 14, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100vw - 40px));
  --section-space: clamp(72px, 8vw, 96px);
  --card-pad: clamp(1.2rem, 2vw, 1.55rem);
  --grid-gap: clamp(1rem, 1.8vw, 1.35rem);
}

.page-city .site-main,
.page-gallery .site-main {
  padding-top: 94px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(45, 125, 255, 0.14);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

.section-title {
  margin: 1rem 0 0;
  font-family: "Black Ops One", sans-serif;
  font-size: clamp(2.15rem, 5.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-title span,
.accent {
  color: var(--accent-strong);
}

.section-copy {
  margin-top: 1rem;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  background: rgba(2, 8, 16, 0.8);
}

.site-header.scrolled {
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  height: 52px;
  width: auto;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-title {
  font-family: "Black Ops One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 0.7rem 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 18px 45px rgba(0, 87, 255, 0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 125, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 125, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(28px, 4vw, 42px) 0 clamp(72px, 8vw, 90px);
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-logo {
  width: min(420px, 74%);
  height: auto;
  margin-bottom: 1.2rem;
}

.hero-title {
  margin: 1.25rem 0 0;
  font-family: "Black Ops One", sans-serif;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 10ch;
  text-wrap: balance;
}

.hero .hero-title {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero-copy p {
  max-width: 62ch;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.stat-grid,
.card-grid,
.gallery-grid,
.city-grid,
.service-grid,
.testimonial-grid,
.value-grid,
.work-grid,
.coverage-grid {
  display: grid;
  gap: var(--grid-gap);
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.stat-card,
.info-card,
.service-card,
.city-card,
.quote-card,
.value-card,
.work-card,
.gallery-card,
.coverage-card,
.feature-card,
.cta-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.stat-card,
.feature-card,
.service-card,
.city-card,
.value-card,
.coverage-card,
.process-card,
.quote-card {
  padding: var(--card-pad);
}

.stat-value {
  font-family: "Black Ops One", sans-serif;
  color: var(--white);
  font-size: 2rem;
}

.stat-label {
  margin-top: 0.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-visual {
  display: grid;
  gap: clamp(0.9rem, 1.5vw, 1.1rem);
  position: relative;
  z-index: 1;
  align-content: start;
  min-width: 0;
}

.hero-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 42vw, 520px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(45, 125, 255, 0.22), rgba(7, 16, 27, 0.96) 58%),
    rgba(7, 16, 27, 0.96);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2vw, 2rem);
}

.hero-mark {
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 50px rgba(0, 87, 255, 0.28));
}

.hero-support {
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 27, 0.92);
  box-shadow: var(--shadow);
}

.hero-support h3 {
  margin: 0;
  font-family: "Black Ops One", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-support p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-shot,
.work-card figure,
.gallery-card figure,
.quote-card figure,
.city-hero-shot {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
}

.hero-shot img,
.work-card img,
.gallery-card img,
.quote-card img,
.city-hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot {
  min-height: clamp(320px, 40vw, 520px);
  height: clamp(320px, 40vw, 520px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-shot::after,
.work-card figure::after,
.gallery-card figure::after,
.city-hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2, 5, 10, 0.72) 100%);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), transparent 55%);
  pointer-events: none;
}

.feature-card h3,
.service-card h3,
.city-card h3,
.value-card h3,
.coverage-card h3,
.process-card h3,
.quote-card h3,
.contact-panel h3 {
  margin: 0;
  font-family: "Black Ops One", sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.city-card p,
.value-card p,
.coverage-card p,
.process-card p,
.quote-card p,
.contact-panel p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.service-grid,
.city-grid,
.coverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card,
.gallery-card {
  overflow: hidden;
  min-width: 0;
}

.work-card figure,
.gallery-card figure {
  height: clamp(240px, 28vw, 320px);
}

.card-copy {
  padding: clamp(1rem, 1.6vw, 1.4rem);
}

.card-copy h3 {
  margin: 0;
  font-family: "Black Ops One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.meta-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-card:hover,
.work-card:hover,
.gallery-card:hover,
.service-card:hover,
.coverage-card:hover {
  border-color: var(--line-strong);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.spotlight .hero-shot {
  min-height: clamp(300px, 36vw, 420px);
  height: clamp(300px, 36vw, 420px);
}

.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
  align-items: stretch;
}

.cta-card {
  padding: clamp(1.4rem, 2.2vw, 2rem);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.contact-panel {
  padding: clamp(1.35rem, 2vw, 2rem);
}

.contact-panel strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-item {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.contact-item span {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.95rem 1rem;
  min-width: 0;
}

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

.field-full {
  grid-column: 1 / -1;
}

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.filter-nav a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-section {
  scroll-margin-top: 110px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card .card-copy {
  padding-top: 1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-hero .breadcrumbs {
  margin-bottom: 0.95rem;
}

.page-gallery .breadcrumbs {
  margin-bottom: 0.95rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.city-hero {
  padding-bottom: clamp(64px, 7vw, 78px);
}

.city-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: center;
}

.city-hero-shot {
  min-height: clamp(340px, 44vw, 560px);
  height: clamp(340px, 44vw, 560px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.list-block {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.list-item {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.list-item strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.coverage-grid {
  margin-top: 2rem;
}

.coverage-card ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.94);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero-grid,
  .spotlight,
  .cta-split,
  .contact-wrap,
  .city-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .city-grid,
  .value-grid,
  .work-grid,
  .gallery-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shot,
  .city-hero-shot {
    min-height: 360px;
    height: 360px;
  }

  .hero-mark-wrap {
    min-height: 360px;
  }

  .hero-mark {
    width: min(260px, 72%);
  }

  .hero-copy,
  .section-heading {
    max-width: 100%;
  }

  .hero .hero-title {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 8, 16, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .stat-grid,
  .form-grid,
  .service-grid,
  .city-grid,
  .value-grid,
  .work-grid,
  .gallery-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
  }

  .brand-mark {
    display: none;
  }

  .hero-logo {
    width: min(360px, 84%);
  }

  .nav-shell {
    min-height: 82px;
  }

  .hero-grid,
  .city-hero {
    padding-bottom: 72px;
  }

  .shell {
    width: min(1180px, calc(100vw - 28px));
  }

  .hero .hero-title,
  .city-hero .hero-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 8.8vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.95rem, 8vw, 3rem);
  }

  .hero-copy p,
  .section-copy,
  .card-copy p,
  .feature-card p,
  .contact-panel p {
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .work-card figure,
  .gallery-card figure,
  .hero-shot,
  .city-hero-shot {
    height: 260px;
    min-height: 260px;
  }

  .hero-mark-wrap {
    min-height: 280px;
  }

  .hero-mark {
    width: min(220px, 68%);
  }
}

@media (max-width: 520px) {
  :root {
    --shell: min(1180px, calc(100vw - 30px));
    --radius: 20px;
    --radius-sm: 14px;
  }

  .site-header {
    background: rgba(2, 8, 16, 0.94);
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    height: 44px;
  }

  .eyebrow {
    gap: 0.6rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .section-title {
    font-size: clamp(1.65rem, 8.6vw, 2.3rem);
    line-height: 1.04;
  }

  .hero-title,
  .hero .hero-title,
  .city-hero .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    line-height: 1.03;
    letter-spacing: 0.02em;
  }

  .hero-copy p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .hero-copy,
  .section-heading,
  .cta-card,
  .contact-panel {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

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

  .card-copy,
  .contact-panel,
  .cta-card,
  .stat-card,
  .service-card,
  .city-card,
  .value-card,
  .coverage-card,
  .feature-card,
  .process-card,
  .quote-card {
    padding: 1rem;
  }

  .work-card figure,
  .gallery-card figure,
  .hero-shot,
  .city-hero-shot {
    height: 220px;
    min-height: 220px;
  }

  .hero-mark-wrap {
    min-height: 240px;
    padding: 1rem;
  }

  .hero-mark {
    width: min(180px, 64%);
  }

  .filter-nav {
    gap: 0.55rem;
  }

  .filter-nav a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: min(1180px, calc(100vw - 34px));
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-title,
  .hero .hero-title,
  .city-hero .hero-title {
    font-size: clamp(1.65rem, 8.1vw, 2.2rem);
    line-height: 1.05;
  }

  .eyebrow {
    max-width: 100%;
  }
}

@media (min-width: 1180px) {
  .city-grid,
  .work-grid,
  .gallery-grid,
  .coverage-grid {
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 1440px) {
  :root {
    --shell: min(1320px, calc(100vw - 72px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  }

  .service-grid,
  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-grid,
  .work-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1720px) {
  :root {
    --shell: min(1460px, calc(100vw - 96px));
  }

  .hero-grid {
    gap: 3.5rem;
  }

  .hero-mark-wrap {
    min-height: 560px;
  }

  .work-card figure,
  .gallery-card figure {
    height: 340px;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero-grid {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .hero .hero-title {
    font-size: clamp(2.35rem, 4vw, 3.8rem);
  }

  .hero-mark-wrap {
    min-height: 420px;
  }

  .hero-shot,
  .city-hero-shot {
    min-height: 420px;
    height: 420px;
  }
}
