/* ============================================================
   Marta Arca Portfolio — Custom CSS Clone
   Replicates martarca.myportfolio.com (Adobe Portfolio theme "marta/ludwig")
   Background: #111111, text: #fff/#AEAEAE, font: uppercase sans
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #111111;
  position: relative;
  min-height: 100%;
}

body { margin: 0; min-height: 100%; background-color: #000000; color: #ffffff; }

ul { margin: 0; padding: 0; }
ul li { list-style-type: none; }
img { vertical-align: top; border: 0; max-width: 100%; }
p { margin: 0; }
a { text-decoration: none; background: transparent; color: inherit; }
a:active, a:focus, a:hover { outline: 0; }
.italic { font-style: italic; }
.bold { font-weight: bold; }
.underline { text-decoration: underline; }
.strikethrough { text-decoration: line-through; }
.preserve-whitespace { white-space: pre-wrap; }
.preserve-whitespace--nowrap { white-space: nowrap; }

.cfix:after {
  clear: both; content: ' '; display: block;
  height: 0; line-height: 0; overflow: hidden; visibility: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary { display: block; }

/* === Site Layout === */
.site-wrap, .site-container {
  position: relative;
  width: 100%;
}

.site-container {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* === Header / Navigation === */
.site-header:after, .logo-wrap:after {
  clear: both;
  content: '';
  display: table;
}

.site-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 160px;
  padding-bottom: 10px;
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.on-scroll {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-placeholder { display: none; }

/* === Navigation Container === */
.nav-container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 2rem;
  width: 30%;
  min-width: 0;
}

.nav-container .gallery-title,
.nav-container .page-title {
  display: inline-block;
}

nav .gallery-title a,
nav .page-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

nav .gallery-title a:hover,
nav .page-title a:hover {
  color: #FFFFFF;
}

nav .gallery-title a.active,
nav .page-title a.active {
  color: #fff;
}

/* === Logo === */
.logo-wrap {
  flex: 1;
  text-align: center;
  width: 40%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-top: 0;
}

.logo {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0 5%;
}

.logo a,
.logo.logo-text a {
  color: #fff;
  transition: color 0.2s ease;
}

.logo a:hover {
  color: #FFFFFF;
  opacity: 0.8;
}

/* === Social nav (right side placeholder) === */
.pf-nav-social {
  width: 30%;
  text-align: right;
}

/* === Hamburger (mobile) === */
.hamburger-click-area {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger i {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* === Responsive Nav (mobile overlay) === */
.js-responsive-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
}

.responsive-nav {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  z-index: 200;
  padding: 80px 5%;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.3s ease;
  pointer-events: all;
}

.responsive-nav.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.responsive-nav .nav-container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 1.5rem;
}

.responsive-nav nav .gallery-title a,
.responsive-nav nav .page-title a {
  font-size: 22px;
  line-height: 32px;
  color: #FFFFFF;
}

.close-responsive-button {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close-responsive-button::before,
.close-responsive-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.close-responsive-button::before { transform: rotate(45deg); }
.close-responsive-button::after { transform: rotate(-45deg); }

/* === Project Covers Grid === */
.project-covers {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  padding-top: 0;
}

.project-cover {
  display: block;
  position: relative;
  width: 50%;
}

.project-cover.hold-space .cover-image:before {
  content: '';
  display: block;
  padding-bottom: 56.25%; /* 16:9 default */
}

.project-cover .cover-content-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.project-cover .cover-image-wrap {
  overflow: hidden;
  position: relative;
}

.project-cover .cover-image {
  position: relative;
  -webkit-transform: translateZ(0);
}

.project-cover .cover-image:after {
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.project-cover:hover .cover-image:after {
  opacity: 1;
}

.project-cover .cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-cover .cover .cover__img {
  font-family: 'object-fit: cover;';
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: transform 0.4s ease;
}

.project-cover:hover .cover__img {
  transform: translate(-50%, -50%) scale(1.04);
}

.project-cover .cover__img.image-loaded {
  background-color: transparent;
}

/* === Project Cover Details Overlay === */
.project-cover .details-wrap {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.15s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.project-cover:hover .details-wrap {
  opacity: 1;
}

.project-cover .details {
  width: 100%;
}

.project-cover .details-inner {
  overflow: hidden;
}

.project-cover .title,
.project-cover .date {
  clear: both;
}

.project-cover .title {
  color: #ffffff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.project-cover .date {
  color: rgba(255,255,255,0.6);
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* === Back to Top === */
.back-to-top {
  text-align: center;
  padding: 40px 0 20px;
}

.back-to-top a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-to-top a:hover { color: #fff; }
.back-to-top .arrow { font-size: 16px; }

.back-to-top-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  z-index: 50;
}

.back-to-top-fixed.visible { opacity: 1; }
.back-to-top-fixed:hover { background: rgba(255,255,255,0.2); }

.icon-back-to-top {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* === Footer === */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: #666;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer a { color: #888; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }

/* === Page (Contact / Project) === */
.page-container {
  padding-top: 160px;
}

.page.standard-modules {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 60px;
}

.page-header {
  padding: 40px 0 30px;
}

.page-header .title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
}

.page-header .description {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

/* === Contact Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input label {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-input input,
.form-input textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input input:focus,
.form-input textarea:focus {
  border-bottom-color: #fff;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #555;
}

.form-input textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  display: inline-block;
  background: transparent;
  border: 1px solid #AEAEAE;
  color: #AEAEAE;
  cursor: pointer;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  margin-top: 10px;
  align-self: flex-start;
}

.submit-button:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.contact-form-sent {
  padding: 20px 0;
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.contact-form-error {
  color: #e57373;
}

/* === Project Detail Wrap === */
.project-detail-wrap {
  padding-top: 160px;
}

.project-detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 60px;
  overflow: hidden;
}


/* Project header content centered */
.project-detail-content .gallery-title,
.project-detail-content .page-title,
.project-detail-content .project-description,
.project-detail-content .button-module {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* Images and videos full-width */
.project-media-items {
  width: 100%;
}

.project-module.image img,
.e2e-site-project-module-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-module-video {
  width: 100%;
}

.project-detail-content .gallery-title {
  padding: 20px 0 0;
}

.project-detail-content .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.project-detail-content .gallery-title a:hover {
  color: #fff;
}

.project-detail-content .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.project-detail-content .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.project-description {
  text-align: center;
  padding: 0 0 40px;
  max-width: 640px;
  margin: 0 auto;
}

.project-description p {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.8;
  white-space: normal !important;
}

.project-media-items {
  margin-bottom: 40px;
}

.project-media-item {
  margin-bottom: 40px;
}

.other-projects-section {
  padding-top: 40px;
  border-top: 1px solid #222;
}

.other-projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
}

.other-project-item {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.other-project-item:hover {
  color: #fff;
}

.other-project-item .title {
  color: inherit;
}

@media (max-width: 932px) {
  .project-detail-wrap {
    padding-top: 80px;
  }
}

/* === Project Modules === */
.project-module {
  margin-bottom: 40px;
}

.project-module.image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.project-module.image .js-lightbox {
  position: relative;
  overflow: hidden;
}

.project-module.image .js-lightbox img {
  display: block;
  width: 100%;
}

.module-caption-container {
  padding: 12px 0 0;
}

.module-caption {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.module-caption p {
  margin-bottom: 6px;
}

/* === Video Embed === */
.project-module.video {
  margin-bottom: 40px;
}

.embed-dimensions {
  width: 100%;
}

.embed-aspect-ratio iframe {
  display: block;
}

/* === Button Module === */
.button-container {
  margin-bottom: 30px;
}

.button-module {
  display: inline-block;
  background: transparent;
  border: 1px solid #AEAEAE;
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 10px 24px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.button-module:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

/* === Other Projects section === */
.other-projects {
  padding: 60px 5% 40px;
  max-width: 860px;
  margin: 0 auto;
}

.other-projects-title {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.other-project-covers {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.other-project-covers .project-cover {
  width: calc(33.333% - 4px);
}

/* === Lightbox === */
.pf-lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.pf-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.pf-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #111;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  font-family: Helvetica Neue, sans-serif;
}

/* === Responsive === */
@media (max-width: 932px) {
  .site-header {
    height: 80px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .project-covers {
    padding-top: 80px;
  }

  .site-header .nav-container {
    display: none;
  }

  .site-header .pf-nav-social {
    display: none;
  }

  .hamburger-click-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
    text-align: right;
  }

  .logo-wrap {
    width: 70%;
    text-align: left;
    padding: 0;
  }

  .logo {
    padding: 0;
    font-size: 16px;
  }

  .page-container {
    padding-top: 80px;
  }

  .project-cover {
    width: 50%;
  }

  .other-project-covers .project-cover {
    width: calc(50% - 3px);
  }
}

@media (max-width: 540px) {
  .project-cover {
    width: 100%;
  }

  .project-cover.hold-space .cover-image:before {
    padding-bottom: 56.25%;
  }

  .other-project-covers .project-cover {
    width: 100%;
  }

  .page.standard-modules {
    padding: 0 5% 40px;
  }
}

/* === Layla Cosmetics full-width grid override === */
.project-layla-cosmetics .page.standard-modules {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* === Layla Cosmetics row gallery === */
.layla-cosmetics-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.layla-cosmetics-content .gallery-title,
.layla-cosmetics-content .page-title,
.layla-cosmetics-content .other-projects-section {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.layla-row-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.layla-row-item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.layla-row-item .js-lightbox {
  display: block;
  width: 100%;
  height: 100%;
}

.layla-row-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

/* === Boiron project — full-width hero layout === */
.boiron-detail-wrap {
  padding-top: 160px;
}

.boiron-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 0;
}

.boiron-header .gallery-title {
  padding: 20px 0 0;
}

.boiron-header .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.boiron-header .gallery-title a:hover {
  color: #fff;
}

.boiron-header .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.boiron-header .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.boiron-hero-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.boiron-hero-image .js-lightbox {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.boiron-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 932px) {
  .boiron-detail-wrap {
    padding-top: 80px;
  }
}

/* === CIFF Instagram Content — full-width hero layout === */
.ciff-detail-wrap {
  padding-top: 160px;
}

.ciff-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 0;
}

.ciff-header .gallery-title {
  padding: 20px 0 0;
}

.ciff-header .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.ciff-header .gallery-title a:hover {
  color: #fff;
}

.ciff-header .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.ciff-header .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.ciff-hero-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.ciff-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 932px) {
  .ciff-detail-wrap {
    padding-top: 80px;
  }
}

/* === Ghoud project — full-width video layout === */
.ghoud-detail-wrap {
  padding-top: 160px;
}

.ghoud-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 0;
}

.ghoud-header .gallery-title {
  padding: 20px 0 0;
}

.ghoud-header .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.ghoud-header .gallery-title a:hover {
  color: #fff;
}

.ghoud-header .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.ghoud-header .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.ghoud-hero-video {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

@media (max-width: 932px) {
  .ghoud-detail-wrap {
    padding-top: 80px;
  }
}

/* === CV project — full-width video layout === */
.cv-detail-wrap {
  padding-top: 160px;
}

.cv-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 0;
}

.cv-header .gallery-title {
  padding: 20px 0 0;
}

.cv-header .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.cv-header .gallery-title a:hover {
  color: #fff;
}

.cv-header .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.cv-header .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.cv-hero-video {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.cv-basics-label {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 932px) {
  .cv-detail-wrap {
    padding-top: 80px;
  }
}

/* === Whirlpool project — full-width hero layout === */
.whirlpool-detail-wrap {
  padding-top: 160px;
}

.whirlpool-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 0;
}

.whirlpool-header .gallery-title {
  padding: 20px 0 0;
}

.whirlpool-header .gallery-title a {
  color: #AEAEAE;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.whirlpool-header .gallery-title a:hover {
  color: #fff;
}

.whirlpool-header .page-title {
  padding: 20px 0 30px;
  text-align: center;
}

.whirlpool-header .page-title h1.title {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.whirlpool-hero-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.whirlpool-hero-image .js-lightbox {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.whirlpool-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 932px) {
  .whirlpool-detail-wrap {
    padding-top: 80px;
  }
}
