:root {
  --color-brand-paper: #f4f2ec;
  --color-brand-charcoal: #1a1a1a;
  --color-brand-cobalt: #1434b9;
  --color-brand-gold: #d2b15c;
  --color-brand-muted: #666666;
  --color-brand-cream: #eae5d9;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Manrope", sans-serif;
  --container-width: min(1200px, calc(100vw - 3rem));
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-color: var(--color-brand-paper);
  --hero-parallax: 0px;
}

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

html {
  scroll-behavior: smooth;
}

#home,
#about,
#services,
#work,
#contact {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  background: var(--color-brand-paper);
  color: var(--color-brand-charcoal);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--color-brand-cobalt);
  color: #ffffff;
}

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

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.site-noise,
.texture-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 1.5rem 0;
  color: var(--header-color);
  transition: color 0.5s ease;
}

.site-header.is-light {
  --header-color: var(--color-brand-charcoal);
}

.site-header.is-dark {
  --header-color: var(--color-brand-paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.brand:hover .brand-logo {
  transform: rotate(45deg);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 0.5s ease;
}

.menu-icon {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-icon-close {
  opacity: 0;
  transform: scale(0.8) rotate(-18deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon-open {
  opacity: 0;
  transform: scale(0.8) rotate(18deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(26, 26, 26, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: 100vw;
  max-width: 100vw;
  padding: 7rem 1.5rem 2rem;
  background: var(--color-brand-charcoal);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  color: rgba(244, 242, 236, 0.7);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--color-brand-paper);
}

.mobile-menu-link.is-active {
  color: var(--color-brand-cobalt);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  --header-color: var(--color-brand-paper);
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-brand-cobalt);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-expo);
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a.is-active {
  color: var(--color-brand-cobalt);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: var(--color-brand-charcoal);
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-parallax {
  position: absolute;
  inset: -10% 0;
  transform: translate3d(0, var(--hero-parallax), 0);
  will-change: transform;
}

.hero-image-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1);
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--color-brand-charcoal) 100%);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  place-items: center;
  padding-top: 5rem;
}

.hero-title-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
}

.hero-strike {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-brand-charcoal);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 1s var(--ease-out-expo), opacity 1s var(--ease-out-expo);
  z-index: 3;
  pointer-events: none;
}

.hero-title-group:hover .hero-strike,
.hero-title-group.is-touch-active .hero-strike,
.hero-title-group:active .hero-strike {
  width: min(120vw, 80rem);
  opacity: 1;
}

.hero-line {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(5.5rem, 18vw, 15rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: var(--color-brand-paper);
  transition:
    transform 1s var(--ease-out-expo),
    color 1s var(--ease-out-expo),
    -webkit-text-stroke 1s var(--ease-out-expo);
}

.hero-line-top {
  z-index: 2;
}

.hero-line-bottom {
  margin-left: 15vw;
  line-height: 0.82;
}

.hero-title-group:hover .hero-line-top,
.hero-title-group.is-touch-active .hero-line-top,
.hero-title-group:active .hero-line-top {
  transform: translateX(-1.5rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-brand-paper);
}

.hero-title-group:hover .hero-line-bottom,
.hero-title-group.is-touch-active .hero-line-bottom,
.hero-title-group:active .hero-line-bottom {
  transform: translateX(1.5rem);
}

.hero-moon {
  font-style: italic;
  font-weight: 300;
  color: var(--color-brand-cobalt);
  transition: color 1s var(--ease-out-expo);
}

.hero-title-group:hover .hero-moon,
.hero-title-group.is-touch-active .hero-moon,
.hero-title-group:active .hero-moon {
  color: var(--color-brand-paper);
}

.hero-footer {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.hero-meta-grid {
  display: grid;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 242, 236, 0.2);
}

.hero-meta-block {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.footer-column p {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--color-brand-paper);
}

.microcopy {
  margin-top: 0.85rem;
  max-width: 14rem;
  font-size: 0.74rem;
  line-height: 1.8;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.6);
}

.hero-meta-statement p {
  max-width: 30rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  font-style: italic;
  color: var(--color-brand-paper);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  flex: 0 0 auto;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.action-icon svg,
.project-arrow svg,
.footer-project-link svg {
  width: 1rem;
  height: 1rem;
}

.light-action {
  color: var(--color-brand-paper);
}

.light-action:hover,
.light-action.is-touch-active,
.light-action:active {
  color: var(--color-brand-cobalt);
}

.light-action .action-icon {
  border: 1px solid var(--color-brand-paper);
}

.light-action:hover .action-icon,
.light-action.is-touch-active .action-icon,
.light-action:active .action-icon {
  background: var(--color-brand-paper);
  color: var(--color-brand-charcoal);
  border-color: var(--color-brand-paper);
  transform: translateX(0.15rem);
}

.dark-action {
  color: var(--color-brand-charcoal);
}

.dark-action .action-icon {
  border: 1px solid var(--color-brand-charcoal);
}

.dark-action:hover .action-icon,
.dark-action.is-touch-active .action-icon,
.dark-action:active .action-icon {
  background: var(--color-brand-charcoal);
  color: var(--color-brand-paper);
  transform: translateX(0.15rem);
}

.marquee-shell {
  position: relative;
  z-index: 20;
}

.marquee-section {
  overflow: hidden;
  padding: 1.5rem 0;
  background: #dbd9d3;
  color: var(--color-brand-charcoal);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.7em;
  color: #dbc472;
}

.services-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.services-page {
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.work-page {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.case-study-page {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.contact-layout {
  width: min(1280px, calc(100vw - 3rem));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.contact-copy {
  width: 100%;
}

.contact-title {
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.95;
  font-weight: 500;
}

.contact-title span {
  color: var(--color-brand-cobalt);
  font-style: italic;
}

.contact-intro {
  max-width: 22rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
}

.contact-links {
  margin-bottom: 3rem;
}

.contact-email,
.contact-whatsapp {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  transition: color 0.3s ease, font-style 0.3s ease;
}

.contact-email {
  margin-bottom: 0.5rem;
}

.contact-email:hover,
.contact-email:active,
.contact-email.is-touch-active,
.contact-whatsapp:hover,
.contact-whatsapp:active,
.contact-whatsapp.is-touch-active {
  color: var(--color-brand-cobalt);
  font-style: italic;
}

.contact-image {
  height: 250px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.6;
}

.contact-form-wrap {
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.contact-field label {
  color: rgba(26, 26, 26, 0.7);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  background: transparent;
  border-radius: 0;
  color: var(--color-brand-charcoal);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-field textarea {
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--color-brand-cobalt);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(26, 26, 26, 0.45);
}

.contact-submit {
  width: 100%;
  padding: 1.5rem;
  border: 0;
  background: var(--color-brand-charcoal);
  color: var(--color-brand-paper);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit:hover,
.contact-submit:active {
  background: var(--color-brand-cobalt);
}

.case-study-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.case-study-back-link:hover {
  color: var(--color-brand-cobalt);
}

.case-study-back-link svg {
  width: 1rem;
  height: 1rem;
}

.case-study-header {
  display: grid;
  gap: 3rem;
  margin-bottom: 5rem;
}

.case-study-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 500;
}

.case-study-title-link {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.case-study-title-link:hover,
.case-study-title-link:focus-visible {
  color: var(--color-brand-cobalt);
}

.case-study-title-link:focus-visible {
  outline: none;
}

.case-study-title-link.is-static {
  pointer-events: none;
}

.case-study-intro {
  max-width: 42rem;
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.3;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study-meta span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(26, 26, 26, 0.5);
}

.case-study-meta strong {
  font-weight: 700;
  letter-spacing: normal;
}

.case-study-hero {
  width: 100%;
  height: 60vh;
  margin-bottom: 8rem;
  overflow: hidden;
}

.case-study-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 8rem;
}

.case-study-challenge-title h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
}

.case-study-copy {
  display: grid;
  gap: 1.5rem;
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.8;
}

.case-study-mockups {
  display: grid;
  gap: 2rem;
  margin-bottom: 8rem;
}

.case-study-mockup {
  aspect-ratio: 4 / 5;
  padding: 2rem;
}

.case-study-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-mockup-light {
  background: var(--color-brand-cream);
}

.case-study-mockup-light img {
  opacity: 1;
}

.case-study-mockup-dark {
  background: var(--color-brand-charcoal);
}

.case-study-mockup-dark img {
  opacity: 1;
}

.case-study-impact {
  display: grid;
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.case-study-impact-title h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
}

.case-study-impact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.case-study-stat span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-style: italic;
  line-height: 1;
}

.case-study-stat p {
  color: rgba(26, 26, 26, 0.6);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-page-header {
  margin-bottom: 5rem;
  text-align: center;
}

.work-page-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.work-page-subtitle {
  color: rgba(26, 26, 26, 0.6);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  gap: 3rem;
}

.work-card a {
  display: block;
  width: 100%;
}

.work-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-brand-cream);
}

.work-card .project-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 52, 185, 0.2);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.75) contrast(0.95);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.work-card:hover .work-card-media img,
.work-card:focus-within .work-card-media img,
.work-card.is-touch-active .work-card-media img,
.work-card:active .work-card-media img {
  transform: scale(1.05);
  filter: grayscale(0) saturate(1) contrast(1);
}

.work-card:hover .project-tint,
.work-card:focus-within .project-tint,
.work-card.is-touch-active .project-tint,
.work-card:active .project-tint {
  opacity: 1;
}

.work-card:hover .project-overlay,
.work-card:focus-within .project-overlay,
.work-card.is-touch-active .project-overlay,
.work-card:active .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.work-card-meta h2 {
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
}

.work-card-meta p {
  color: rgba(26, 26, 26, 0.6);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-card-meta span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
}

.services-page-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 6rem;
}

.services-page-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.95;
  font-weight: 500;
}

.services-page-title span {
  color: #1434b9;
  font-style: italic;
}

.services-page-subtitle {
  max-width: 12.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.45;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-page-grid {
  display: grid;
  gap: 4rem;
}

.service-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-brand-charcoal);
}

.service-card-head h2 {
  color: #1a1a1a;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(0.5rem) rotate(-45deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-arrow svg {
  width: 20px;
  height: 20px;
}

.service-card:hover .service-card-head h2,
.service-card.is-touch-active .service-card-head h2,
.service-card:active .service-card-head h2 {
  color: #1434b9;
}

.service-card:hover .service-card-arrow,
.service-card.is-touch-active .service-card-arrow,
.service-card:active .service-card-arrow {
  opacity: 1;
  transform: translateY(0) rotate(-45deg);
}

.service-card-desc {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
}

.service-card-features {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(26, 26, 26, 0.6);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-features span {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: #1434b9;
  flex: 0 0 auto;
}

.services-quote-break {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40vh;
  margin: 10rem 0 5rem;
  overflow: hidden;
  background: var(--color-brand-charcoal);
}

.services-quote-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.services-quote-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.services-quote-overlay h2 {
  max-width: 48rem;
  color: var(--color-brand-paper);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
}

.services-layout {
  display: grid;
  gap: 3rem;
}

.services-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.section-kicker {
  margin-bottom: 1.5rem;
  color: #1434b9;
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 32rem;
  font-family: var(--font-serif);
  color: #1a1a1a;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}

.services-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}

.service-item a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-serif);
  color: #1a1a1a;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  transition: font-style 0.3s ease;
}

.service-item:hover a,
.service-item.is-touch-active a,
.service-item:active a {
  font-style: italic;
}

.service-thumb {
  display: none;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(26, 26, 26, 0.05);
}

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

.service-item:hover .service-thumb img,
.service-item.is-touch-active .service-thumb img,
.service-item:active .service-thumb img {
  transform: scale(1.1);
}

.featured-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}

.featured-header h2 {
  padding-right: 1rem;
  color: #1a1a1a;
  font-family: var(--font-serif);
  font-size: 60px;
  font-style: italic;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -2.4px;
}

.archive-link {
  display: none;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-brand-charcoal);
  color: #1a1a1a;
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.archive-link:hover {
  color: var(--color-brand-cobalt);
  border-color: var(--color-brand-cobalt);
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
}

.project-card {
  position: relative;
}

.project-card a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: var(--color-brand-cream);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 52, 185, 0.2);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem;
  padding-top: 5rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}

.project-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.project-meta > div {
  flex: 1 1 auto;
  min-width: 0;
}

.project-card .project-meta {
  gap: 18px;
}

.project-card .project-meta > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.project-meta h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

.project-meta p {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.8);
}

.project-card .project-meta h3 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.75px;
  white-space: normal;
  text-wrap: balance;
}

.project-card .project-meta p {
  margin: 0;
  color: rgba(244, 242, 236, 0.8);
  font-family: Manrope, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.25rem;
  transform: rotate(-45deg);
}

.project-card:hover img,
.project-card.is-touch-active img,
.project-card:active img {
  transform: scale(1.05);
}

.project-card:hover .project-tint,
.project-card:hover .project-overlay,
.project-card.is-touch-active .project-tint,
.project-card.is-touch-active .project-overlay,
.project-card:active .project-tint,
.project-card:active .project-overlay {
  opacity: 1;
}

.project-card:hover .project-overlay,
.project-card.is-touch-active .project-overlay,
.project-card:active .project-overlay {
  transform: translateY(0);
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  background: #dbd9d3;
  color: var(--color-brand-charcoal);
}

.testimonial-ring {
  position: absolute;
  top: 0;
  right: 0;
  width: min(40vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  text-align: center;
}

.quote-badge {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 3rem;
  border: 1px solid #c5a84c;
  border-radius: 999px;
  color: #c5a84c;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-style: italic;
}

.testimonial-content h3 {
  margin-bottom: 3rem;
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.5px;
  letter-spacing: -1.5px;
  text-align: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.58);
}

.testimonial-author span:first-child {
  color: var(--color-brand-charcoal);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
  background: var(--color-brand-charcoal);
  color: var(--color-brand-paper);
}

.about-page {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--color-brand-paper);
}

.about-header {
  margin-bottom: 8rem;
}

.about-title {
  margin-bottom: 3rem;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.95;
  font-weight: 500;
}

.about-philosophy {
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.about-philosophy-layout {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.about-kicker {
  margin-bottom: 1.25rem;
  color: #1434b9;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-philosophy-copy {
  width: 100%;
  max-width: none;
}

.about-philosophy-intro {
  color: rgba(26, 26, 26, 0.86);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.22;
}

.about-philosophy-intro + .about-philosophy-intro {
  margin-top: 1.25rem;
}

.about-philosophy-card {
  width: 100%;
  margin-top: 3rem;
  height: 150px;
  max-height: 150px;
  overflow: hidden;
  background: var(--color-brand-cream);
}

.about-philosophy-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-process {
  margin-bottom: 5rem;
}

.about-process-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.about-process-title-wrap {
  width: 100%;
}

.about-process-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 500;
}

.about-process-title span {
  color: #1434b9;
  font-style: italic;
}

.about-process-steps {
  width: 100%;
}

.about-process-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.about-process-step + .about-process-step {
  margin-top: 3rem;
}

.about-step-number {
  width: 3rem;
  flex: 0 0 auto;
  color: #1434b9;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-step-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.about-step-copy p {
  max-width: 32rem;
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--font-sans);
  line-height: 1.75;
}

.legal-page {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--color-brand-paper);
}

.legal-header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  color: rgba(26, 26, 26, 0.7);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-home-link:hover {
  color: #1434b9;
}

.legal-eyebrow {
  margin-bottom: 1rem;
  color: #1434b9;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  font-weight: 500;
}

.legal-intro {
  max-width: 42rem;
  color: rgba(26, 26, 26, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.28;
}

.legal-meta {
  margin-top: 1.5rem;
  color: rgba(26, 26, 26, 0.56);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-grid {
  display: grid;
  gap: 2rem;
}

.legal-section {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.legal-section h2 {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  font-weight: 500;
}

.legal-section p {
  max-width: 42rem;
  color: rgba(26, 26, 26, 0.78);
  font-family: var(--font-sans);
  line-height: 1.8;
}

.legal-section p + p {
  margin-top: 0.9rem;
}

.legal-section a {
  color: #1434b9;
}

.legal-section a:hover {
  color: var(--color-brand-charcoal);
}

.footer-noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 8rem;
}

.footer-cta h2 {
  margin-bottom: 2rem;
  color: #f4f2ec;
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.8px;
}

.footer-cta h2 > span {
  display: block;
  color: #1434b9;
  font-style: italic;
  font-weight: 500;
}

.footer-cta .footer-period {
  display: inline;
  color: #f4f2ec;
  font-style: normal;
}

.footer-project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(244, 242, 236, 0.3);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}

.footer-project-link:hover {
  border-color: rgba(244, 242, 236, 1);
}

.footer-project-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-size: 0.95rem;
}

.footer-column p {
  margin-bottom: 1rem;
  color: rgba(244, 242, 236, 0.5);
}

.footer-column ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-brand-cobalt);
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.5);
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, calc(100% + 8rem));
  border-top: 1px solid rgba(244, 242, 236, 0.1);
  transform: translateX(-50%);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal a {
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-brand-paper);
}

.footer-background-word {
  position: absolute;
  left: 50%;
  bottom: -4vw;
  transform: translateX(-50%);
  color: rgba(244, 242, 236, 0.03);
  font-family: var(--font-serif);
  font-size: 15vw;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.reveal-load,
.reveal-up,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-load {
  transform: translateY(1.8rem);
  animation: reveal-load 1.2s var(--ease-out-expo) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.reveal-up {
  transform: translateY(1.8rem);
  transition:
    transform 0.8s var(--ease-out-expo),
    opacity 0.8s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-right {
  transform: translateX(1.25rem);
  transition:
    transform 0.6s var(--ease-out-expo),
    opacity 0.6s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes reveal-load {
  from {
    opacity: 0;
    transform: translateY(1.8rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 640px) {
  .service-thumb {
    display: block;
  }

  .mobile-menu {
    left: auto;
    width: 20rem;
    max-width: 100vw;
  }

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

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

  .service-card-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  :root {
    --container-width: min(1200px, calc(100vw - 4.5rem));
  }

  .site-nav {
    display: flex;
  }

  .section-heading {
    font-size: 48px;
    line-height: 60px;
  }

  .marquee-group {
    font-size: 48px;
    line-height: 48px;
  }

  .service-item a {
    font-size: 36px;
    line-height: 40px;
  }

  .featured-header h2 {
    font-size: 96px;
    line-height: 96px;
  }

  .testimonial-content h3 {
    font-size: 60px;
    line-height: 75px;
  }

  .footer-cta h2 {
    font-size: 72px;
    line-height: 90px;
  }

  .mobile-menu-toggle,
  .mobile-menu,
  .mobile-menu-backdrop {
    display: none;
  }

  .hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-title-group:hover .hero-strike,
  .hero-title-group.is-touch-active .hero-strike,
  .hero-title-group:active .hero-strike {
    width: 80vw;
  }

  .hero-title-group:hover .hero-line-top,
  .hero-title-group.is-touch-active .hero-line-top,
  .hero-title-group:active .hero-line-top {
    transform: translateX(-3rem);
    -webkit-text-stroke: 2px var(--color-brand-paper);
  }

  .hero-title-group:hover .hero-line-bottom,
  .hero-title-group.is-touch-active .hero-line-bottom,
  .hero-title-group:active .hero-line-bottom {
    transform: translateX(3rem);
  }

  .hero-meta-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .hero-meta-grid > :nth-child(1) {
    grid-column: span 3;
  }

  .hero-meta-grid > :nth-child(2) {
    grid-column: span 6;
    display: flex;
    justify-content: center;
  }

  .hero-meta-grid > :nth-child(3) {
    grid-column: span 3;
    display: flex;
    justify-content: flex-end;
  }

  .hero-meta-statement p {
    text-align: center;
  }

  .services-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }

  .services-page-header {
    flex-direction: row;
    align-items: flex-end;
  }

  .services-copy {
    grid-column: span 5;
  }

  .services-list-wrap {
    grid-column: 7 / span 6;
  }

  .archive-link {
    display: inline-flex;
  }

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

  .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6rem;
    row-gap: 4rem;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 6rem;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .contact-layout {
    width: min(1280px, calc(100vw - 4.5rem));
    flex-direction: row;
    gap: 5rem;
  }

  .contact-info,
  .contact-form-wrap {
    width: 50%;
  }

  .contact-form-wrap {
    padding-top: 3rem;
  }

  .contact-image {
    height: 300px;
  }

  .contact-form {
    padding: 3rem;
  }

  .case-study-header {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }

  .case-study-title-wrap {
    grid-column: span 8;
  }

  .case-study-meta {
    grid-column: span 4;
  }

  .case-study-hero {
    height: 80vh;
  }

  .case-study-content {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .case-study-challenge-title {
    grid-column: span 4;
  }

  .case-study-copy {
    grid-column: span 8;
  }

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

  .case-study-mockup-dark {
    margin-top: 6rem;
  }

  .case-study-impact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .case-study-impact-title {
    grid-column: span 1;
  }

  .case-study-impact-stats {
    grid-column: span 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 4rem;
    row-gap: 2.5rem;
  }

  .about-philosophy-card {
    margin-top: 3.25rem;
  }

  .about-process-layout {
    flex-direction: row;
    gap: 3rem;
  }

  .about-process-title-wrap {
    position: sticky;
    top: 8rem;
    width: 33.333%;
  }

  .about-process-steps {
    width: 66.667%;
  }

  .about-process-step {
    flex-direction: row;
    gap: 2rem;
  }
}

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

  .hero-image-parallax,
  .marquee-track,
  .reveal-load,
  .reveal-up,
  .reveal-right,
  .site-nav a::after,
  .brand-logo,
  .hero-strike,
  .hero-line,
  .hero-moon,
  .service-thumb img,
  .project-card img,
  .project-overlay,
  .project-tint,
  .action-icon,
  .mobile-menu,
  .mobile-menu-backdrop,
  .menu-icon {
    animation: none !important;
    transition: none !important;
  }

  .reveal-load,
  .reveal-up,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
