/**
 * Faceout Grid + Dynamic Fullscreen Lightbox
 * Grid layout with color-extracted background on click
 * 2025
 */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #333333;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}


/* ============================================
   MINIMAL HEADER - Part of Design
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  overflow-x: hidden;
}

.header-content {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333333;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.03);
}

.lang-toggle .lang-option {
  transition: opacity 0.2s ease;
}

.lang-toggle .lang-option.active {
  font-weight: 700;
}

.lang-toggle .lang-option:not(.active) {
  opacity: 0.5;
}

.lang-toggle .lang-separator {
  opacity: 0.3;
}

/* Mobile: show only active language */
@media (max-width: 480px) {

  .lang-toggle .lang-option:not(.active),
  .lang-toggle .lang-separator {
    display: none;
  }
}

/* Shake animation for toggles */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  40% {
    transform: translateX(3px) rotate(2deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  80% {
    transform: translateX(2px) rotate(1deg);
  }
}

.shake {
  animation: shake 0.3s ease-in-out;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.03);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* Dark Theme */
body.dark-theme {
  background: #1a1a1a;
  color: #e0e0e0;
}

body.dark-theme .header {
  background: rgba(26, 26, 26, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .logo,
body.dark-theme .nav-link,
body.dark-theme .lang-toggle,
body.dark-theme .theme-toggle {
  color: #e0e0e0;
}

body.dark-theme .logo-subtitle {
  color: #999999;
}

body.dark-theme .nav-link.current {
  border-bottom-color: #e0e0e0;
}

body.dark-theme .lang-toggle,
body.dark-theme .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .lang-toggle:hover,
body.dark-theme .theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

body.dark-theme .footer {
  background: rgba(26, 26, 26, 0.95);
}

body.dark-theme .footer p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-theme .scroll-to-top {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
}

body.dark-theme .scroll-to-top:hover {
  background: #3a3a3a;
  border-color: rgba(255, 255, 255, 0.3);
}

body.dark-theme .contact-page {
  background: #1a1a1a;
}

body.dark-theme .contact-container {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .contact-title {
  color: #e0e0e0;
}

body.dark-theme .form-control {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #e0e0e0;
}

body.dark-theme .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body.dark-theme .form-control:focus {
  border-color: #e0e0e0;
  background: #2a2a2a;
}

body.dark-theme .btn-submit {
  background: #e0e0e0;
  color: #1a1a1a;
}

body.dark-theme .btn-submit:hover {
  background: #ffffff;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
  margin-top: 2px;
  max-width: 240px;
}

.logo:hover {
  opacity: 0.7;
  text-decoration: none;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333333;
  text-decoration: none;
  transition: opacity 0.2s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.nav-link.current {
  border-bottom: 2px solid #333333;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
  padding: 55px 0 5px;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 20px 20px 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 6px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.2;
  min-height: 1.2em;
  text-wrap: balance;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  display: inline;
}

.hero-cursor {
  display: inline-block;
  font-style: normal;
  font-weight: 300;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

.hero-cursor.hidden {
  display: none;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
}

.hero-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #888;
  text-transform: lowercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-tag.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: #ccc;
}

/* Dark theme hero */
.dark-theme .hero-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-theme .hero-title {
  color: #ffffff;
}

.dark-theme .hero-tag {
  color: #777;
}

.dark-theme .hero-tag:not(:last-child)::after {
  color: #444;
}

.dark-theme .hero-subtitle {
  color: #666;
}

/* ============================================
   FACEOUT GRID
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 6px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 0 4px;
  }

  .main {
    padding: 70px 0 40px;
  }

  .header-content {
    padding: 0 12px;
  }

  .hero-section {
    padding: 18px 12px 15px;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .current-image {
    max-width: 90vw;
    max-height: 55vh;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 16px;
    top: 15px;
    right: 10px;
  }
}

.grid-item {
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  aspect-ratio: 2 / 3;
}

.grid-item:hover {
  opacity: 0.9;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Stagger animation */
.grid-item:nth-child(1) {
  animation-delay: 0.05s;
}

.grid-item:nth-child(2) {
  animation-delay: 0.1s;
}

.grid-item:nth-child(3) {
  animation-delay: 0.15s;
}

.grid-item:nth-child(4) {
  animation-delay: 0.2s;
}

.grid-item:nth-child(5) {
  animation-delay: 0.25s;
}

.grid-item:nth-child(6) {
  animation-delay: 0.3s;
}

.grid-item:nth-child(7) {
  animation-delay: 0.35s;
}

.grid-item:nth-child(8) {
  animation-delay: 0.4s;
}

.grid-item:nth-child(n+9) {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

/* End Block */
.grid-end-block {
  background: #ff6b35;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 2 / 3;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: 0.5s;
  cursor: default;
}

.grid-end-block.multi-col {
  aspect-ratio: auto;
  min-height: 280px;
}

.grid-end-block .end-content,
.grid-end-block .end-content * {
  position: relative;
  z-index: 1;
}

.end-content {
  text-align: center;
  padding: 30px;
}

.end-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.end-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.contact-btn {
  display: inline-block;
  background: #ffffff;
  color: #ff6b35;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #ff6b35;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Lightbox End Message */
.lightbox-end-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1002;
}

.end-message-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.end-message-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.end-message-content .contact-btn {
  background: #ffffff;
  color: #ff6b35;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #ffffff;
}

.end-message-content .contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #ff6b35;
}

/* End Message Navigation - matches carousel-nav */
.end-message-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1003;
  border-radius: 0;
  transition: all 0.2s ease;
}

.end-message-nav:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.end-message-nav.prev {
  left: 20px;
}

/* End Message Close - matches lightbox-close */
.end-message-close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1003;
  border-radius: 0;
  transition: all 0.2s ease;
}

.end-message-close:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .end-message-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    top: auto;
    bottom: 20px;
    transform: none;
    left: calc(50% - 40px);
  }

  /* Specific rule to override desktop 'left: 20px' */
  .end-message-nav.prev {
    left: calc(50% - 60px);
  }

  .end-message-close {
    top: 20px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* ============================================
   FULLSCREEN LIGHTBOX WITH DYNAMIC BG
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.3s ease;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image-wrapper.prev-wrapper,
.carousel-image-wrapper.next-wrapper {
  flex: 0 0 25vw;
}

.carousel-image-wrapper.current-wrapper {
  flex: 0 0 auto;
}

.carousel-image {
  object-fit: contain;
  border-radius: 2px;
}

.current-image {
  max-width: 50vw;
  max-height: 85vh;
  opacity: 1;
  z-index: 2;
}

.prev-image,
.next-image {
  max-width: 25vw;
  max-height: 60vh;
  opacity: 0.4;
  z-index: 1;
}

.prev-image,
.next-image {
  cursor: pointer;
}

/* Remove hover effect when image is invisible (opacity 0) */
.prev-image[style*="opacity: 0"],
.next-image[style*="opacity: 0"] {
  cursor: default;
  pointer-events: none;
}

@media (max-width: 768px) {
  .current-image {
    max-width: 92vw;
    max-height: 80vh;
  }

  .carousel-image-wrapper.prev-wrapper,
  .carousel-image-wrapper.next-wrapper {
    display: none;
  }

  .carousel-track {
    gap: 0;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.1s ease;
  width: 0;
  pointer-events: none;
}

/* Navigation */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1001;
  border-radius: 0;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1001;
  border-radius: 0;
  transition: all 0.2s ease;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    bottom: 20px;
    top: auto;
    transform: none;
    left: auto;
    right: auto;
  }

  .carousel-nav.prev {
    left: calc(50% - 60px);
    right: auto;
  }

  .carousel-nav.next {
    right: calc(50% - 60px);
    left: auto;
  }
}


@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  /* Hide side images on mobile - show only center cover */
  .carousel-image-wrapper.prev-wrapper,
  .carousel-image-wrapper.next-wrapper {
    display: none !important;
  }

  .carousel-image.current-image {
    max-width: 92vw;
    max-height: 80vh;
  }

  .carousel-track {
    justify-content: center;
  }

  /* Tighter footer on mobile */
  .main {
    padding-bottom: 0;
  }

  .footer {
    padding: 8px 0;
  }

  .footer-content {
    padding: 0 15px;
  }

  .footer p {
    font-size: 10px;
  }

  .scroll-to-top {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
}

.footer-content {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.scroll-to-top {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333333;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.scroll-to-top:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.3);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: #ffffff;
}

.contact-container {
  max-width: 400px;
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  margin-bottom: 30px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 12px 14px;
  color: #333333;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.2s ease;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
  outline: none;
  border-color: #333333;
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: #333333;
  border: none;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #555555;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }

  .header-content {
    padding: 0 15px;
    gap: 12px;
  }

  .logo {
    font-size: 14px;
    flex: 1 1 auto;
  }

  .nav-link {
    font-size: 11px;
    white-space: nowrap;
  }

  .nav-links {
    gap: 15px;
    flex: 0 0 auto;
  }

  .logo-subtitle {
    max-width: 120px;
    letter-spacing: 1.5px;
    overflow-wrap: anywhere;
  }

  .footer {
    display: block !important;
  }

  .footer-content {
    padding: 0 15px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}