* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	line-height: 1.5;
	font: inherit;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	position: relative;
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	color: inherit;
}

.is-italic, i, em {
  font-style: italic;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
	font: inherit;
}

input {
	appearance: none;
}

audio, canvas, iframe, img, svg, video {
	display: block;
	max-width: 100%;
}

/* Prevents img without src to appear */
img:not([src]) {
	visibility: hidden;
}

@font-face {
  font-display: swap;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/instrument-sans-v4-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/instrument-serif-v5-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Instrument Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/InstrumentSans-Italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Instrument Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/InstrumentSans_Condensed-Bold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/InstrumentSerif-Italic.woff2') format('woff2');
}

/* ==========================================================================
Theme Custom Style
========================================================================== */

:root {
    --black: #18130D;
    --white: #F9F3E1;
    --red: #a42224;
    --main-color: var(--white);
    --sans: 'Instrument Sans', 'Helvetica', sans-serif;
    --serif: 'Instrument Serif', 'Georgia', serif;
    --grid-cols: 12;
    --grid-gutter: 40px;
    --total-gaps: calc(11 * 20px);
    --col-width: calc((100% - var(--total-gaps)) / 12);
    --space: 20px;
}

body {
    background-color: var(--black);
    color: var(--main-color);
    font-family: var(--sans);
    line-height: 1.45em;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    font-size: 100%;
    font-weight: 400;
}

body {
  opacity: 1;
  transition: .6s opacity;
}

body.fade {
  opacity: 0;
  transition: none;
}

body.no-overflow {
	overflow: hidden !important;
}

main, section, header, footer {
	position: relative;
}

.mobile-only {
  display: none;
}

/* MEDIAS */

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.col img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
	font-weight: normal;
  line-height: 1em;
  letter-spacing: -.005em;
}

h2, .page-header h1 {
    font-size: 4.5em;
    margin-bottom: 0.25em;
}

p {
    line-height: 1.5em;
    margin-bottom: 2em;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

b, strong {
  font-weight: 600;
}

.entry-content a {
  text-decoration: underline;
}

/* LAYOUT */

.container {
  position: relative;
  margin: 0 40px;
}

.container.medium {
    --grid-cols: 10;
    --total-gaps: calc(9 * 20px);
    --col-width: calc((100% - var(--total-gaps)) / var(--grid-cols));
    width: calc((100vw - 2 * var(--grid-gutter)) * 10 / 12);
    margin: 0 auto;
}

/* Desktop par défaut */
    .tab-section-mobile,
    .logo-mobile {
        display: none;
}

/* FLEX */

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex.is-reversed {
    flex-direction: row-reverse;
}

.flex--space-between,
.space-between {
    justify-content: space-between;
}

.center {
    align-items: center;
}

.divider-line {
    width: 100%;
    height: .5px;
    background-color: var(--red);
}

/* MARGINS*/

.margin-large {
    margin-top: 10vw;
    margin-bottom: 10vw;
}

.margin-xlarge {
    margin-top: 20vw;
    margin-bottom: 20vw;
}

/* COLUMNS */

.col-one {
  width: calc(1 * var(--col-width) + 0 * 20px);
}

.col-two {
  width: calc(2 * var(--col-width) + 1 * 20px);
}

.col-three {
  width: calc(3 * var(--col-width) + 2 * 20px);
}

.col-four {
  width: calc(4 * var(--col-width) + 3 * 20px);
}

.col-five {
  width: calc(5 * var(--col-width) + 4 * 20px);
}

.col-six {
  width: calc(6 * var(--col-width) + 5 * 20px);
}

.col-seven {
  width: calc(7 * var(--col-width) + 6 * 20px);
}

.col-eight {
  width: calc(8 * var(--col-width) + 7 * 20px);
}

.col-nine {
  width: calc(9 * var(--col-width) + 8 * 20px);
}

.col-ten {
  width: calc(10 * var(--col-width) + 9 * 20px);
}

.col-eleven {
  width: calc(11 * var(--col-width) + 10 * 20px);
}

.col-twelve {
  width: calc(12 * var(--col-width) + 11 * 20px); /* = 100% */
}

/* Buttons */

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: fit-content;
  padding: 1em 1.5em;
  border: .5px solid var(--red);    
  font-size: .875em;
  letter-spacing: .1em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 18px;
  transition: all .25s ease-in;
  cursor: pointer;
}

.btn:hover {
  background-color: rgba(255,255,255,.05);
}

.btn svg {
  display: none;
}

.btn.btn-download svg {
  display: inline-block;
  margin-left: 32px;        
}

.two-col-btn .btn {
  margin-top: 2em;
}

.equipment-button-container {
  margin: 2em 0 0;
}



/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Animated Sections */

section .section-header,
section .section-content {
  transform: translateY(50px); 
	transition: opacity 2s cubic-bezier(.22, 1, .36, 1), transform 2s cubic-bezier(.22, 1, .36, 1);
  opacity: .25;
}

.visible .section-header,
.visible .section-content {
  transform: translateY(0%); 
  opacity: 1;
}

/* Animated Images */

.custom-pic {
  display: block;
  opacity: .1;
  transition: all .5s cubic-bezier(.4,0,.2,1) .2s;
}

.custom-pic.visible {
  opacity: 1;
}

/* Animated Links */

.underline {
  position: relative;
}

.underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dm-dark .underline::after {
  background-color: var(--black);
}

@media (hover: hover) and (pointer: fine) {
  .underline:hover::after {
    left: auto;
    right: 0;
    width: 0;
  }
}


/* ==========================================================================
HEADER
========================================================================== */

.header {
    position: fixed;
    top: 30px;
    left: 40px;
    right: 40px;
    z-index: 10;
    background-color: rgba(249, 243, 225, 0.1);
    backdrop-filter: blur(10px);
    padding: 0 30px;
    min-height: 60px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
}

.header #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header nav ul {
    display: flex;
    font-size: .875rem;
}

.header nav.left-nav ul li {
    margin-right: 20px;
}

.header nav.right-nav ul li {
    margin-left: 20px;
}

.nav-container {
	height: 60px;
}

.trigger-menu.is-active a {
	border-bottom: 1px solid rgba(249, 243, 225, 0.5);
}

.mega-menu {
	border-top: .5px solid rgba(249, 243, 225, 0.5);
	padding: 25px 0 30px;
}

.mega-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
}

.mega-menu ul li {
	width: 20vw;
	margin: 0 15px 0 0;
}

.mega-menu ul li:last-of-type {
	margin-right: 0;
}

.mega-menu ul li a {
	display: block;
	background: var(--black);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}

.mega-menu ul li a div span {
	position: absolute;
	left: 15px;
	bottom: 15px;
	font-family: var(--serif);
	font-size: 3vw;
	line-height: 1em;
	opacity: 0;
	transition: opacity 0.4s ease 0ms;
	z-index: 1;
}

.mega-menu ul li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mega-menu ul li a:after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease 0ms;
}

.mega-menu ul li a:hover:after,
.mega-menu ul li a:hover div span {
	opacity: 1;
	transition: opacity 0.4s ease 0ms;
}


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

.footer {
    border-top: .5px solid var(--red);
}

.footer-top {
    padding: 120px 0 150px;
}

.footer-logo svg {
    width: 100%;
}

.footer__legals {
    font-size: .875rem;
    padding: 15px 0 30px;
}

.footer__legals a {
    margin-left: 15px;
}

/* Footer Menu */

.col-nav {
    line-height: 2em;
}

.col-nav h4 {
    font-family: var(--sans);
    margin-bottom: 1.5em;
}

.external-link svg {
	display: inline-block;
	margin-left: 8px;
	opacity: .5;
}

/* ==========================================================================
MOBILE NAV
========================================================================== */

/* Toggle Menu */

.toggle-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  top: 13px;
  right: 0;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: absolute;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.25);
  z-index: 10;
}

.toggle-menu span {
  background-color: transparent;
  content: "";
  display: block;
  height: 1px;
  left: calc(50% - 10px );
  position: absolute;
  top: calc(50% - 1px );
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 20px;
}

.toggle-menu span:before, .toggle-menu span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 20px;
}

.toggle-menu span:before {
  top: 4px;
}

.toggle-menu span:after {
  top: -4px;
}

.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}

.toggle-menu.active span:before, .toggle-menu.active span:after {
  background-color: #fff;
  -webkit-transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
  transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
}

.toggle-menu.active span:before {
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

/* Full Screen Nav */

/* 
#mobile-nav {
  background-color: rgba(249, 243, 225, 0.1);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 75px;
  right: 15px;  
  left: 15px;
  overflow: hidden;
  z-index: 1000;
  transition: all 1s cubic-bezier(.19,1,.22,1) 0s;
 
}

#mobile-nav.open {
 
} 

#mobile-nav-container {
  margin: 0 15px 15px;
  border-top: .5px solid rgba(249, 243, 225, 0.5);
}
*/

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

.page-home {
    display: flex;
    align-items: flex-end;
    background-color: rgba(249, 243, 225, 0.1);
    background-size: cover !important;
    background-position: center !important;
    color: var(--main-color);
    width: 100%;
    aspect-ratio: 16 / 9;
}

.page-home--video {
    position: relative;
    overflow: hidden;
}

.page-home__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-home--video .marquee {
    position: relative;
    z-index: 1;
}

.page-home h1 {
    font-size: 21vw;
    line-height: 1em;
    letter-spacing: -0.015em;
}

/* Marquees */

.marquee {
  position: relative;
  display:block;
  width: 100vw;
  max-width: 100%;
  height: 23vw;
  overflow: hidden;
  /* transition: all .2s ease; */
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 150s linear infinite;
}

/* La durée est recalculée dynamiquement par le JS (vitesse constante en px/s) */
.marquee-text-images-block .track {
  animation-duration: 1ms; /* invisible jusqu'au calcul JS */
}

.marquee-content span {
    display: inline-block;
    /* margin: 0 .1em; */
}

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

.marquee-block .marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-block .track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-block .marquee-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1rem 0;
}
.marquee-block .marquee-content img {
  height: auto;
  max-height: 56px;
  width: auto;
  display: block;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-block .track {
      animation: none;
      transform: none;
  }
}

/* IMG Marquee */

.img-marquee img {
  margin: 0 20px;
}

/* small-marquee */

.page-home-small {
  background: transparent;
  border-bottom: .5px solid var(--red);
  align-items: center;
}

.page-home-small .small-marquee {
  margin-top: 100px;
}

.page-home-small .small-marquee h1 {
  font-size: 15vw;
}

.page-home-small .small-marquee .marquee-content img {
  display: inline-block;
  width: 15vw;
  margin: 0 1vw;
}

/* Homepage Marquee */

.marquee-heading {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);        
    font-family: var(--sans);
    font-size: 1.25em;
    text-align: center;
    z-index: 1;
}

.marquee-text-images-block{
    border-top: .5px solid var(--red);
    border-bottom: .5px solid var(--red);
    padding: 8.5vw 0 5vw;
}

.marquee-block {
    font-size: 15vw;
    line-height: 1em;
    letter-spacing: -0.015em;
}

.marquee-block span {
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
}

.marquee-block span img {
    width: 10vw;
    margin: 0 1vw;
}

/* CodePen Home
Horizontal scrolling gallery - ScrollTrigger */

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.horiz-gallery-strip,
.horiz-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

.project-wrap {
  width: 33vw;
  padding: 2rem;
  box-sizing: content-box;
}
.project-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Stacking Cards */

.cards {
  width: 100%;
}

.cards + .cards {
  margin-top: 40px;
}

.card {
  position: sticky;
  top: 40px;
  padding: 1.5em;
  border-radius: 0;
  height: calc(100svh - 80px);
  overflow: hidden;
  background-size: cover !important;
}

.full-width-image__overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  max-width: 500px;
  background-color: rgba(249, 243, 225, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  z-index: 10;                    
}

.full-width-image__overlay h3 {
  font-size: 2.75em;
  margin-bottom: .25em;
}

/* Two Columns Images */

.two-columns-images__col img {
    width: 100%;
    height: auto;
    display: block;
}

/* Four Square Images */

.four-square-images__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space);
}

.four-square-images__cell {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.four-square-images__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.studio-intro .four-square-images__grid {
    margin-top: 15px;
}

/* Studio Intro : ratio naturel des images */
.studio-intro .four-square-images__cell {
    aspect-ratio: unset;
    overflow: visible;
}

.studio-intro .four-square-images__cell img {
    width: 100%;
    height: auto;
    object-fit: unset;
}

/* Columns */

.col-text h2 {
  font-size: 72px;
  line-height: 1em;
  margin-bottom: 0.35em;
}

.col-text p {
  font-size: 1.375em; /* 24px */
  margin-bottom: 1.5em;
  max-width: 95%;
}

/* Accordions */

.accordions {
  border-top: .5px solid;
}

.accordion-item {
    border-bottom: .5px solid var(--red);
}

.accordion-trigger {
    position: relative;
    padding: 2em 0;
    cursor: pointer;
}

.accordion-trigger h3 {
    font-family: var(--sans);
    font-size: 2em;
    line-height: 1em;
}

.accordion-trigger .trigger-icon-container {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 34px;
    height: 34px;
    padding: 6px;
    margin-top: -17px;
    border: 1px solid rgba(255,255,255,.25);
    transition: all .25s ease-in;
}

.accordion-trigger .trigger-icon-container:hover {
    background-color: rgba(255,255,255,.05);
}

.accordion-trigger .trigger-icon {
    display: block;
    width: 20px;
    height: 20px;
    transition: all .25s ease-in;
    position: relative;
}

.accordion-trigger .trigger-icon::before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: var(--white);
    left: 50%;
    margin-left: -0.5px;
    transition: all .25s ease-in;
}

.accordion-trigger .trigger-icon::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    top: 50%;
    margin-top: -0.5px;
    left: 0;
    transition: all .25s ease-in;
}

.accordion-trigger.is-active .trigger-icon {
    transform: rotate(180deg);
}

.accordion-trigger.is-active .trigger-icon::before {
    transform: rotate(90deg);
}

.accordion-details {
    display: none;
    padding: 2em 0 4em;
}

.accordion-details ul {
  column-count: 3;
}

.accordion-details .accordion-title {
    font-size: 2em;
    line-height: 1.25em;
}

.accordion-details .btn {
    margin-top: 3em;
}

.details-note {
    position: relative;
    margin-top: 2em;
    font-size: 12px;
    line-height: 1.25em;
    max-width: 340px;
    opacity: .75;
    padding-left: 10px;
}

.details-note:before {
    content: "* ";
    position: absolute;
    left: 0;
}


.accordion-trigger {
    cursor: pointer;
}

/* Tabs */

.tab-text {
    height: 50%;
    border: .5px solid var(--red);
    transition: all .25s ease-in;
    cursor: pointer;
}

.tab-text:first-of-type {
    height: calc(50% - 30px);
    margin-bottom: 30px;
}

.tab-text:hover, .tab-text.active {
    background-color: rgba(255,255,255,.05);
}   

.tab-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 3em;
}

.tab-text h3 {
    font-size: 3.5em; /* 56px */
    margin-bottom: 1em;
}

.tab-text p {
    font-size: 1.125em; /* 18px */
    margin-bottom: 0;
    max-width: 95%;
}

.tab-image .carousel-container {
    margin: 0;
}

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

/* Carousels */

.carousel-container {
  position: relative;
  margin: 4em 0;
}

/* Safari fix: explicit width required on viewport, slider and cells */
.flickity-viewport {
  width: 100%;
}

.main-carousel,
.js-flickity-tab {
  width: 100%;
}

.carousel-cell {
  width: 100%;
}

.carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-controls {
  position: absolute;
  bottom:20px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 34px;
  height: 34px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
  transition: all .25s ease-in;
}

.carousel-btn:hover {
  background-color: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

/* Hero Section */

.hero-section .col-text p {
  font-size: 1.5em;
}

/* Team Page */

.team-section .container {
    display: flex;
    flex-direction: column;
    gap: 8vw;
}

.team-group {
    display: flex;
    gap: 40px;
}

.team-group__members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
    flex: 1;
}

.team-member__figure {
    margin: 0 0 16px;
    overflow: hidden;
}

.team-member__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member__name {
    font-family: var(--serif);
    font-size: 2em;
    margin: .25em 0;
}

.team-member__role {
    font-family: var(--sans);
    font-size: 1em;
    margin: 4px 0 0;
}

.team-divider {
    width: 100%;
    overflow: hidden;
}

.team-divider__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Team – mobile */
@media only screen and (max-width: 768px) {
    .team-group {
        flex-direction: column;
        gap: 24px;
        margin-top: 15vw;
    }

    .team-group:first-of-type {
      margin-top: 0;
    }

    .team-group__title {
        flex: none;
        width: 80%;
    }

    .team-group__members {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 0;
    }

    .team-member {
      width: 100%;
    }
}

/* Artists Page */

/* ── Featured Artists: grid ── */
.artists-featured {
    margin-top: 10vw;
    margin-bottom: 10vw;
}

.artists-featured__header {
    text-align: center;
    margin-bottom: 2vw;
}

.artists-featured__label {
    text-align: center;
    margin: -5vw 0 0;
    padding-bottom: 3vw;
}

/* 3-column grid — no gap between columns, thin line via border */
.artists-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.artists-featured__card {
    display: flex;
    flex-direction: column;
}

/* Portrait image — 3:4 ratio */
.artists-featured__figure {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

.artists-featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artists-featured__info {
    padding: .75em 0 1.25em;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.artists-featured__name {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 .15em;
}

.artists-featured__studio,
.artists-featured__year {
    display: block;
}

/* ── A–Z Directory ── */
.artists-az__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    margin-bottom: 1em;
    gap: 0.25em;
}

.artists-az__letter {
    background: none;
    border: none;
    color: var(--main-color);
    font-family: var(--sans);
    font-size: 1.5vw;
    cursor: pointer;
    padding: 0.35em 0.5em;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artists-az__letter.is-active {
    background: var(--red);
}

.artists-az__letter.is-empty {
    opacity: 0.2;
    cursor: default;
}

.artists-az__group {
    display: none;
}

.artists-az__group.is-visible {
    display: block;
}

.artists-az__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}

.artists-az__item {
    font-family: var(--sans);
    padding: 1em 0;
    border-bottom: .5px solid rgba(255,255,255,0.08);
}

/* ── Artists – accordion (mobile uniquement, rendu via wp_is_mobile()) ── */

.artists-az__label {
  text-align: center;
  margin-top: -5vw;
  padding-bottom: 5vw;
}

.artists-az__accordion {
    display: none; /* caché par défaut, visible uniquement si wp_is_mobile() l'injecte */
}

.artists-az__acc-item {
    border-top: 0.5px solid rgba(255, 255, 255, 0.15);
}

.artists-az__acc-item:last-child {
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
}

.artists-az__acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--main-color);
    font-family: var(--sans);
    font-size: 1rem;
    padding: 0.85em 0;
    cursor: pointer;
    text-align: left;
}

.artists-az__acc-item.is-empty .artists-az__acc-header {
    opacity: 0.2;
    cursor: default;
}

.artists-az__acc-letter {
    font-size: 1.1rem;
}

/* Icône gérée via CSS — le JS global ajoute/retire .is-active sur .accordion-trigger */
.artists-az__acc-icon {
    font-size: 1.1rem;
    line-height: 1;
    width: 1.2em;
    text-align: center;
}

.artists-az__acc-icon::before {
    content: '+';
}

.accordion-trigger.is-active .artists-az__acc-icon::before {
    content: '—';
}

.artists-az__acc-item.is-empty .artists-az__acc-icon::before {
    content: '|';
}

/* jQuery slideToggle nécessite display:none en état initial */
.artists-az__acc-body {
    display: none;
    padding-bottom: 1em;
}

/* ── Artists – mobile ── */
@media only screen and (max-width: 768px) {

    /* Featured : scroll horizontal */
    .artists-featured__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 0.5em;
    }

    .artists-featured__card {
        flex: 0 0 calc(80% - 10px);
        scroll-snap-align: start;
    }

    .artists-featured__info {
      padding-bottom: 0;
    }

    .artists-featured__name {
        font-size: 2.5em;
    }

    .artists-featured__label {
      margin-top: 10vw;
      padding-bottom: 10vw;
    }

    .artists-az__label {
      margin-top: -10vw;
      padding-bottom: 10vw;
    }

    .artists-az__acc-letter {
      font-family: var(--serif);
      font-size: 2.5em;
    }

    .artists-az__item {
      padding: .5em 0;
      border-bottom: none;
    }

    .artists-az__acc-body {
      padding: 0 0 2em;
    }

    /* Accordéon visible uniquement sur mobile */
    .artists-az__accordion {
        display: block;
    }

    /* Grille 2 colonnes dans l'accordéon */
    .artists-az__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tours Page */

/* ── Intro: quote + text ── */
.tours-intro__quote blockquote {
    font-family: var(--serif);
    font-size: 8vw;
    line-height: 1em;
    letter-spacing: -.005em;
    margin: 0;
    quotes: none;
}

.tours-intro p {
  font-size: 1.375em;
}

/* ── Detail: portrait + features ── */

.tours-detail__disclaimer {
    font-family: var(--sans);
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.5;
    margin: 0;
}

/* ── Tour features ── */
.tours-features {
    text-align: center;
}

.tours-features .container.medium {
  padding: 0 10vw;
}

.tours-features__caption {
    margin: -5vw 0 5vw !important;
}

.tours-features__grid {
    list-style: none;
    margin: 0 0 3rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 6rem;
    text-align: left;
}

.tours-features__item {
    display: flex;
    align-items: flex-start;
    font-size: 1.25em;
    line-height: 1.5em;
    gap: 1rem;
}

.tours-features__arrow {
    flex-shrink: 0;
    margin-top: 7px;
}

.tours-features__disclaimer {
    font-size: 1rem;
    opacity: 0.5;
    max-width: 46ch;
    margin: 5vw auto 0;
}

.tours-features__disclaimer p {
    margin: 0;
}

@media (max-width: 768px) {
    .tours-features__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Tour info blocks ── */

/* Left column — stacked blocks */
.tours-info__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tours-info__block {
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 2.5rem 2.5rem;
}

.tours-info__title {
    font-family: var(--serif);
    font-size: 3.5em;
    margin-bottom: 1em;
    line-height: 1.2;
}

.tours-info__content {
    font-size: 1.25em;
}

.tours-info__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tours-info__content li, .col-text li {
    position: relative;
    padding: 0.3em 0 0 30px;
    line-height: 1.5em;
}

.tours-info__content li:before, .col-text li:before {
  content: url("data:image/svg+xml,%3Csvg fill='none' height='14' viewBox='0 0 14 14' width='14' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3CclipPath id='a'%3E%3Cpath d='m0 0h14v13.72h-14z'%3E%3C/path%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m7.49 13.5801 6.36-6.36004c.09-.09.15-.22.15-.35s-.05-.26-.15-.35l-6.36-6.380001c-.19-.1900004-.52-.1900004-.71 0-.19.19-.19.51 0 .71l5.51 5.510001h-12.29v1h12.29l-5.51 5.51004c-.19.2-.19.51 0 .71s.51.19.71 0z' fill='%23f9f3e1'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  left: 0;
}

.tours-info__content li strong {
    font-weight: 600;
}

/* Right column — portrait image */
.tours-info__right {
  display: flex;
  overflow: hidden;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}

.tours-info__figure {
    margin: 0;
    width: 100%;
}

.tours-info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

@media (max-width: 768px) {
    .tours-info .flex {
        flex-direction: column;
    }

    .tours-info__left,
    .tours-info__right {
        width: 100%;
    }

    .tours-info__right {
        display: none;
    }
}

/* ── Reviews marquee ── */
.tours-reviews__track {
    display: flex;
    gap: 20px;
}

.tours-review-card {
    flex-shrink: 0;
    width: 260px;
    border: .5px solid var(--red);
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.tours-review-card__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    opacity: 0.5;
    margin: 0;
    text-transform: uppercase;
}

.tours-review-card__text {
    font-family: var(--sans);
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}

/* ── Tours CTA ── */
.tours-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5em;
}

.tours-cta__secondary {
    font-family: var(--sans);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ── Tours – mobile ── */
@media only screen and (max-width: 768px) {
    .tours-intro .container.flex {
        flex-direction: column;
        gap: 2em;
    }

    .tours-intro .col-five,
    .tours-intro .col-six {
        width: 100%;
    }

    .tours-detail .container.flex {
        flex-direction: column;
        gap: 2em;
    }

    .tours-detail .col-four,
    .tours-detail .col-seven {
        width: 100%;
    }

    .tours-features {
        grid-template-columns: 1fr;
    }

    .tours-info .container.flex {
        flex-direction: column-reverse;
        gap: 3em;
    }

    .tours-info__right {
      display: block;
      width: 100%;
      aspect-ratio: 9 / 16;
    }

    .tours-info__block {
      padding: 1.5rem 1.5rem 1.5rem;
    }

    .tours-info__title {
      font-size: 2.75em;
      margin-bottom: 30px;
    }

    .tours-info__content {
      font-size: 1em;
    }
}

/* Events Page */

/* ── Shared: event tags ── */
.event-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1em;
    border: .5px solid var(--main-color);
    padding: 0.625em;
}

.events-upcoming__grid .event-tag {
  background-color: rgba(249, 243, 225, 0.1);
  backdrop-filter: blur(10px);
  border: none;
}

/* ── Featured event ── */

.event-featured .center {
  align-items: stretch;
}

.event-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 60px;
}

.event-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25em;
  opacity: .7;
}

.event-featured__figure {
  margin: 0;
  overflow: hidden;
}

.event-featured__figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.event-featured__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 4.5em);
  line-height: 1.05;
  margin: .1em 0 .25em;
}

.event-featured__date {
  font-family: var(--sans);
  font-size: 1.375em;
  margin: 0 0 1.25em !important;
}

.event-featured__text {
  font-family: var(--sans);
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 2em;
  max-width: 500px;
}

/* ── Upcoming events ── */

.events-upcoming__title {
  font-family: var(--serif);
  text-align: center;
  margin-bottom: 1em;
}

.events-upcoming__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}

.event-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: .5px solid rgba(255,255,255,.15);
}

.event-card__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75em;
  z-index: 1;
}

.event-card__figure {
  overflow: hidden;
}

.event-card__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-card__info {
padding: 20px;
min-height: 130px;
}

.event-card__title {
  font-size: 2.25em;
  margin: 0 0 0.35em;
}

.event-card__date {
  font-family: var(--sans);
  font-size: 1em;
}

.event-card__btn {
  margin-top: auto;
  align-self: flex-start;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 100%;
  margin: 0 20px 20px;
}

/* ── Past events ── */
.events-past__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.events-past__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  border-top: .5px solid var(--red);
}

.events-past__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.5em 0 !important;
  border-bottom: .5px solid var(--red);
}

.events-past__item::before {
  display: none !important;
}

.events-past__name {
  font-family: var(--serif);
  font-size: 2.25em;
  flex: 1;
}

.events-past__tags {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 20px;
  opacity: .7;
}

.events-past__date {
  font-family: var(--sans);
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Events – mobile ── */
@media only screen and (max-width: 1024px) {
  .events-upcoming__grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {

  .event-featured__content {
    padding-left: 0;
  }

  .event-featured__tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
  }

  .event-featured__tags .event-tag {
    border: none;
    background-color: rgba(249, 243, 225, 0.1);
    backdrop-filter: blur(10px);
  }

  .event-featured__title {
    font-size: 3.5em;
  }

  .event-featured .btn {
    max-width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .event-featured .container.flex {
      flex-direction: column;
      gap: 2em;
  }

  .event-featured .col-four,
  .event-featured .col-six {
      width: 100%;
  }

  .events-upcoming__title {
    text-align: left;
    max-width: 80%;
  }

  .events-upcoming__grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 40px 0;
  }

  .events-past .col-eight {
    width: 100%;
  }

  .events-past__item > div {
    width: 100%;
  }

  .events-past__item {
      flex-wrap: wrap;
      gap: 10px;
  }

  .events-past__inner {
      flex-direction: column;
      gap: 16px;
  }

  .events-past__title {
      flex: none;
      width: 100%;
      padding-top: 0;
  }

  .events-past__date {
      margin-left: 0;
  }
}

/* Community Page */

/* Members grid */
.community-members__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.community-members__item {
    font-family: var(--sans);
    font-size: 1.5vw;
    line-height: 1.5em;
    text-align: center;
    border: .5px solid var(--red);
    width: calc(25% - 15px);
    aspect-ratio: 16 / 5;
    align-content: center;
}

.community-members__item span {
  display: block;
  width: 100%;
  padding: 1em;
}

/* Partners */

.community-partners__title {
    font-family: var(--serif);
    text-align: center;
    margin-bottom: 1em;
}

.community-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3vw 4vw;
}

.community-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
}

.community-partner__logo {
    max-height: 120px;
    width: auto;
    display: block;
}

.community-partner__name {
    display: none;
    font-family: var(--sans);
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

/* Community – mobile */
@media only screen and (max-width: 768px) {

    .community-intro .container.flex{
      flex-direction: column;
    }

    .community-members__grid {
      gap: 15px;
    }

    .community-members__grid li.community-members__item {
        width: calc(50% - 10px);
        font-size: 1em;
    }

    .community-members__item span {
      padding: .5em;
    }

    .community-partners__logos {
        gap: 6vw 8vw;
    }

    .community-partner__logo {
        max-height: 100px;
    }
}

.community-members__item a,
.community-partners__logos a {
  transition: opacity .2s ease-in;
}

.community-partners__logos a:hover,
.community-members__item a:hover  {
  opacity: .5;
}

/* CTAs and Newsletter */

/* CTA Block */

.call-to-action,
.newsletter-section {
    text-align: center;
}

.call-to-action h2, 
.newsletter-section h2 {
    font-size: 5.75em; /* 92px */
    margin-bottom: 20px;
}

.call-to-action .btn {
    max-width: 200px;
    margin: 2em auto 0;
    justify-content: center;
}

.newsletter-section p {
    font-size: 1.25em;
    margin-top: 1em;
}

.newsletter-section form {
    margin: 2em auto 1em;
    display: flex;
    justify-content: space-between;
    gap: 1em;
    max-width: 300px;
}

.newsletter-section form {
    border-bottom: .5px solid var(--red);
}

.newsletter-section form input[type="email"] {
    width: 100%;
    border: none !important;
}

input, textarea, button[type="submit"] {
    background: transparent;
    border: none;   
    color: var(--white);
    padding: 10px 0;     
}

button[type="submit"] {
    cursor: pointer;
}

button[type="submit"].btn-submit svg {
  display: block;
}

input:focus-visible,
textarea:focus-visible {
    outline: none;
    border: none;  
}

::placeholder {
    color: var(--white);
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--white);
}

input:focus-visible::placeholder,
textarea:focus-visible::placeholder {
    color: rgba(249,243,225,0.25);
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    max-width: 480px;
    margin-bottom: 1em;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
}

label {
    display: none;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background: transparent;
    border-bottom: .5px solid var(--red) !important;
}

/* Form Disclaimer */

.form-disclaimer {
    font-size: 0.75em;
    display: block;
    margin-top: 0.5em;
    color: var(--white);
    opacity: .6;
}

.form-disclaimer a {
    border-bottom: .5px solid;
    text-decoration: none !important;
}

/* ==========================================================================
Contact Template
========================================================================== */

.contact-page a {
    text-decoration: underline
}

.contact-info .studio-address {
    margin-bottom: 1em;     
}   

.contact-info .studio-address p {
    font-size: 2em;
    line-height: 1.3em;
}   

.contact-info {
    position: relative;
    padding-left: 46px;
    max-width: 430px;
}

.contact-info.block-one,
.contact-info.block-two {
    margin-bottom: 3em;
}

.contact-info:before {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    background: var(--red);
    position: absolute;
    left: 0;
    top: 17px;
}

.contact-info.block-one:before {
    top: 31px;
}


/* ==========================================================================
Timeline Template
========================================================================== */

.timeline {
    position: relative;
}

.timeline__item {
    justify-content: center;
}

.timeline .timeline__item.margin-xlarge:last-of-type {
    margin-bottom: 10vw;
    padding-bottom: 10vw;
}

.is-right {
    flex-direction: row-reverse;
}

.is-left {
    text-align: right;
}

.timeline__content {
    display: flex;
    flex-direction: column;
}

.is-left .timeline__content {
    align-items: flex-end;
}

.timeline__heading {
    position: relative;
    font-size: 128px;
    min-height: 150px;
}

.timeline__item.no_heading .timeline__content { 
    margin-top: 86px;
}

.timeline__media {
    transform: translateY(calc(-50% + 90px));
}

.timeline__line {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: .5px;
    height: 100%;
    background: var(--red);
}

.timeline__dot {
    position: relative;
}

.timeline__dot > div {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 100%;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, 0);
}

.timeline__heading small {
    font-size: 64px;
}

.timeline__copy {
    font-size: 1.375em;
    max-width: 80%;
}

/* Today Block */

.today {
    text-align: center;
}

.today .timeline__copy {
    max-width: 520px;
    margin: 0 auto 4em;
}

.today  .timeline__dot > div {
    top: -90px;
}

/* Two Columns With CTA */

.two-columns-cta-section .container {
    border: .5px solid var(--red);
}

.two-columns-cta-section .col-text {
    padding: 3em;
}

.two-columns-cta-section .col-text p {
    max-width: 90%;
}

.cta-button-container {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.two-columns-cta-section .col-text .btn.btn-book {
    position: sticky;
    bottom: 30px;
}

.two-columns-cta-section .col-text .btn.btn-book svg {        
    display: inline-block;
    margin-left: 32px;        
}


/* ==========================================================================
Theme Media Queries
========================================================================== */


/* Desktop Computer based on screen width */
@media screen 
  and (min-width: 1567px) {	
}

/* Large Laptop based on screen width */
@media screen 
  and (min-width: 1281px) 
  and (max-width: 1566px) {	
}

/* Small Laptop based on screen width */
@media screen 
  and (min-width: 1081px) 
  and (max-width: 1280px) {	
}

/* iPad Landscape based on screen width */
@media screen 
  and (min-width: 769px) 
  and (max-width: 1080px)  {	
}

/* iPad Portrait based on screen width */
@media screen 
  and (max-width: 768px)  {	

    /* Mobile by Default */

    .tab-section,
    .logo-desktop {
        display: none;
    }

    .tab-section-mobile,
    .logo-mobile {
        display: block;
    }

    /* Animations */

    section .section-header, section .section-content {
        transform: none;
        transition: none;
        opacity: 1;
    }

    .custom-pic {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      transition: none;
    }

    .custom-pic img {
      transform: scale(1);
      transition: none;
    }

    /* Layout */

    .two-columns-section .container.flex,
    .two-columns-cta-section .container.flex {
      flex-direction: column-reverse;
    }

    .margin-large {
        margin-top: 20vw;
        margin-bottom: 20vw;
    }

    .container {
        margin: 0 15px;
    }

    .container.medium {
        width: calc(100% - 30px);
        max-width: 100%;
        margin: 0 15px;
    }

    .col-four, .col-five, .col-six {
        width: 100%;
    }

    .page-home-small {
      height: 90svh;      
    }

    .page-home-small .small-marquee {
      margin-top: 70px;
    }

    .small-marquee .marquee-content img,
    .page-home-small .small-marquee .marquee-content img {
      width: 35vw;
      margin: 0 5vw;
    }

    /* Typography */

    .col-text h2, h2 {
        font-size: 3.5em;
    }

    .col-text p {
        font-size: 1.125em;
    }
    
    /* Header */

    .header {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 0 15px;
    }

    .header #logo {
        position: absolute;
        left: 0;
        transform: none;
        width: 160px;
    }

    .right-nav, .left-nav {
        display: none;
    }

    .toggle-menu {
      display: block;
    }

    /* Footer */

    .footer-logo {
      margin-top: 30px;
    }

    .footer-top {
      flex-wrap: wrap;
    }

    .footer-top .col-three {
      width: 50%;
      margin-bottom: 2em;
    }

    .footer__legals {
      display: block !important;
      padding: 15px 0;
      opacity: .5;
    }

    .footer__legals span,
    .footer__legals a {
      display: block;
      margin-left: 0;
    }

    .separator {
        display: none !important;
    }

    /* Templates */

    .marquee {
      height: 43vw;
    }

    .page-home {
      aspect-ratio: auto;
      height: 80svh;
    }

    .page-home h1, .page-home-small .small-marquee h1 {
      font-size: 41vw;
    }

    .marquee-block {
      font-size: 31vw;
    }

    .marquee-text-images-block {
      padding: 30vw 0 20vw;
    }

    .marquee-block span img {
      width: 20vw;
      margin: 0 2vw;
    }

    .marquee-heading {
      width: 100%;
      font-size: 1em;
      top: 30px;
    }

    /* Flexible Blocks */

    .hero-section .container.flex,
    .two-col-btn .container.flex,
    .control-room .container.flex,
    .two-col-btn .container .flex,
    .equipment-section .container.flex,
    .two-columns-section-slider .container.flex,
    .four-square-images .container.flex,
    .two-columns-images .container.flex,
    .studio-intro .container.flex {
      flex-direction: column;
    }

    .hero-section .container .col-four {
      display: none;
    }

   .hero-section .container .col-eight,
   .equipment-section .container .col-four,
   .equipment-section .container .col-eight,
   .four-square-images .container .col-eight,
   .two-columns-images .container .col-six,
   .studio-intro .container .col-four,
   .studio-intro .container .col-eight {
      width: 100%;
    }

    .hero-section .container .col-eight.col-text p {
      font-size: 1.5em;
      max-width: 100%;
      margin-bottom: 0;
    }

    .two-col-btn .col-four,
    .two-col-btn .col-eight,
    .two-columns-section-slider .col-four,
    .two-columns-section-slider .col-eight {
      width: 100%;
    }

    .two-columns-images .container .col-six:first-of-type {
      margin-bottom: 30px;
    }

    .two-col-btn .container .flex .btn {
      width: 100%;
      max-width: 100%;
      margin-right: 0;
    }

    .two-columns-cta-section .col-text {
      padding: 45px 15px 30px;
    }

    .two-columns-cta-section .col-text p {
      max-width: 80%;
      margin-bottom: 20vw;
    }

    .two-columns-cta-section .col-text .btn.btn-book {
      position: relative;
      width: 100%;
      max-width: 100%;
      bottom: auto;
      margin-right: 0;
    }

    .equipment-button-container {
      margin: 3em 0;
    }

    .accordion-item:first-of-type {
      margin-top: 15px;
    }

    .accordion-trigger h3 {
      font-size: 1.5em;
    }

    .accordion-trigger {
      padding: 25px 0;
    }

    .accordion-details ul {
      column-count: 1;
    }

    .tab-text {
      transition: none;
      background-color: var(--black) !important;
      top: 15px;
    }

    .tab-section-mobile .tab-text.is-unpinned {
      position: relative !important;
      top: auto !important;
    }

    .tab-text h3 {
      font-size: 2.75em;
      margin-bottom: 30px;
    }

    .tab-text p {
      margin-top: 30px;
    }

    .tab-text:hover, .tab-text.active {
      background-color: transparent;
    }

    .tab-text-container {
      padding: 30px 15px 45px;
    }

    .carousel-btn-prev {
      display: none;
    }

    .full-width-image__overlay {
      bottom: 30px;
      left: 15px;
      right: 15px;
      max-width: none;
      padding: 15px;
    }

    .full-width-image__overlay h3 {
      font-size: 2.25em;
    }

    .full-width-image__overlay p {
      font-size: .875em;
    }

    .four-square-images__grid {
      grid-template-columns: auto;
    }

     .two-columns-images__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .studio-intro .btn {
      width: 100%;
      max-width: 100%;
      margin-right: 0;
    }

    /* History Template */

    .timeline {
      padding-left: 25px;
      padding-right: 5px;
    }

    .timeline article {
      flex-direction: column !important;
    }

    .timeline article:before, 
    .today:before {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background: var(--white);
      border-radius: 100%;
      position: absolute;
      left: -27px;
      top: 93px;
    }

    .timeline article.no_heading:before {
      top: -2px;
      left: -2px;
    }

    .today:before {
      top: 4px
    }

    .timeline__item.no_heading .timeline__content {
      margin-top: 0;
    }

    .timeline__dot {
      display: none;
    }

    .timeline__line {
      left: 5px;
      transform: none;
    }

    .timeline__media {
      position: relative;
      transform: none;
      margin: 30px 0;
    }

    .timeline__copy {
      font-size: 1em;
      max-width: 100%;
    }

    .is-left {
      text-align: left;
    }

    .is-left .timeline__content {
      align-items: flex-start;
    }

    .today {
      text-align: left;
      padding-top: 30px;
    }

    /* Contact Template */

    .contact-section .container.flex {
      flex-direction: column-reverse;
    }

    .contact-section .container.flex .col-six {
      width: 100%;
    }

    .contact-section form .btn {
      width: 100%;
      max-width: 100%;
      margin-right: 0;
    }

    .wpcf7-spinner {
      display: none !important;     
    } 

    .contact-info {
      padding-left: 0;
      max-width: 100%;
      padding-top: 30px;
    }

    .contact-info:before {
      top: 0 !important
    }

    .block-one {
      margin-top: 20vw;
    }

    /* CTAs & Newsletter */

    .call-to-action.margin-large {
        margin: 40vw 0;
    }

    .newsletter-section {
        text-align: left;
    }

    .call-to-action h2, .newsletter-section h2 {
        font-size: 4.75em;
        line-height: .9em;
    }

    .newsletter-section p {
        font-size: 1em;
    }

    .newsletter-section form {
        max-width: 100%;
    }

    /* Tours */

    .tours-intro__quote blockquote {
      font-size: 20vw;
    }

    .tours-detail .container.flex {
      flex-direction: column-reverse;
    }

    .tours-features .container.medium {
      padding: 0;
    }

    .tours-features__caption {
      margin: -5vw 0 15vw !important;
    }

    .tours-features__item {
      font-size: 1.375em;
    }

    .tours-features__arrow {
      margin-top: 7px;
    }
}

/* iPhone Portrait based on screen width */
@media screen 
  and (max-width: 480px)  {	
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
  and (min-device-width : 320px) 
  and (max-device-width : 480px) {
}

/* Smartphones (landscape) ----------- */
@media only screen 
  and (min-width : 321px) {
}

/* Smartphones (portrait) ----------- */
@media only screen 
  and (max-width : 320px) {
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) {
}

/* iPads (portrait) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : portrait) {
}

/* iPads (landscape) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : landscape) {
}


/* iPad3 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : portrait) 
  and (-webkit-min-device-pixel-ratio : 2) {
}

/* Landscape */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : landscape) 
  and (-webkit-min-device-pixel-ratio : 2) {
}

/* iPhone 4 and 4S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
}

/* Phone 5, 5S, 5C and 5SE ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
}


/* Samsung Galaxy S3 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : portrait) 
  and (-webkit-device-pixel-ratio: 2) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : landscape) 
  and (-webkit-device-pixel-ratio: 2) {
}

/* Samsung Galaxy S4 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : portrait) 
  and (-webkit-device-pixel-ratio: 3) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : landscape) 
  and (-webkit-device-pixel-ratio: 3) {
}

/* ============================================================
   Cookie Banner
   ============================================================ */

/* ── Shared ─────────────────────────────────────────────── */

.cookie-banner {
    position: fixed;
    z-index: 9999;
    font-family: var(--sans);
}

.cookie-banner[hidden] {
    display: none;
}

/* Prevent body scroll when mobile overlay is open */
body.cookie-banner--open {
    overflow: hidden;
}

.cookie-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75em 1.5em;
    font-family: var(--sans);
    font-size: .8125em; /* 13px */
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: opacity .2s ease, background-color .2s ease;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    opacity: .85;
}

.cookie-banner__policy-link {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Mobile — card / modal ───────────────────────────────── */

@media screen and (max-width: 960px) {

    .cookie-banner__overlay {
        position: fixed;
        inset: 0;
        background: rgba(24, 19, 13, 0.7); /* --black @ 70% */
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .cookie-banner__inner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        color: var(--black);
        padding: 2rem 1.5rem 2.5rem;
        border-radius: 16px 16px 0 0;
    }

    .cookie-banner__text {
        font-size: .9375em; /* 15px */
        line-height: 1.55;
        margin-bottom: 1.5rem !important;
        color: var(--black);
    }

    .cookie-banner__policy-link {
        color: var(--black);
    }

    .cookie-banner__actions {
        display: flex;
        gap: .75rem;
    }

    .cookie-banner__btn--reject {
        flex: 1;
        background: #E0DAD0; /* warm grey on white card */
        color: var(--black);
    }

    .cookie-banner__btn--accept {
        flex: 1;
        background: var(--black);
        color: var(--white);
    }
}

/* ── Desktop — bottom bar ────────────────────────────────── */

@media screen and (min-width: 961px) {

    .cookie-banner__overlay {
        display: none;
    }

    .cookie-banner__inner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        background: var(--black);
        color: var(--white);
        padding: 1.25rem 2.5rem;
        border-top: .5px solid rgba(249, 243, 225, 0.2);
    }

    .cookie-banner__text {
        font-size: .875em; /* 14px */
        line-height: 1.5;
        margin: 0;
        max-width: 640px;
        color: var(--white);
        opacity: .85;
    }

    .cookie-banner__policy-link {
        color: var(--white);
        opacity: 1;
    }

    .cookie-banner__actions {
        display: flex;
        gap: .75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn--reject {
        background: transparent;
        color: var(--white);
        border: .5px solid rgba(249, 243, 225, 0.4);
    }

    .cookie-banner__btn--reject:hover {
        background: rgba(249, 243, 225, 0.08);
        opacity: 1;
    }

    .cookie-banner__btn--accept {
        background: var(--white);
        color: var(--black);
    }

    .cookie-banner__btn--accept:hover {
        background: #E8E2D2;
        opacity: 1;
    }
}
