/* ==================================================================================================== */
/* RESET */
/* ==================================================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  [role="button"] {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ==================================================================================================== */
/* VARIABLES */
/* ==================================================================================================== */

:root {
  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-70: rgba(0, 0, 0, 0.7);
  --color-black-80: rgba(0, 0, 0, 0.8);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-85: rgba(255, 255, 255, 0.85);
  --color-accent: #004945;
  --color-nav-gradient-top: #2b2b2b;

  /* Layout */
  --layout-max-width: 1300px;
  --nav-width: 1400px;
  --nav-height: 50px;
  --nav-offset: 20px;
  --nav-inset: 20px;
  --nav-side-padding: var(--nav-height);
  --content-padding: var(--nav-side-padding);

  /* Radius */
  --radius-pill: 999px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xs: 4px;
  --nav-radius: var(--radius-pill);

  /* Spacing */
  --section-pad-top: 60px;
  --section-pad-bottom: 50px;
  --section-pad-mobile-top: 40px;
  --section-pad-mobile-bottom: 36px;
  --section-title-gap: 50px;

  /* Motion */
  --ease-standard: ease;
  --dur-fast: 0.2s;
  --dur-medium: 0.3s;
  --dur-nav-in: 0.35s;

  /* Semantic aliases */
  --black: var(--color-black);
  --white: var(--color-white);
  --nav-bg: linear-gradient(180deg, var(--color-nav-gradient-top) 0%, var(--color-black) 100%);
  --nav-text: var(--color-white);
  --nav-accent: var(--color-accent);
}

/* ==================================================================================================== */
/* BASE */
/* ==================================================================================================== */

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  padding-top: calc(var(--nav-height) + var(--nav-offset));
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

html {
  width: 100%;
  min-width: 100%;
}

main {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
}

/* ==================================================================================================== */
/* NAVBAR */
/* ==================================================================================================== */

.main-nav {
  position: fixed;
  top: var(--nav-offset);
  left: var(--nav-inset);
  right: var(--nav-inset);
  height: var(--nav-height);
  background: var(--nav-bg);
  border-radius: var(--nav-radius);
  z-index: 1000;
  opacity: 0;
  padding: 0 var(--nav-side-padding);
  animation: nav-drop var(--dur-nav-in) ease-out 0.05s forwards;
}

.nav-container {
  height: 100%;
  width: 100%;
  max-width: var(--nav-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--nav-text);
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  animation: nav-fade var(--dur-fast) ease-out 0.1s forwards;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-text {
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--nav-text);
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  transition: transform var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard), top var(--dur-fast) var(--ease-standard);
}

.hamburger span:nth-child(1) {
  top: 9px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 21px;
}

.hamburger.is-open span:nth-child(1) {
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1;
  flex: 1;
}

.menu-container::before {
  content: "|";
  color: var(--color-white-50);
  font-weight: 300;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
  opacity: 0;
  animation: nav-fade var(--dur-fast) ease-out 0.12s forwards;
}

.nav-links a {
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 400;
  transition: color var(--dur-fast) var(--ease-standard);
  text-decoration: none;
  line-height: 1;
}

.nav-pages {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
  opacity: 0;
  animation: nav-fade var(--dur-fast) ease-out 0.14s forwards;
}

.nav-pages li {
  display: inline-flex;
  align-items: center;
}

.nav-pages li + li::before {
  content: "|";
  color: var(--color-white-50);
  margin: 0 12px;
  font-weight: 300;
}

.nav-pages a {
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  transition: color var(--dur-fast) var(--ease-standard);
}

.nav-pages a:hover,
.nav-pages a:focus-visible {
  color: var(--nav-accent);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--nav-accent);
}

@media (max-width: 992px) {
  :root {
    --nav-inset: 12px;
    --nav-offset: var(--nav-inset);
    --nav-side-padding: 20px;
    --content-padding: var(--nav-inset);
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .menu-container {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-fast) var(--ease-standard);
  }

  .menu-container::before {
    content: "";
    display: none;
  }

  .menu-container.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-right: 0;
  }

  .nav-links a {
    font-size: 18px;
    text-align: center;
  }

  .nav-pages {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-left: 0;
  }

  .nav-pages li + li::before {
    content: "";
    margin: 0;
  }

  .nav-pages a {
    font-size: 18px;
  }
}

/* ==================================================================================================== */
/* SWIPPER */
/* ==================================================================================================== */

.imakeit-slider {
  width: 100%;
  max-height: 800px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  margin-top: -70px;
}

.imakeit-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.imakeit-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-70%);
  z-index: 1;
  text-align: left;
  white-space: nowrap;
}

.slide-text .inner {
  max-width: var(--nav-width);
  margin: 0 auto;
}

.slide-text h1 {
  font-size: clamp(1.4rem, 4.5vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.slide-text p {
  font-size: clamp(0.85rem, 2.6vw, 1.3rem);
  font-weight: 200;
  color: var(--white);
}

.swiper-pagination-bullet {
  background: rgba(220, 220, 220, 0.6);
  opacity: 1;
  transition: transform var(--dur-medium);
}

.swiper-pagination-bullet-active {
  background: #e6e6e6 !important;
  transform: scale(1.4);
}

@media (max-width: 1600px) {
  .slide-text {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .imakeit-slider {
    aspect-ratio: 16/16;
  }

  .slide-text h1 {
    text-align: center;
  }

  .slide-text p {
    text-align: center;
  }
}

/* ==================================================================================================== */
/* SPONSORS STRIP */
/* ==================================================================================================== */

.sponsor-strip {
  height: 60px;
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  --sponsor-cta-space: 200px;
}

.sponsor-strip-inner {
  width: 100%;
  max-width: var(--nav-width);
  margin: 0 auto;
  padding: 0 calc(var(--nav-side-padding) + var(--sponsor-cta-space));
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  row-gap: 10px;
}

.sponsor-logos {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 16px;
  row-gap: 10px;
  width: 100%;
}

.sponsor-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 20%;
  min-width: 120px;
  transform: translateX(var(--sponsor-item-shift, 0px));
  will-change: transform;
}

.sponsor-strip img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--nav-bg);
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard);
  cursor: pointer;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
}

.pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--color-black-50);
  transition: transform var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}

.pill-outline:hover,
.pill-outline:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-black-80);
}

.sponsor-cta {
  position: absolute;
  right: var(--nav-inset);
  top: 50%;
  transform: translateY(-50%);
}

.sponsor-cta:hover,
.sponsor-cta:focus-visible {
  transform: translateY(-50%) translateY(-1px);
}

@media (max-width: 768px) {
  .sponsor-strip {
    height: 70px;
    --sponsor-cta-space: 0px;
  }

  .sponsor-strip-inner {
    column-gap: 12px;
    row-gap: 8px;
    flex-direction: column;
    justify-content: center;
  }

  .sponsor-logos a {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    min-width: 0;
  }

  .sponsor-strip img {
    height: 28px;
    max-width: 140px;
  }

  .sponsor-logos {
    max-width: 100%;
  }

  .sponsor-cta {
    display: none;
  }
}


/* ==================================================================================================== */
/* SERVICES */
/* ==================================================================================================== */

.services-section {
  min-height: 600px;
  background: var(--color-gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.services-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 var(--section-title-gap);
  text-align: center;
}

.services-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.services-slider {
  position: relative;
}

.services-slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-slider .swiper-slide {
  height: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 6px;
}

.service-icon {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--dur-medium) var(--ease-standard);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-black-70);
  max-width: 220px;
  min-height: 40px;
}

.services-nav {
  display: none;
}

.services-nav button {
  border: none;
  background: var(--black);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.services-nav button::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
}

.services-prev::before {
  -webkit-mask-image: url("/IMG/ICONS/arrow_l.png");
  mask-image: url("/IMG/ICONS/arrow_l.png");
}

.services-next::before {
  -webkit-mask-image: url("/IMG/ICONS/arrow_r.png");
  mask-image: url("/IMG/ICONS/arrow_r.png");
}

@media (max-width: 768px) {
  .services-slider {
    width: 100%;
  }

  .services-slider .swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .services-slider .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .services-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
  }

  .services-nav button {
    pointer-events: auto;
    position: relative;
    z-index: 4;
  }

  .service-card {
    padding: 12px 0;
  }
}

@media (min-width: 769px) {
  .service-icon img:hover {
    transform: translateY(-10px);
  }
}

/* ==================================================================================================== */
/* CREATIONS PAGE */
/* ==================================================================================================== */

.creations-page {
  min-height: auto;
  align-items: flex-start;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.creations-inner {
  width: calc(100% - (var(--nav-inset) * 2));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.creations-title {
  text-align: center;
  margin: 0 0 44px;
}

.creations-category + .creations-category {
  margin-top: 42px;
}

.creations-category {
  max-width: 1400px;
  margin: 0 auto;
}

.creations-category-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 18px;
}

.creations-grid {
  --creation-card-height: 200px;
  --creation-horizontal-width: calc(var(--creation-card-height) * 4 / 3);
  --creation-vertical-width: calc(var(--creation-card-height) * 3 / 4);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
}

.creation-item {
  width: var(--creation-horizontal-width);
  flex: 0 0 var(--creation-horizontal-width);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  outline: none;
  padding: 0;
}

.creation-media {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  border: none;
  transition: filter var(--dur-medium) var(--ease-standard);
}

.creation-item.is-portrait {
  width: var(--creation-vertical-width);
  flex-basis: var(--creation-vertical-width);
}

.creation-item.is-portrait .creation-media {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
}

.creation-item:focus-visible {
  outline: none;
}

.creation-item:hover .creation-media,
.creation-item:focus-visible .creation-media {
  filter: brightness(0.92);
}

.creations-empty {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-black-70);
}

.creation-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-black-70);
}

.creation-item[data-has-stack] .creation-label::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("/IMG/ICONS/stack_b.png") center / contain no-repeat;
  flex: 0 0 15px;
}

body.creations-lightbox-open {
  overflow: hidden;
}

.creations-lightbox[hidden] {
  display: none;
}

.creations-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.creations-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.creations-lightbox-close img {
  width: 30px;
  height: 30px;
  display: block;
}

.creations-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.creations-lightbox-nav::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--white);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 18px 18px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 18px 18px;
}

.creations-lightbox-prev {
  left: 18px;
}

.creations-lightbox-prev::before {
  -webkit-mask-image: url("/IMG/ICONS/arrow_l.png");
  mask-image: url("/IMG/ICONS/arrow_l.png");
}

.creations-lightbox-next {
  right: 18px;
}

.creations-lightbox-next::before {
  -webkit-mask-image: url("/IMG/ICONS/arrow_r.png");
  mask-image: url("/IMG/ICONS/arrow_r.png");
}

.creations-lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  touch-action: pan-y;
}

.creations-lightbox-image {
  width: auto;
  max-width: min(1200px, 95vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.creations-lightbox-title {
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .creations-category + .creations-category {
    margin-top: 34px;
  }

  .creations-category-title {
    font-size: 22px;
  }

  .creations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    justify-content: stretch;
  }

  .creation-item {
    width: auto;
    flex: initial;
    grid-column: span 1;
  }

  .creation-item.is-portrait {
    width: auto;
    flex-basis: auto;
  }

  .creations-lightbox {
    padding: 16px;
  }

  .creations-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .creations-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .creations-lightbox-prev {
    left: 10px;
  }

  .creations-lightbox-next {
    right: 10px;
  }
}

/* ==================================================================================================== */
/* SECTION DEFAULTS */
/* ==================================================================================================== */

.page-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  scroll-margin-top: calc(var(--nav-height) + var(--nav-offset) + 10px);
}

.page-section.creations-page {
  min-height: auto;
  align-items: flex-start;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.section-light {
  background: var(--color-gray-100);
  color: var(--black);
}

.section-white {
  background: var(--white);
  color: var(--black);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-white#avis-google {
  display: block;
  min-height: 0;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

#avis-google .section-title {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto var(--section-title-gap);
  padding: 0 var(--content-padding);
  text-align: center;
}

#avis-google .elfsight-app-ba10203a-db9c-44a6-b6f0-b719f50d00ef {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 var(--section-title-gap);
}

/* ==================================================================================================== */
/* LEGAL PAGES */
/* ==================================================================================================== */

.legal-page-section {
  min-height: auto;
  align-items: flex-start;
  padding: 56px 0 80px;
}

.legal-page-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.legal-page-inner .section-title {
  margin: 0 0 10px;
  text-align: left;
}

.legal-updated {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 22px;
}

.legal-page-inner h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 22px 0 8px;
}

.legal-page-inner p,
.legal-page-inner li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-black-80);
}

.legal-page-inner ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.legal-page-inner li {
  position: relative;
  padding-left: 14px;
}

.legal-page-inner li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .legal-page-section {
    padding: 42px 0 64px;
  }

  .page-section.creations-page {
    padding: var(--section-pad-mobile-top) 0 var(--section-pad-mobile-bottom);
  }

  .services-section,
  .contact-section,
  .section-white#avis-google {
    padding: var(--section-pad-mobile-top) 0 var(--section-pad-mobile-bottom);
  }

  .services-title,
  .section-title,
  #avis-google .section-title {
    margin-bottom: 32px;
  }
}

/* ==================================================================================================== */
/* ABOUT */
/* ==================================================================================================== */

.about-section {
  flex-direction: column;
  gap: 24px;
  min-height: 600px;
  padding-left: 0;
  padding-right: 0;
}

.about-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-white-85);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: flex-start;
}

.about-cta {
  border-color: var(--color-white-60);
  color: var(--white);
}

.about-cta:hover,
.about-cta:focus-visible {
  border-color: var(--white);
}

@media (max-width: 992px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-actions {
    align-self: center;
    justify-content: center;
  }
}

/* ==================================================================================================== */
/* CONTACT */
/* ==================================================================================================== */

.contact-section {
  min-height: 800px;
  background: var(--color-gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.contact-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-alert {
  max-width: var(--layout-max-width);
  width: 100%;
  margin: 0 auto 18px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
}

.contact-alert--success {
  background: rgba(0, 73, 69, 0.1);
  color: var(--color-accent);
}

.contact-alert--error {
  background: rgba(0, 0, 0, 0.08);
  color: var(--color-black);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-email {
  margin-top: 24px;
  font-size: 15px;
  text-align: center;
  color: var(--black);
}

.contact-email a {
  color: inherit;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  text-align: center;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--color-black-80);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--dur-fast) var(--ease-standard);
  resize: none;
  overflow: hidden;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-black-50);
}

.rights-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.rights-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
  border: none;
  padding: 0;
  background: url("/IMG/ICONS/check_box_no.png") center / contain no-repeat;
  cursor: pointer;
}

.rights-check input[type="checkbox"]:checked {
  background-image: url("/IMG/ICONS/check_box_yes.png");
}

.rights-check input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.45);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

.rights-check span {
  display: block;
  flex: 1 1 auto;
  font-size: 14px;
  color: var(--color-black-80);
}

.rights-check a {
  text-decoration: underline;
  font-weight: 500;
}

.contact-submit {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-submit.is-sending {
  opacity: 0.85;
  cursor: wait;
}

.contact-submit.is-success {
  background: var(--nav-accent);
  color: var(--white);
}

.contact-submit .submit-check {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  display: inline-block;
}

.contact-submit.is-error {
  background: var(--black);
  color: var(--white);
}

.contact-separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  letter-spacing: 0.2em;
  align-self: stretch;
}

.contact-separator::before {
  display: none;
}

.contact-separator span {
  background: var(--color-gray-100);
  padding: 6px 10px;
  z-index: 1;
}

.file-dropzone {
  border: 1.5px dashed rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--color-white-60);
  text-align: center;
  cursor: pointer;
}

.file-dropzone.is-dragover {
  border-color: var(--nav-accent);
  background: rgba(0, 73, 69, 0.06);
}

.file-dropzone input {
  display: none;
}

.file-dropzone label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--color-black-70);
  cursor: pointer;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 12px;
}

.file-remove {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: none;
  background: url("/IMG/ICONS/cross_close_black.png") center / 30px 30px no-repeat;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity var(--dur-fast) var(--ease-standard);
}

.file-remove:hover,
.file-remove:focus-visible {
  opacity: 1;
}

.file-remove.is-white {
  background-image: url("/IMG/ICONS/cross_close_white.png");
}

.file-types {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.file-types summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.file-types summary::-webkit-details-marker {
  display: none;
}

.file-types summary::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("/IMG/ICONS/arrow2_r.png") center / contain no-repeat;
  transition: transform var(--dur-fast) var(--ease-standard);
}

.file-types[open] summary::after {
  transform: rotate(-90deg);
}

.file-types a,
.contact-form a {
  text-decoration: underline;
  color: inherit;
}

@media (max-width: 992px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-separator {
    height: 40px;
    width: 100%;
  }

  .contact-separator::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-submit {
    align-self: center;
  }
}

/* ==================================================================================================== */
/* FOOTER */
/* ==================================================================================================== */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 28px;
  font-size: 15px;
}

.footer-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-col {
  text-align: left;
}

.footer-col:nth-child(1) {
  justify-self: start;
}

.footer-col:nth-child(2) {
  justify-self: center;
}

.footer-col:nth-child(3) {
  justify-self: end;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  color: var(--color-white-85);
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-subtitle {
  margin-top: 16px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin: 28px 0 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-col,
  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    justify-self: start;
    text-align: left;
  }

  .footer-col ul {
    align-items: flex-start;
  }
}


@keyframes nav-drop {
  from {
    top: calc(var(--nav-offset) - 16px);
    opacity: 0;
  }
  to {
    top: var(--nav-offset);
    opacity: 1;
  }
}

@keyframes nav-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .nav-logo,
  .nav-links,
  .nav-pages {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
