/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #FFB6C1;
  --peach:   #F3CFC6;
  --greige:  #E0BFB8;
  --cream:   #FFF5EE;
  --white:   #FFFFFF;

  --bg:          var(--cream);
  --surface:     var(--white);
  --surface-2:   var(--peach);
  --border:      var(--greige);
  --text:        #3D2218;
  --text-muted:  #9C7B76;
  --accent:      #C4768A;

  --gradient:        linear-gradient(135deg, #C4768A 0%, #B8907A 100%);
  --gradient-pink:   linear-gradient(135deg, #FFB6C1 0%, #F3CFC6 100%);
  --gradient-subtle: linear-gradient(135deg, #FFF5EE 0%, #F3CFC6 100%);

  --shadow-sm: 0 1px 3px rgba(100,50,40,.06), 0 1px 2px rgba(100,50,40,.04);
  --shadow-md: 0 4px 20px rgba(180,100,90,.14);
  --shadow-lg: 0 20px 60px rgba(180,100,90,.16);

  --radius:    16px;
  --radius-sm: 10px;
  --font:      'Inter', -apple-system, sans-serif;
  --nav-h:     84px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.accent-text { color: var(--accent); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(180,100,90,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(180,100,90,.38);
}

.btn--ghost {
  background: transparent;
  border-color: var(--greige);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--peach);
  border-color: var(--pink);
  transform: translateY(-2px);
}

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

/* =========================================
   SECTION HEADERS
   ========================================= */
.section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  /* Always opaque — prevents hero gradient bleeding through */
  background: var(--cream);
  border-bottom: 1px solid var(--greige);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 2px 12px rgba(100,50,40,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* Full width — edge to edge with consistent padding only */
  width: 100%;
  padding: 0 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo-img--footer {
  height: 36px;
  /* Invert to white on the greige footer if needed — remove if logo already looks good */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--greige);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--peach); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  background: linear-gradient(160deg, #F7A8B8 0%, #F5C6C0 40%, #F0B8A8 100%);
}

.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .75;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 700px; height: 700px;
  background: #E8809A;
  top: -240px; right: -140px;
  opacity: .55;
}
.blob-2 {
  width: 540px; height: 540px;
  background: #D4778C;
  bottom: -140px; left: -120px;
  opacity: .45;
}
.blob-3 {
  width: 400px; height: 400px;
  background: #F0A0B5;
  top: 15%; left: 28%;
  opacity: .4;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(196, 118, 138, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 11px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(196, 118, 138, 0.12);
}

.hero__title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__social { display: flex; justify-content: center; gap: 16px; }
.hero__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  border: 1.5px solid var(--greige);
  border-radius: 50%;
  transition: all .25s;
}
.hero__social a:hover {
  color: var(--accent);
  border-color: var(--pink);
  background: var(--peach);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hero__social svg { width: 18px; height: 18px; }

/* =========================================
   CLIENT LOGOS MARQUEE
   ========================================= */
.clients {
  background: #F5EDE8;
  padding: 20px 0 16px;
  border-top: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  overflow: hidden;
}

.clients__header {
  text-align: center;
  margin-bottom: 12px;
}

.clients__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  object-fit: contain;
}

/* Dark-background logos: screen blend makes black pixels vanish against
   the #F5EDE8 section background, leaving only the logo artwork visible */
.marquee__item--dark-bg img {
  mix-blend-mode: screen;
}

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

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap { position: relative; }

.about__headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 32px;
  display: block;
}

.about__tag {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--greige);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  color: var(--accent);
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}

.about__tags span {
  background: var(--peach);
  border: 1px solid var(--greige);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--gradient-subtle); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--greige);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--peach);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--accent); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-card ul  { display: flex; flex-direction: column; gap: 8px; }
.service-card li  {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* =========================================
   WORK
   ========================================= */
.work { background: var(--cream); }

.work__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--greige);
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .25s;
}
.filter-btn:hover {
  background: var(--peach);
  border-color: var(--pink);
  color: var(--text);
}
.filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--text);
}

/* Grid: 2-col for simple cards, detail cards span full width */
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Simple cards (Pickle, Uptick) ── */
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--greige);
  transition: transform .3s, box-shadow .3s;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.work-card--simple .work-card__simple-bg {
  aspect-ratio: 16/7;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}

.work-card--simple .work-card__info {
  padding: 20px 22px 24px;
}

.work-card--simple .work-card__info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.work-card__subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Detail cards (span full width) ── */
.work-card--detail {
  grid-column: 1 / -1;
}

.work-card__top {
  padding: 28px 32px 0;
  margin-bottom: 20px;
}

.work-card__top h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 8px;
}

.work-card__platform {
  display: inline-block;
  background: var(--peach);
  border: 1px solid var(--greige);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Simple card platform badge (absolute position) */
.work-card--simple .work-card__platform {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  border: none;
}

.work-card__body {
  padding: 0 32px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.work-card__desc-col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.work-card__highlights-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.work-card__highlights { display: flex; flex-direction: column; }

.work-card__highlights li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--greige);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.work-card__highlights li:last-child { border-bottom: none; }
.work-card__highlights li::before {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Media carousel ── */
.media-carousel {
  position: relative;
  padding: 4px 52px 32px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.carousel-track::-webkit-scrollbar { display: none; }

.media-carousel .work-card__video {
  flex-shrink: 0;
  scroll-snap-align: start;
  aspect-ratio: 16/9;
  width: clamp(260px, 38vw, 500px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--peach);
}

.media-carousel--portrait .work-card__video {
  aspect-ratio: 9/16;
  width: clamp(140px, 15vw, 200px);
}

.media-carousel--portrait .work-card__image {
  flex-shrink: 0;
  scroll-snap-align: start;
  height: clamp(250px, 27vw, 355px);
  width: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--peach);
}
.media-carousel--portrait .work-card__image img {
  height: 100%;
  width: auto;
  display: block;
}

.work-card__video iframe,
.work-card__video video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(-16px);
  width: 36px; height: 36px;
  background: var(--white);
  border: 1.5px solid var(--greige);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(61,34,24,.08);
}
.carousel-btn:hover {
  background: var(--peach);
  border-color: var(--pink);
  box-shadow: 0 4px 12px rgba(196,118,138,.18);
}
.carousel-btn:disabled {
  opacity: .3;
  cursor: default;
  box-shadow: none;
}
.carousel-btn--prev { left: 4px; }
.carousel-btn--next { right: 4px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--gradient-subtle); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--greige);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


.testimonial-card__stars {
  color: #D4956A;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__text p:not(.section__eyebrow) {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.contact__links { display: flex; flex-direction: column; gap: 14px; }

.contact__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.contact__link:hover { color: var(--accent); }
.contact__link svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact__form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--greige);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--greige);
  background: var(--white);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,182,193,.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--greige);
  padding: 32px 0;
  border-top: 1px solid var(--greige);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer__social-link:hover { color: var(--text); }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
    min-height: auto;
    gap: 48px;
  }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions  { justify-content: center; }
  .hero__social   { justify-content: center; }
  .hero__visual   { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }

  .about__inner      { grid-template-columns: 1fr; gap: 48px; }
  .about__image-wrap { max-width: 360px; margin: 0 auto; }

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

  .work__grid { grid-template-columns: 1fr; }
  .work-card--simple { max-width: 100%; }

  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

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

  .work-card__body    { grid-template-columns: 1fr; gap: 24px; }
  .work-card__top,
  .work-card__body,
  .work-card__videos  { padding-left: 20px; padding-right: 20px; }

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

  .contact__form { padding: 28px 20px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .work-card__videos { grid-template-columns: 1fr; }
  .footer__inner { align-items: center; }
}
