/* Reset */
*{margin:0;padding:0;box-sizing:border-box}

/* Demo bg */
body{
  background:url('your-image.jpg') center/cover no-repeat fixed;
  min-height:100vh;
  font-family:Arial, sans-serif;
}

/* ===== DESKTOP NAV ===== */
nav.nav-center{
  position: absolute;
  top: 0; left: 0; width: 100%;
  padding: 1.25rem max(2rem, calc((100% - 980px) / 2));
  background: rgba(0,0,0,.4);
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  column-gap: 2.5rem;
}

.nav-left,
.nav-right{
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-left  { justify-content: flex-end;  }
.nav-right { justify-content: flex-start; }

.nav-center a{
  color:#fff; text-decoration:none; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em;
}

/* NAV LOGO */
.nav-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:82px;
  height:82px;
  text-decoration:none;
  flex-shrink:0;
}

.nav-logo img{
  display:block;
  width:145%;   /* ← bigger than container */
  height:145%;
  object-fit:contain;
}

/* ===== MOBILE ===== */
.nav-toggle{margin-left: auto; display:none}
.mobile-menu{display:none}

/* Breakpoint */
@media (max-width: 840px){
  nav.nav-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-logo{
    margin-right:auto;
    width:48px;
    height:48px;
  }
  
  body.on-dark.booking-page nav.nav-center,
  body.on-dark.consent-page nav.nav-center {
    padding-right: 4.25rem;
  }
  
  .nav-logo{ margin-right: auto; width:48px; height:48px; font-size:.6rem }
  .desktop-only{ display:none }

  /* ---------- HAMBURGER ---------- */
  .nav-toggle{
    position:relative;
    display:inline-block;
    width:36px; height:28px;
    background:transparent; border:0; cursor:pointer;
  }

  .nav-toggle span{
    position:absolute; left:4px; right:4px;
    height:2px; background:#fff; border-radius:999px;
    transition:
      transform .42s cubic-bezier(.34,1.56,.64,1),
      top .42s cubic-bezier(.34,1.56,.64,1),
      opacity .28s ease,
      box-shadow .3s ease;
    transform-origin:center;
    box-shadow: 0 0 0 rgba(255,255,255,0);
  }

  .nav-toggle span:nth-child(1){ top:4px; }
  .nav-toggle span:nth-child(2){ top:13px; }
  .nav-toggle span:nth-child(3){ top:22px; }

  @keyframes popFlash {
    0%   { transform: scale(1); }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  nav.open .nav-toggle{ animation: popFlash .3s ease-out; }

  nav.open .nav-toggle span:nth-child(1){
    top:13px;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(255,255,255,.6);
  }
  nav.open .nav-toggle span:nth-child(2){
    opacity:0; transform: scaleX(.2);
  }
  nav.open .nav-toggle span:nth-child(3){
    top:13px;
    transform: rotate(-45deg);
    box-shadow: 0 0 8px rgba(255,255,255,.6);
  }

  nav:not(.open) .nav-toggle span{
    transform:none; opacity:1; box-shadow:none;
  }

  /* ---------- MOBILE DROPDOWN ---------- */
  .mobile-menu{
    position:fixed; left:0; right:0; top:64px;
    background:#000;
    border-top:1px solid rgba(255,255,255,.12);
    padding:1rem 1.25rem 1.25rem;
    max-height:calc(100vh - 64px);
    overflow:auto;

    display:block;
    opacity:0;
    transform: translateY(-12px);
    pointer-events:none;
    transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
  }
  nav.open .mobile-menu{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }

  .mobile-menu ul{list-style:none}
  .mobile-menu li{padding:.8rem 0}
  .mobile-menu a{
    color:#fff; text-decoration:none; font-weight:700;
    text-transform:uppercase; letter-spacing:.08em;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  opacity: 0;
  animation: videoFadeIn 2.5s ease forwards;
  animation-delay: 2.5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(0.4rem, 1vw, 1rem);
  padding-right: 0.75rem;
  z-index: 2;
}

.hero-text {
  position: relative;
  display: inline-block;
  color: #fff;
  max-width: 100%;
}

.hero-logo {
  display: block;
  width: clamp(320px, 60vw, 800px);
  height: auto;
  max-width: 100%;

  opacity: 0;
  animation: logoFadeIn 2s ease forwards;
  animation-delay: 3.5s;
}

.hero-text p {
  position: absolute;
  bottom: -2.3rem;
  left: 45%;
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 1.8rem);
  line-height: 1.15;
  white-space: nowrap;
  color: #fff;
  font-family: "Cormorant Garamond", serif;

  /* animation */
  opacity: 0;
  transform: translateY(20px);
  animation: taglineFadeUp 3s ease forwards;
  animation-delay: 0.8s;
}

/* animations */
@keyframes videoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes taglineFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }

  55% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== IPAD MINI / IPAD AIR / FOLDABLE TABLET RANGE ===== */
@media (min-width: 700px) and (max-width: 900px) {
  .hero-logo {
    width: clamp(260px, 56vw, 560px);
  }

  .hero-text p {
    left: 42%;
    bottom: -2rem;
    font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  }
}

/* ===== PHONE / IPHONE 14 PRO MAX AREA ===== */
@media (max-width: 600px) {
  .hero-overlay {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .hero-logo {
    width: min(82vw, 340px);
  }

  .hero-text p {
    left: 34%;
    bottom: -1.55rem;
    font-size: clamp(0.85rem, 2.8vw, 1.05rem);
    white-space: nowrap;
  }
}

/* ===== SMALLER PHONES ===== */
@media (max-width: 430px) {
  .hero-logo {
    width: min(80vw, 320px);
  }

  .hero-text p {
    left: 24%;
    bottom: -1.45rem;
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
    white-space: nowrap;
    line-height: 1.1;
  }
}

@media (max-width: 390px) {
  .hero-logo {
    width: min(78vw, 300px);
  }

  .hero-text p {
    left: 28%;
    bottom: -1.35rem;
    font-size: 0.75rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 240, 231, 0.94), rgba(239, 228, 211, 0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89b72' fill-opacity='0.045'%3E%3Ccircle cx='12' cy='14' r='1'/%3E%3Ccircle cx='64' cy='32' r='1'/%3E%3Ccircle cx='92' cy='84' r='1'/%3E%3Ccircle cx='28' cy='96' r='1'/%3E%3Ccircle cx='122' cy='48' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at top left, rgba(215, 194, 161, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(122, 163, 176, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f0e7 0%, #efe4d3 52%, #f7f1e8 100%);
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.4;
}

.about::before {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -60px;
  background: rgba(173, 205, 211, 0.22);
}

.about::after {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -70px;
  background: rgba(206, 177, 137, 0.18);
}

.about-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(70, 55, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 20px 50px rgba(65, 45, 25, 0.08),
    0 6px 18px rgba(65, 45, 25, 0.05);
}

.about-kicker {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8f6f4d;
}

.about h2 {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #1f1a17;
}

.about-accent {
  width: 200px;
  height: 2px;
  margin: 1.2rem auto 2.2rem;
  background: linear-gradient(
    90deg,
    rgba(184, 155, 114, 0),
    rgba(184, 155, 114, 1),
    rgba(184, 155, 114, 0)
  );
}

.about-copy {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1vw + 0.7rem, 1.16rem);
  line-height: 2;
  color: #2e2824;
}

.about-copy p {
  margin: 0 0 1.6rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-copy p:last-of-type {
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6f553b;
  font-family: "Cormorant Garamond", serif;
}

.about-copy p:first-of-type::first-letter {
  float: left;
  font-size: 3.6rem;
  line-height: 0.9;
  padding-right: 0.45rem;
  padding-top: 0.25rem;
  font-weight: 700;
  color: #8f6f4d;
  font-family: "Cormorant Garamond", serif;
}

/* ===== ABOUT ACTIONS ===== */
.about-actions {
  margin-top: 2.1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.about-btn-label {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}

.about-btn-primary {
  color: #fff;
  background-color: #8f6f4d;
  border: 1px solid #8f6f4d;
  box-shadow: 0 10px 20px rgba(65, 45, 25, 0.12);
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  background-color: #7f6244;
  border-color: #7f6244;
  box-shadow: 0 14px 24px rgba(65, 45, 25, 0.16);
}

.about-btn-secondary {
  color: #6f553b;
  background-color: #f9f5ef;
  border: 1px solid #8f6f4d;
  box-shadow: 0 10px 18px rgba(65, 45, 25, 0.06);
}

.about-btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #f7f1e8;
  border-color: #7f6244;
  box-shadow: 0 12px 22px rgba(65, 45, 25, 0.1);
}

.about-btn:focus-visible {
  outline: 2px solid rgba(143, 111, 77, 0.35);
  outline-offset: 4px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal .about-kicker,
.reveal h2,
.reveal .about-accent,
.reveal .about-copy p,
.reveal .about-actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active .about-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.reveal.active h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.reveal.active .about-accent {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.reveal.active .about-copy p:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.reveal.active .about-copy p:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

.reveal.active .about-copy p:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.71s;
}

.reveal.active .about-copy p:nth-of-type(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.84s;
}

.reveal.active .about-copy p:nth-of-type(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.97s;
}

.reveal.active .about-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.08s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-wrap {
    padding: 1.8rem 1.3rem 2.1rem;
    border-radius: 22px;
  }

  .about-copy {
    line-height: 1.9;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 3.5rem 0.9rem 4rem;
  }

  .about-wrap {
    padding: 1.4rem 1rem 1.7rem;
    border-radius: 18px;
  }

  .about-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .about h2 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .about-accent {
    width: 90px;
    margin: 0.9rem auto 1.5rem;
  }

  .about-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-copy p:first-of-type::first-letter {
    font-size: 2.8rem;
    padding-right: 0.35rem;
  }

  .about-copy p:last-of-type {
    margin-top: 1.5rem;
  }

  .about-actions {
    gap: 0.85rem;
  }

  .about-btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 1rem 1.2rem;
  }

  .about-btn-label {
    font-size: 1.2rem;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .about {
    padding: 3.5rem 0.9rem 4rem;
  }

  .about-wrap {
    padding: 1.4rem 1rem 1.7rem;
    border-radius: 18px;
  }

  .about-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .about h2 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .about-accent {
    width: 90px;
    margin: 0.9rem auto 1.5rem;
  }

  .about-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-copy p:first-child::first-letter {
    font-size: 2.8rem;
    padding-right: 0.35rem;
  }

  .about-copy p:last-child {
    margin-top: 1.5rem;
  }
}

/* ===== FOOTER (layout) ===== */
.site-footer{
  background:#000;
  color:#fff;
  padding: 2.5rem 1rem 2rem;
  text-align:center;
}

.footer-inner{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.footer-logo-row{
  display:flex;
  justify-content:center;
  margin-bottom: 1rem;
}

/* FOOTER LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  text-decoration:none;
}

.footer-logo img{
  display:block;
  width:200%;
  height:200%;
  object-fit:contain;
}

/* Footer links (DESKTOP: single row) */
.footer-links{
  width:100%;
  margin-bottom: 1.25rem;
  padding: 0 .25rem;
}

.footer-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2.25rem;
  list-style:none;
  padding:0;
  margin:0 auto;

  white-space: nowrap;
}

.footer-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Tagline + site link */
.footer-topline{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:1.25rem;
  margin:.5rem 0 1.1rem;
  font-size: clamp(1rem, 1.2vw + .6rem, 1.25rem);
}

.footer-link{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid transparent;
}

.footer-link:hover{
  border-bottom-color: rgba(255,255,255,.7);
}

/* Socials (Font Awesome) */
.footer-social{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1.25rem;
  margin-bottom:1rem;
}

.footer-social a{
  color:#fff;
  font-size:1.5rem;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  transition: all .25s ease;
}

.footer-social a:hover{
  color:#9ca3af;
  transform: translateY(-2px) scale(1.08);
}

/* Divider + copyright */
.footer-divider{
  border:0;
  border-top:1px solid rgba(255,255,255,.35);
  width:100%;
  max-width:940px;
  margin:1.1rem auto;
}

.footer-copy{
  color:#9ca3af;
  font-size:.9rem;
  letter-spacing:.02em;
}

/* ---------- MOBILE / SMALL SCREENS ---------- */
@media (max-width: 720px){
  .footer-logo{
    width:60px;
    height:60px;
  }

  .footer-menu{
    white-space: normal;
    gap: .9rem 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 520px;
  }

  .footer-menu a{
    font-size: .9rem;
  }

  .footer-topline{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: .95rem;
  }
}

@media (max-width: 380px){
  .footer-menu a{
    font-size: .82rem;
    letter-spacing: .06em;
  }
}



                                      /* Booking Page Styling */
body.on-dark { background:#000; }

.booking-wrap{
max-width:760px;
margin:8rem auto 4rem;
padding:0 1rem;
color:#fff;
}

.booking-wrap h1{
text-align:center;
font-size:clamp(1.8rem,3.6vw,2.2rem);
margin-bottom:1rem;
font-weight:800;
}

/* Form card */
.booking-form{
background:#fff;
color:#111;
border:1px solid rgba(0,0,0,.12);
border-radius:14px;
padding:1.25rem;
}

/* Make booking form single column */
.row-2,
.row-3 {
  display: block;
}
.row-2 .field,
.row-3 .field {
  margin-bottom: 1rem;
}

/* Top contact section (Name / Email / Phone) as 2-column grid */
.row-2.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.9rem;
}

@media (max-width: 640px) {
  .row-2.contact-row {
    grid-template-columns: 1fr;
  }
}

/* Label spacing */
label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

/* Hint spacing and text size */
.hint {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-top:.25rem;
  margin-bottom: 0.35rem;
}

/* Name hints specifically */
.name-hint {
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.row-2.contact-row .name-hint,
.row-2.contact-row label {
  margin-top: 1rem;
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
}

.row-2.contact-row input {
  margin-top: 0;
}

.row-2.contact-row > div {
  display: flex;
  flex-direction: column;
}

/* Newsletter checkbox spacing */
.newsletter-field {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Traveling + Availability ONLY: two columns */
.row-2.travel-avail-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.9rem;
}

/* Inline label + hint (e.g. "From where? (optional)") */
.inline-label {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.inline-label .hint {
  display: inline;
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* stack on small screens */
@media (max-width: 640px){
  .row-2.travel-avail-row{
    grid-template-columns: 1fr;
  }
}

.placement-spacing .field {
  margin-bottom: 1rem;
}

.placement-spacing label {
  margin-bottom: 0.25rem;
}

.placement-spacing input,
.placement-spacing select {
  margin-top: 0;
}

/* === Unified control style (pill) === */
input:not([type="radio"]):not([type="checkbox"]),
select,
textarea{
display:block;
width:100%;
padding:.9rem 1rem;
border:1px solid #9a9a9a;
border-radius:999px;
background:#fff;
color:#111;
outline:none;
box-sizing:border-box;
}

/* Textarea adjustments */
textarea{
min-height:130px;
resize:vertical;
border-radius:18px;
}

/* Multi-select keeps a box look but rounded */
select[multiple]{
min-height:180px;
border-radius:12px;
padding:.6rem .8rem;
}

/* Radios layout */
.pill-radio{ display:flex; gap:1rem; align-items:center; flex-wrap:wrap; font-weight:600; }
.pill-radio input{ margin-right:.35rem; }

/* Traveling extra field reveal */
.travel-extra{ display:none; animation:fadeIn .25s ease forwards; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(-4px)} to{opacity:1; transform:none} }

/* Submit + notes */
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.btn {
  background: #2d3a2c;
  color: #fff;
  border: 0;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  background: #1f291e;
  transform: translateY(-2px);
}

.form-note{ color:#666; font-size:.9rem; }
.error{ color:#b00020; font-size:.9rem; margin-top:.25rem; display:none; }

/* Counter under textarea */
.counter{ display:flex; justify-content:flex-end; gap:.35rem; font-size:.86rem; color:#666; margin-top:.25rem; }
.row-2 > .field,
.row-3 > .field { min-width:0; }
.booking-form { margin-bottom: 2rem; }
#availabilityGroup label { display:block; line-height:1.25; margin:.15rem 0; }

select {
  width:100%;
  padding:.9rem 1rem;
  border-radius:999px;
  border:1px solid #9a9a9a;
  background:#fff;
  color:#111;
  outline:none;
}

/* hide but keep accessible (for inputs) */
.sr-only {
  position:absolute !important;
  width:1px; height:1px;
  margin:-1px; padding:0; border:0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow:hidden; white-space:nowrap;
}

/* Drop zone */
.file-drop{
  --ring: rgba(0,0,0,.12);
  --dash: rgba(0,0,0,.35);
  --hover: rgba(0,0,0,.04);

  display:grid;
  justify-items:center;
  align-content:center;
  gap:.5rem;
  width:100%;
  min-height:120px;
  padding:1rem 1.25rem;
  border-radius:18px;
  border:2px dashed var(--dash);
  background:#fff;
  cursor:pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .1s ease;
}

.file-drop:hover{ background:var(--hover); }
.file-drop:focus-within{ outline:2px solid var(--ring); outline-offset:2px; }
.file-drop.is-dragover{
  border-color:#2d3a2c;
  background: rgba(45,58,44,.05);
}

/* Plus puck */
.file-plus{
  display:inline-grid; place-items:center;
  width:34px; height:34px;
  border-radius:999px;
  background:#FAF2C3;
  color:#111;
  font-size:1.25rem; font-weight:700;
  line-height:1;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.file-drop:hover .file-plus{ transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2); }

.file-text{
  font-weight:700;
  color:#111;
}

.file-name{
  font-size:.9rem;
  color:#555;
}

/* Smooth transitions on inputs */
.booking-form input,
.booking-form select,
.booking-form textarea {
  transition: border-color .25s ease, box-shadow .25s ease;
}

/* Show red borders only AFTER a submit attempt */
.booking-form.was-validated input:invalid,
.booking-form.was-validated select:invalid,
.booking-form.was-validated textarea:invalid {
  border-color: #c62828 !important;
}

/* When user fixes a field, go back to normal */
.booking-form.was-validated input:valid,
.booking-form.was-validated select:valid,
.booking-form.was-validated textarea:valid {
  border-color: #9a9a9a !important;
  box-shadow: none;
}

/* Drag-over feedback */
label.file-drop.is-dragover {
  border-color:#2f6fed;
}

/* INVALID state — stronger selectors & aria fallback */
.booking-form.was-validated label.file-drop.invalid,
.booking-form.was-validated label.file-drop[aria-invalid="true"] {
  border-color:#c62828 !important;
}
.booking-form.was-validated label.file-drop.invalid .file-plus,
.booking-form.was-validated label.file-drop[aria-invalid="true"] .file-plus {
  background:#fdecea;
  color:#c62828;
  border-color:#c62828;
}
.booking-form.was-validated label.file-drop.invalid .file-text,
.booking-form.was-validated label.file-drop[aria-invalid="true"] .file-text {
  color:#c62828;
}

/* === Description counter & error === */
.desc-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:.35rem;
}
#descReqErr{
  display:none;
  color:#c62828;
  font-size:.9rem;
  font-weight:500;
}
.desc-counter{
  margin-left:auto;
  min-width:65px;
  text-align:right;
  font-size:.9rem;
  color:#666;
  font-weight:400;
  font-variant-numeric:tabular-nums;
}
.desc-counter span{ font-weight:400; }
.counter{ display:none; }

/* radio group */
.pill-radio {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
}

/* each label */
.pill-radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
}

/* travel error: directly under Yes/No, left-aligned to “Yes” */
.pill-radio .radio-error {
  flex-basis: 100%;
  position: relative;
  top: -1rem;
  margin: 0;
  color: #c62828;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
}

.filebox{ display:none; }
@media (max-width:640px){
  .row-2, .row-3{ grid-template-columns:1fr; }
  select[multiple]{ min-height:220px; }
}

.nav-center a:not(.nav-logo),
.footer-menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

.nav-center a:not(.nav-logo)::before,
.nav-center a:not(.nav-logo)::after,
.footer-menu a::before,
.footer-menu a::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #fff;
  width: 0;
  top: calc(50% - 0.5px);
  transition: width 0.35s ease;
  opacity: 1;
}

.nav-center a:not(.nav-logo)::before,
.footer-menu a::before { left: -12px; }
.nav-center a:not(.nav-logo)::after,
.footer-menu a::after { right: -12px; }
.nav-center a:not(.nav-logo):hover::before,
.nav-center a:not(.nav-logo):hover::after,
.footer-menu a:hover::before,
.footer-menu a:hover::after {
  width: calc(50% + 12px);
}

/* ===== MERCH PAGE ===== */
.merch-wrap {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 6rem 1rem 3rem;
}

.merch-inner {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.merch-kicker {
  font-size: 3rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-color, #111);
}

.merch-kicker::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: currentColor;
  margin: 0.6rem auto 1.5rem;
  opacity: 0.9;
}

.coming-soon {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 0.12em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-color, #111);
}

.merch-note {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
}



/* ===== FAQ ===== */
.faq-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(6rem, 8vw, 8rem) 1.25rem 4rem;
  color: #fff;
  min-height: 73vh;
  padding-bottom: 4rem;
}

.faq-hero{
  margin-bottom: 2rem;
}

.faq-title{
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 15px;
  margin-bottom: .75rem;
  text-transform: uppercase;
  color: #fff;
}

.faq-subtitle{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: .02em;
}

/* outer shell stays invisible so it feels like original */
.faq-shell{
  background: transparent;
}

/* tabs */
.faq-tabs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 0 0 2rem;
  padding: 0;
}

.faq-tab{
  appearance: none;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.faq-tab:hover{
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.08);
}

.faq-tab.active{
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* panels */
.faq-panel{
  display: none;
}

.faq-panel.active{
  display: block;
}

/* original faq list look */
.faq-list{
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgb(0, 0, 0);
  border-radius: 8px;
}

.faq-item{
  border-top: 2px dotted rgba(255,255,255,.25);
}

.faq-item:first-child{
  border-top: 0;
}

.faq-item:last-child{
  border-bottom: 2px dotted rgba(255,255,255,.25);
}

/* question row */
.faq-q{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 1.1rem 1rem 1.1rem 1.25rem;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.q-toggle{
  font-size: 1.75rem;
  line-height: 1;
  opacity: .9;
  color: #fff;
}

/* answer panel */
.faq-a{
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .5s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
  will-change: height;
}

.faq-inner{
  padding: .25rem 1.25rem 1.25rem 1.25rem;
}

.faq-item.open .faq-a{
  opacity: 1;
}

.faq-a p{
  margin: 0;
  color: #cfcfcf;
  line-height: 1.7;
}

.faq-list-items{
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.faq-list-items li{
  margin-bottom: .6rem;
  color: #cfcfcf;
}

.faq-wear-list{
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.faq-wear-list li{
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #cfcfcf;
}

.faq-a strong{
  color: #fff;
}

/* accessibility */
.faq-q:focus-visible{
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 2px;
}

.faq-q:hover .q-text{
  text-decoration: underline;
}

.faq-q{
  transition: background-color .2s ease;
}

.faq-q:active{
  background: rgba(255,255,255,0.06);
}

/* mobile */
@media (max-width: 840px){
  .faq-wrap{ padding-top: 6rem; }
  .faq-q{ padding: .75rem 1rem .25rem 1rem; }
  .faq-a{ padding: .25rem 1rem 1rem 1rem; }
}

@media (max-width: 700px){
  .faq-tabs{
    justify-content: flex-start;
    gap: .55rem;
    overflow-x: auto;
    padding-bottom: .25rem;
  }

  .faq-tab{
    white-space: nowrap;
    font-size: .75rem;
    padding: .68rem .9rem;
  }

  .faq-q{
    font-size: .95rem;
  }

  .q-toggle{
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .faq-a{ transition: none; }
  .faq-q{ transition: none; }
  .faq-tab{ transition: none; }
}

                      /* ===== CONSENT FORM ===== */
.step-title {
  text-align: center;
}

#step2 .step-title {
  text-align: center;
}

.med-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.med-grid label { display:block; }

@media (min-width: 640px) {
  .med-grid { gap: 12px; }
}

#step3 .step-title {
  text-align: center;
}

.acknowledgment-text p {
  margin: 1rem 0;
  line-height: 1.6;
}

.signature-field { 
  display: flex; 
  flex-direction: column; 
  align-items: stretch;
}

.signature-pad {
  border: 2px solid #333;
  border-radius: 8px;
  width: 100%;
  max-width: none;
  background: #fff;
  display: block;
  touch-action: none;
}

.signature-hint {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.sig-error { 
  color:#ff6b6b; 
  font-size:.9rem; 
  margin-top:.5rem; 
  display:none; 
}

/* ===== CONSENT: STEP 1 (Your Information) spacing only ===== */
#step1 .field{ margin:0 0 1.25rem; }

#step1 label{ margin:0 0 .25rem; }
#step1 input, #step1 select, #step1 textarea{ margin-top:0; }

#step1 .name-hint{
  display:block;
  margin:0 0 .25rem;
  font-size:.9rem;
  font-weight:600;
  color:#000;
}

#step1 .row-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem 1.5rem;
}

@media (max-width:640px){
  #step1 .row-2{ grid-template-columns:1fr; }
}

/* ===== ARTISTS PAGE / CAROUSEL ===== */
.artists-wrap{
  max-width: 1200px;
  margin: 8rem auto 4rem;
  padding: 0 1.25rem 4rem;
  color: #fff;
  min-height: 70vh;
}

.artists-hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 440px;
  margin-bottom: 4.5rem;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-start;
}

.artist-carousel{
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.artist-carousel::before{
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.artists-hero-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.artists-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.38) 35%, rgba(0,0,0,.58) 100%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 35%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}

.artists-hero-content{
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3.5rem 2.25rem 2.5rem;
  text-align: left;
}

.artists-title{
  text-align: left;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: .95;
  opacity: 0;
  animation: heroFadeDown 3.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.artists-subtitle{
  max-width: 520px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  opacity: 0;
  animation: heroFadeDown 3.2s cubic-bezier(.22, 1, .36, 1) 0.7s forwards;
}

.artist-strip{
  position: relative;
  width: 100%;
  height: 360px;
  max-width: 100%;
  overflow: visible;
  touch-action: pan-y;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  opacity: 0;
  animation: carouselFadeIn 1.4s ease forwards;
}

.artist-card,
.artist-card-inner,
.artist-face{
  will-change: transform;
  transform: translateZ(0);
}

.artist-card{
  position: absolute;
  top: 40px;
  left: 50%;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  --x: 0px;
  --y: 0px;
  --scale: 1;
  transform: translateX(calc(-50% + var(--x)));
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  opacity: 1;
  z-index: 1;
  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1),
    opacity .6s cubic-bezier(.16, 1, .3, 1),
    z-index .6s cubic-bezier(.16, 1, .3, 1);
}

.artist-card-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.artist-card.is-flipped .artist-card-inner{
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.artist-face{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.artist-face-front{
  pointer-events: auto;
  z-index: 2;
}

.artist-face-back{
  background: #fff;
  border: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg) translateZ(1px) translateY(var(--y)) scale(var(--scale));
  -webkit-transform: rotateY(180deg) translateZ(1px) translateY(var(--y)) scale(var(--scale));
  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1),
    box-shadow .6s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  z-index: 3;
}

.artist-card.is-flipped .artist-face-front{
  pointer-events: none;
}

.artist-card.is-flipped .artist-face-back{
  pointer-events: auto;
}

.artist-image-placeholder{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: 0 18px 40px rgba(0,0,0,.75);
  transform: translateY(var(--y)) scale(var(--scale));
  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1),
    box-shadow .6s cubic-bezier(.16, 1, .3, 1),
    filter .6s cubic-bezier(.16, 1, .3, 1);
}

.artist-image-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.artist-face-back,
.artist-back-content{
  -webkit-font-smoothing: antialiased;
}

.artist-back-title{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .4rem;
  text-transform: uppercase;
  color: #000;
}

.artist-back-text{
  font-size: 0.9rem;
  color: #000;
}

.artist-readmore{
  background: #000;
  color: #fff;
  border: none;
  padding: .55rem 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: .85rem;
  letter-spacing: .05em;
  transition:
    transform .15s ease,
    text-decoration .2s ease;
}

.artist-readmore:active{
  transform: translateY(0);
}

.artist-under{
  position: relative;
  margin-top: -1.25rem;
  padding-bottom: 1rem;
}

.artist-info{
  position: relative;
  z-index: 2;
  text-align: center;
}

.artist-info-name{
  display: inline-block;
  background: rgba(255,255,255,.92);
  color: #000;
  padding: .45rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.artist-info-position{
  margin-top: .55rem;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.artist-info-style{
  margin-top: .7rem;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.5;
  letter-spacing: .01em;
}

.artist-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: .82rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .18s ease,
    box-shadow .25s ease;
}

.artist-cta:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.artist-cta:active{
  transform: translateY(0);
}

.artist-cta:focus-visible{
  outline: 2px solid rgba(255,255,255,.65);
  outline-offset: 3px;
}

.artist-bio{
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: .5rem auto 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}

.artist-bio.open{
  max-height: 900px;
  opacity: 1;
}

.artist-bio-inner{
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  line-height: 1.7;
  font-size: 1rem;
  text-align: left;
  backdrop-filter: blur(8px);
}

.artist-card .artist-image-placeholder img{
  filter: brightness(1);
}

.artist-card.dim-mid .artist-image-placeholder img{
  filter: brightness(.55);
}

.artist-card.dim-far .artist-image-placeholder img{
  filter: brightness(.15);
}

.artists-section-intro{
  max-width: 900px;
  margin: 0 auto 2.4rem;
  text-align: center;
  padding: 0 1rem;
}

.eyebrow{
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

@keyframes carouselFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

@keyframes heroFadeDown{
  0%{
    opacity: 0;
    transform: translateY(-80px);
  }
  10%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine){
  .artist-readmore:hover{
    text-decoration: underline;
    transform: translateY(-2px);
  }

  .artist-card:hover .artist-image-placeholder{
    transform: translateY(var(--y)) scale(calc(var(--scale) + 0.05));
    box-shadow: 0 40px 110px rgba(0,0,0,1);
  }

  .artist-card:hover .artist-face-back{
    transform: rotateY(180deg) translateZ(1px) translateY(var(--y)) scale(calc(var(--scale) + 0.05));
    -webkit-transform: rotateY(180deg) translateZ(1px) translateY(var(--y)) scale(calc(var(--scale) + 0.05));
    box-shadow: 0 40px 110px rgba(0,0,0,1);
  }
}

@media (hover: none){
  .artist-card:hover .artist-image-placeholder,
  .artist-card:hover .artist-face-back{
    transform: translateY(var(--y)) scale(var(--scale)) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.75) !important;
  }
}

/* ===== TABLET / MOBILE ===== */
@media (max-width: 768px){
  .artists-wrap{
    margin-top: 6.5rem;
    padding: 0 1rem 3rem;
  }

  .artists-hero{
    min-height: 420px;
    margin-bottom: 2.5rem;
  }

  .artists-hero-content{
    max-width: 100%;
    padding: 2.25rem 1.25rem 2rem;
  }

  .artists-subtitle{
    font-size: .98rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .artists-section-intro h2{
    white-space: normal;
  }

  .artist-strip{
    perspective: 1000px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .artist-card{
    transform: translateX(calc(-50% + var(--x))) translateZ(0);
    -webkit-transform: translateX(calc(-50% + var(--x))) translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .artist-card-inner{
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  /* side cards: front only */
  .artist-card:not(.is-active) .artist-card-inner{
    transform: none !important;
    -webkit-transform: none !important;
  }

  .artist-card:not(.is-active) .artist-face-front{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .artist-card:not(.is-active) .artist-face-back{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* active card: both faces exist */
  .artist-card.is-active .artist-face-front,
  .artist-card.is-active .artist-face-back{
    display: flex !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* default active state = front only */
  .artist-card.is-active .artist-face-front{
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2;
  }

  .artist-card.is-active .artist-face-back{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 3;
    transform: rotateY(180deg) translateZ(2px) translateY(var(--y)) scale(var(--scale)) !important;
    -webkit-transform: rotateY(180deg) translateZ(2px) translateY(var(--y)) scale(var(--scale)) !important;
  }

  /* flipped active state = back only */
  .artist-card.is-active.is-flipped .artist-card-inner{
    transform: rotateY(180deg) !important;
    -webkit-transform: rotateY(180deg) !important;
  }

  .artist-card.is-active.is-flipped .artist-face-front{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .artist-card.is-active.is-flipped .artist-face-back{
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .artist-readmore{
    position: relative;
    z-index: 20;
    touch-action: manipulation;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px){
  .artist-card{
    top: 18px;
    width: 200px;
    height: 200px;
  }

  .artist-strip{
    height: 255px;
  }

  .artist-under{
    margin-top: -1.35rem;
    padding-bottom: .75rem;
  }

  .artist-info-name{
    padding: .25rem 1rem;
    font-size: .95rem;
  }

  .artist-bio{
    margin-top: .35rem;
  }

  .artist-bio-inner{
    padding: .85rem 1rem;
    font-size: .9rem;
  }

  .artists-hero{
    min-height: 420px;
    position: relative;
  }

  .artists-hero-content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .artists-title{
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin: 0;
    text-align: center;
    align-self: center;
  }

  .artists-subtitle{
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    max-width: 90%;
    font-size: .92rem;
    line-height: 1.6;
    text-align: center;
  }

  .artist-info-style{
    font-size: .88rem;
    padding: 0 .5rem;
  }

  .artist-cta{
    margin-top: .85rem;
    padding: .75rem 1.1rem;
    font-size: .78rem;
  }

  .artists-section-intro{
    margin: 0 auto 1.4rem;
  }

  .eyebrow{
    font-size: .75rem;
    letter-spacing: .14em;
  }

  .artists-section-intro h2{
    font-size: 1.35rem;
    line-height: 1.28;
  }
}

body{
  overscroll-behavior: none;
  overflow-x: hidden;
}

/* ===== BLOG PAGE ===== */
.blog-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}