:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --paper: #eeeeee;
  --panel: #ffffff;
  --line: #d2d2d2;
  --accent: #e60000;
  --accent-dark: #b80000;
  --gray-block: #b7b7b7;
  --black: #050505;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(238, 238, 238, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(20, 20, 20, 0.06);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(238, 238, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(20, 20, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
}

.brand-logo {
  display: block;
  width: clamp(138px, 14vw, 180px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: #dedede;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.menu-active .site-nav a:hover {
  background: #dedede;
}

.site-nav .nav-cta {
  background: var(--accent);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: clamp(28px, 5vw, 72px);
  min-height: 86svh;
  overflow: hidden;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 150px;
  background: var(--accent);
  color: #fff;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(230, 0, 0, 0.82), rgba(230, 0, 0, 0.46)),
    url("https://images.unsplash.com/photo-1601506521937-0121a7fc2a6b?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 38%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, var(--accent) 0 50%, rgba(230, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.48));
}

.hero-content,
.showreel-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.12;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showreel-card {
  width: min(620px, 100%);
  justify-self: end;
}

.showreel-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showreel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.54)),
    #000;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.showreel-frame iframe,
.showreel-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: cover;
}

.showreel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.showreel-play span {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(230, 0, 0, 0.92);
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.showreel-play:hover span {
  background: var(--accent-dark);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: #fff;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

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

.hero-panel strong {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 8vw, 92px);
  align-items: start;
}

.intro p:last-child {
  margin-bottom: 0;
  padding-top: 12px;
  font-size: 1.16rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-grid article {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.icon {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
}

.work {
  background: var(--black);
  color: #fff;
}

.work-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.work .section-heading p,
.cover-card span {
  color: #ff3b30;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 28px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -14px 0 34px;
}

.work-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid #303030;
  background: #111;
  color: #d9d9d9;
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

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

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

.cover-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #171717;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.group-grid .cover-card {
  aspect-ratio: 9 / 16;
}

.landscape-grid .cover-card {
  aspect-ratio: 16 / 9;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.cover-card .instagram-card-preview {
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
  pointer-events: none;
}

.cover-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
  opacity: 0.88;
  transition: opacity 180ms ease;
}

.cover-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

.cover-card:hover::after {
  opacity: 0.64;
}

.cover-card-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(230, 0, 0, 0.96), rgba(5, 5, 5, 0.96) 68%),
    var(--black);
}

.cover-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 24px;
  color: #fff;
  text-transform: uppercase;
}

.cover-placeholder strong,
.cover-placeholder em,
.cover-placeholder small {
  display: block;
}

.cover-placeholder strong {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 0.9;
  font-weight: 900;
}

.cover-placeholder em {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.95;
}

.cover-placeholder small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
}

.platform-card {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(230, 0, 0, 0.88), rgba(5, 5, 5, 0.94)),
    var(--black);
}

.platform-card img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(48%, 150px);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.platform-card:hover img {
  transform: translate(-50%, -50%) scale(1.04);
}

.platform-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.text-card {
  gap: 8px;
  padding: 28px;
  text-align: center;
}

.text-card strong,
.text-card em {
  position: relative;
  z-index: 1;
}

.text-card em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
}

.cover-card span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 0 9px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.group-grid .cover-card span {
  display: none;
}

.work-group {
  margin-top: 36px;
}

.work-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border-top: 1px solid #2e2e2e;
  padding-top: 22px;
}

.work-group-heading .eyebrow {
  margin-bottom: 8px;
}

.work-group-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  text-transform: uppercase;
}

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

.work-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.work-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.work-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.work-popup-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(540px, 100%);
  max-height: min(860px, calc(100svh - 48px));
  overflow: hidden;
  border: 1px solid #2f2f2f;
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.work-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #2f2f2f;
}

.work-popup-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

.work-popup-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #454545;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.work-popup iframe {
  width: 100%;
  height: min(620px, calc(100svh - 190px));
  border: 0;
  background: #fff;
}

.work-popup .button {
  margin: 14px 16px 16px;
}

body.popup-open {
  overflow: hidden;
}

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

.timeline div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.timeline span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof {
  padding-top: 0;
}

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

.proof-grid article {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.proof-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  background: var(--gray-block);
}

.about-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #050505;
}

.about-image img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.about-image .about-photo-primary {
  inset: 0;
  height: 100%;
}

.about-image .about-photo-secondary,
.about-image .about-photo-tertiary {
  z-index: 1;
  width: clamp(170px, 24vw, 330px);
  height: clamp(170px, 24vw, 330px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.about-image .about-photo-secondary {
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
}

.about-image .about-photo-tertiary {
  right: clamp(18px, 4vw, 56px);
  top: clamp(18px, 4vw, 56px);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 92px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.contact-list {
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.map-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.map-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card a:hover {
  background: var(--accent-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  background: #f5f5f5;
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.12);
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: min(220px, 52vw);
  height: auto;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(238, 238, 238, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 0 14px;
  }

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

  .hero {
    padding-bottom: 72px;
  }

  .service-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .showreel-card {
    justify-self: stretch;
    width: 100%;
    margin-top: 8px;
  }

  .about-image {
    min-height: 520px;
  }

  .about-image .about-photo-secondary,
  .about-image .about-photo-tertiary {
    width: clamp(136px, 34vw, 220px);
    height: clamp(136px, 34vw, 220px);
  }
}

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

  .brand {
    padding: 7px 8px;
  }

  .brand-logo {
    width: 122px;
  }

  .hero {
    min-height: 90svh;
    padding-top: 102px;
    padding-bottom: 48px;
  }

  .hero-panel,
  .service-grid,
  .timeline,
  .cover-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 16px;
  }

  .service-grid article {
    min-height: auto;
  }

  .about-image {
    min-height: 460px;
  }

  .about-image .about-photo-secondary,
  .about-image .about-photo-tertiary {
    width: 148px;
    height: 148px;
  }

  .icon {
    margin-bottom: 40px;
  }

  .contact-list a,
  .contact-list span {
    width: 100%;
    border-radius: var(--radius);
  }
}
