/* foundation/_reset.scss */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* foundation/_base.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  background-color: #fff;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.is-loading {
  opacity: 0;
  visibility: hidden;
}
body:not(.is-loading) {
  opacity: 1;
  visibility: visible;
}

/* layout/_header.scss */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  pointer-events: none;
}
.l-header__logo {
  pointer-events: auto;
  text-decoration: none;
}
.l-header__logo a {
  text-decoration: none;
  display: block;
  background-color: #fff;
  border: 5px solid #111;
  padding: 1.8rem 3rem;
}
.l-header__logo-ja {
  display: block;
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  color: #111;
}
.l-header__logo-en {
  display: block;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 0.6rem;
  color: #111;
}

/* layout/_main.scss */
.l-main {
  width: 100%;
  min-height: 100vh;
}

/* layout/_subpage.scss */
.l-subpage {
  padding: 16rem 4rem 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.c-page-title {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6rem;
  text-align: center;
}

/* Works Page Layout (2 columns) */
.l-works-page {
  display: flex;
  padding: 16rem 4rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .l-header {
    padding: 1.6rem 2rem;
  }
  .l-header__logo a {
    border-width: 3.5px;
    padding: 1rem 1.6rem;
  }
  .l-header__logo-ja {
    font-size: 2.6rem;
  }
  .l-header__logo-en {
    font-size: 1.3rem;
    margin-top: 0.3rem;
  }
  .l-subpage {
    padding: 17rem 2rem 6rem;
  }
  .l-works-page {
    flex-direction: column;
    padding: 17rem 2rem 6rem;
  }
}

.p-works-sidebar {
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-works-sidebar {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.p-works-sidebar__inner {
  position: sticky;
  top: 22rem; /* Increased top to prevent overlap */
  background: #fff;
  z-index: 10;
  padding-left: 8rem; /* タイトルの中心あたりに寄せるための余白 */
}
.p-works-sidebar__mobile-toggle {
  display: none;
}

@media (max-width: 768px) {
  .p-works-sidebar__inner {
    position: sticky;
    top: 17rem;
    background: #fff;
    z-index: 20;
    padding: 0;
    border: none;
  }
  
  .p-works-sidebar__mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background: #fff;
    border: 4px solid #111;
    font-size: 1.6rem;
    font-weight: bold;
    color: #111;
  }
}

.p-works-sidebar__years {
  list-style: none;
}
@media (max-width: 768px) {
  .p-works-sidebar__years {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 4px solid #111;
    border-top: none;
    max-height: 40vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .p-works-sidebar__inner.is-open .p-works-sidebar__years {
    display: block;
  }
}

.p-works-sidebar__year-item {
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .p-works-sidebar__year-item {
    margin-bottom: 1.2rem;
  }
}

.p-works-sidebar__year-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-works-sidebar__year-link:hover {
  opacity: 0.6;
}
.p-works-sidebar__year-link.is-active::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2.5px;
  background-color: #111;
}

.p-works-content {
  flex-grow: 1;
  padding-left: 6rem;
}
@media (max-width: 768px) {
  .p-works-content {
    padding-left: 0;
  }
}

.p-works-year-section {
  margin-bottom: 4rem;
}

.p-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .p-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .p-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}
@media (max-width: 480px) {
  .p-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* project/_works.scss */
.p-works-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f2f2f2;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid #111;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.p-works-card:hover {
  opacity: 0.88;
}

.p-works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.p-works-card:hover .p-works-card__img {
  transform: scale(1.03);
}

/* component/_modal.scss */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.c-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.c-modal__body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-modal__slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.c-modal__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 8rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .c-modal__slide {
    padding: 3rem 1.6rem;
  }
}

.c-modal__media-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  filter: brightness(0.4);
  transition: opacity 0.5s ease-out, filter 0.6s ease-out;
  will-change: opacity, filter;
}

.c-modal.is-active .c-modal__media-wrapper {
  opacity: 1;
  filter: brightness(1);
}

.c-modal__image {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.08);
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .c-modal__image {
    max-width: 94vw;
    max-height: 86vh;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
  }
}

.c-modal__video {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.08);
  outline: none;
}

@media (max-width: 768px) {
  .c-modal__video {
    max-width: 94vw;
    max-height: 86vh;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
  }
}

.c-modal__close {
  position: fixed;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  color: #222;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.c-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #000;
  transform: scale(1.08);
}

.c-modal__close svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: currentColor;
}

@media (max-width: 768px) {
  .c-modal__close {
    top: 1.6rem;
    right: 1.6rem;
    width: 3.8rem;
    height: 3.8rem;
  }
  .c-modal__close svg {
    width: 2rem;
    height: 2rem;
  }
}

.c-modal__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1005;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.c-modal__nav:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0.6rem 2.4rem rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.08);
}

.c-modal__nav--prev {
  left: 2.4rem;
}

.c-modal__nav--next {
  right: 2.4rem;
}

@media (max-width: 768px) {
  .c-modal__nav {
    width: 3.8rem;
    height: 3.8rem;
  }
  .c-modal__nav--prev {
    left: 1rem;
  }
  .c-modal__nav--next {
    right: 1rem;
  }
}

.c-modal__nav.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.c-modal__nav svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: currentColor;
}


/* ==========================================================================
   Page: About / CV / Statement
   ========================================================================== */
.p-about {
  max-width: 840px;
  margin: 0 auto;
}

/* Profile Hero */
.p-about__profile {
  display: flex;
  gap: 5.6rem;
  align-items: center;
  margin-bottom: 6.4rem;
  padding-bottom: 5.6rem;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .p-about__profile {
    flex-direction: column;
    gap: 3.2rem;
    align-items: flex-start;
    margin-bottom: 4.8rem;
    padding-bottom: 4rem;
  }
}

.p-about__visual {
  flex: 0 0 260px;
  max-width: 260px;
  width: 100%;
}

@media (max-width: 768px) {
  .p-about__visual {
    flex: 0 0 auto;
    max-width: 240px;
    margin: 0 auto;
  }
}

.p-about__photo-wrapper {
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
  border: 1px solid #111;
}

.p-about__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-about__photo-wrapper:hover .p-about__photo {
  transform: scale(1.04);
}

.p-about__intro {
  flex: 1;
}

.p-about__header-badge {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.p-about__icon {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: contain;
  border: none;
  background: transparent;
  flex-shrink: 0;
}

.p-about__name-ja {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #111;
}

.p-about__name-en {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.p-about__summary {
  font-size: 1.45rem;
  line-height: 2.1;
  color: #222;
  letter-spacing: 0.04em;
}

.p-about__summary p + p {
  margin-top: 1.4rem;
}

/* Sections */
.p-about__section {
  margin-bottom: 6.4rem;
}

.p-about__section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 4px solid #111;
  display: inline-block;
}

/* Statement Content */
.p-about-statement__content {
  font-size: 1.5rem;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: #222;
  padding: 0.8rem 0;
}

.p-about-statement__lead {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.6rem;
  letter-spacing: 0.06em;
}

.p-about-statement__lead:not(:first-child) {
  margin-top: 3.6rem;
}

.p-about-statement__content p + p {
  margin-top: 1.6rem;
}

/* Contact CTA */
.p-about__contact {
  text-align: center;
  margin-top: 7.2rem;
  padding-top: 4.8rem;
  border-top: 1px solid #eee;
}

.p-about__contact-text {
  font-size: 1.45rem;
  color: #444;
  margin-bottom: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Page: Contact (Plain Minimalist Style)
   ========================================================================== */
.p-contact-page {
  max-width: 800px;
  margin: 0 auto;
}

.p-contact-plain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 38vh;
  line-height: 1.5;
  padding: 3.2rem 1.6rem 8rem;
}

.p-contact-plain > * + * {
  margin-top: 4.4rem;
}

.p-contact-plain__en {
  font-size: 2.1rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-contact-plain__ja {
  font-size: 1.35rem;
  font-weight: 400;
  color: #555;
  margin-top: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.p-contact-plain__mail a {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
  text-decoration: underline;
  word-break: break-all;
  transition: opacity 0.2s ease;
}

.p-contact-plain__mail a:hover {
  text-decoration: none;
  opacity: 0.65;
}

.p-contact-plain__sns {
  font-size: 1.45rem;
  color: #666;
  letter-spacing: 0.06em;
}

.p-contact-plain__sns a {
  color: #444;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.p-contact-plain__sns a:hover {
  text-decoration: none;
  opacity: 0.65;
}

.p-contact-plain__sep {
  margin: 0 0.8rem;
  color: #aaa;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .p-contact-plain__en {
    font-size: 1.85rem;
  }
  .p-contact-plain__mail a {
    font-size: 1.9rem;
  }
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

/* Legacy CV/Statement fallback */
.p-cv {
  max-width: 800px;
  margin: 0 auto;
}
.p-cv__item {
  display: flex;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .p-cv__item {
    flex-direction: column;
  }
}
.p-cv__year {
  font-weight: bold;
  width: 12rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-cv__year {
    margin-bottom: 0.8rem;
  }
}
.p-cv__desc {
  flex-grow: 1;
  line-height: 1.8;
}

.p-statement {
  max-width: 700px;
  margin: 0 auto;
}
.p-statement__text {
  line-height: 2.2;
  font-size: 1.5rem;
  margin-bottom: 3.2rem;
  letter-spacing: 0.08em;
}

/* component/_hamburger.scss */
.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 6.4rem;
  height: 6.4rem;
  background-color: #fff;
  border: 4px solid #111;
  position: relative;
  z-index: 110;
  pointer-events: auto;
}
.c-hamburger__line {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: #111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(1rem) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-1rem) rotate(-45deg);
}

/* component/_global-nav.scss */
.c-global-nav {
  pointer-events: none;
  position: fixed;
  top: 3.2rem;
  right: 4rem;
  width: calc(100% - 8rem);
  max-width: 400px;
  max-height: calc(100vh - 6.4rem);
  z-index: 105;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
}
.c-global-nav.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.c-global-nav__inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 4px solid #111;
  padding: 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.c-global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 6rem;
  list-style: none;
}
.c-global-nav__sns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 6rem;
  list-style: none;
}
.c-global-nav__link {
  font-size: 2.2rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.c-global-nav__link:hover {
  opacity: 0.6;
}
.c-global-nav__link svg {
  flex-shrink: 0;
}
.c-global-nav__lang {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-top: auto;
}
.c-global-nav__lang a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s ease;
}
.c-global-nav__lang a:hover {
  opacity: 0.6;
}
.c-global-nav__lang a.is-active {
  border-bottom: 2px solid #111;
}

@media (max-width: 768px) {
  .c-hamburger {
    width: 5.2rem;
    height: 5.2rem;
    border-width: 3.5px;
    gap: 0.6rem;
  }
  .c-hamburger__line {
    width: 2rem;
  }
  .c-global-nav {
    top: 1.6rem;
    right: 2rem;
    width: calc(100% - 4rem);
    max-height: calc(100vh - 3.2rem);
  }
  .c-global-nav__inner {
    padding: 3rem 2.4rem;
  }
  .c-global-nav__list {
    margin-bottom: 4rem;
  }
  .c-global-nav__sns {
    margin-bottom: 4rem;
  }
}

/* project/_top-hero.scss */
.p-top-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  background-image: url('../images/top_hero_bg.jpg?v=2');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
.p-top-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body:not(.is-loading) .p-top-hero__bg {
  transform: scale(1);
}

/* layout/_footer.scss */
.l-footer {
  width: 100%;
  padding: 2.4rem 3.2rem 2.0rem;
  border-top: 1px solid #f0f0f0;
  text-align: left;
  background-color: #fff;
  position: relative;
  z-index: 5;
}
.l-footer__copyright {
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 0.3rem;
}
.l-footer__notice {
  font-size: 0.95rem;
  color: #a0a0a0;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-footer__notice-en {
  font-size: 0.9rem;
  color: #b0b0b0;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

/* Footer for Top Hero Page (Floating overlay) */
.l-footer--top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  border-top: none;
  padding: 2.4rem 3.2rem 1.6rem;
  pointer-events: none;
  text-align: left;
}
.l-footer--top .l-footer__copyright {
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.l-footer--top .l-footer__notice {
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.l-footer--top .l-footer__notice-en {
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .l-footer {
    padding: 2.0rem 2.0rem 1.6rem;
  }
  .l-footer--top {
    padding: 2.0rem 2.0rem 1.4rem;
  }
}

/* Image protection against direct drag and save */
img, video, .p-top-hero__bg, .c-modal__img, .p-works-card__img, .p-about__photo {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

