/* ── GUEST ARTIST PAGE ── */

.ga-hero,
.ga-included,
.ga-space,
.ga-pricing,
.ga-process,
.ga-testimonials,
.ga-apply {
  overflow-x: hidden;
}

.ga-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* HERO */
.ga-hero {
  padding: calc(var(--sv) + 64px) var(--px) 56px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
}

.ga-hero-inner {
  display: contents;
}

.ga-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 20px 0 24px;
}

.ga-hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}

.ga-hero-stats {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-self: flex-start;
  margin-top: 60px;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 24px 0;
  width: 100%;
  box-sizing: border-box;
}

.ga-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 0 24px;
}

.ga-stat:first-child { padding-left: 0; }

.ga-stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}

.ga-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sec-grey);
}

.ga-stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--light);
  flex-shrink: 0;
}

/* SECTION HEADER */
.ga-section-header { margin-bottom: 48px; }

/* INCLUDED */
.ga-included {
  padding: var(--sv) 0;
  border-bottom: 1px solid var(--light);
}

.ga-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light);
  border-left: 1px solid var(--light);
}

.ga-benefit {
  padding: 36px 32px;
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.ga-benefit:nth-child(4),
.ga-benefit:nth-child(5),
.ga-benefit:nth-child(6) { border-bottom: 1px solid var(--light); }

.ga-benefit-num {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sec-grey);
  margin-bottom: 16px;
}

.ga-benefit-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.ga-benefit-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* SPACE */
.ga-space {
  padding: var(--sv) 0;
  border-bottom: 1px solid var(--light);
}

.ga-space-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
  margin-top: 12px;
}

/* STUDIO CAROUSEL */
.ga-studio-carousel {
  margin-top: 40px;
  position: relative;
}

.ga-studio-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ga-studio-track::-webkit-scrollbar { display: none; }

.ga-studio-slide {
  flex: 0 0 calc(33.333% - 2px);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
}

.ga-studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ga-studio-slide:hover img { transform: scale(1.04); }

.ga-studio-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}

/* PRICING */
.ga-pricing {
  padding: var(--sv) 0;
  border-bottom: 1px solid var(--light);
  background: var(--off-white);
}

.ga-pricing-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 12px;
}

.ga-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.ga-plan {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--black);
}

.ga-plan--featured {
  background: var(--black);
  border-color: var(--black);
}

.ga-plan-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--light);
  padding: 5px 12px;
  margin-bottom: 24px;
}

.ga-plan--featured .ga-plan-tag {
  color: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.15);
}

.ga-plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.ga-plan--featured .ga-plan-name { color: rgba(255,255,255,0.45); }

.ga-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.ga-plan-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.ga-plan--featured .ga-plan-num { color: var(--white); }

.ga-plan-den {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
}

.ga-plan--featured .ga-plan-den { color: rgba(255,255,255,0.4); }

.ga-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--light);
}

.ga-plan--featured .ga-plan-features { border-color: rgba(255,255,255,0.1); }

.ga-plan-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  padding: 13px 0;
  border-bottom: 1px solid var(--light);
}

.ga-plan--featured .ga-plan-features li {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.08);
}

.ga-plan-features li:last-child { border-bottom: none; }

/* PROCESS */
.ga-process {
  padding: var(--sv) 0;
  border-bottom: 1px solid var(--light);
}

.ga-steps {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.ga-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--light);
  align-items: start;
}

.ga-step:last-child { border-bottom: 1px solid var(--light); }

.ga-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sec-grey);
  padding-top: 3px;
}

.ga-step-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.ga-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

/* TESTIMONIALS */
.ga-testimonials {
  padding: var(--sv) 0;
  border-bottom: 1px solid var(--light);
  overflow: hidden;
}

.ga-testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ga-reviews-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ga-reviews-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 4px;
}

.ga-reviews-track::-webkit-scrollbar { display: none; }
.ga-reviews-track.grabbing { cursor: grabbing; }

.ga-review {
  flex-shrink: 0;
  width: 320px;
  padding: 28px;
  border: 1px solid var(--light);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.ga-review-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
}

.ga-review-author { display: flex; align-items: center; gap: 12px; }

.ga-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}

.ga-review-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}

.ga-review-handle {
  font-size: 11px;
  font-weight: 300;
  color: var(--sec-grey);
}

/* APPLICATION FORM */
.ga-apply {
  padding: var(--sv) 0;
  background: var(--off-white);
}

.ga-apply .ga-section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ga-apply-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ga-apply-form-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--light);
}

.ga-apply-success { display: none; text-align: center; padding: 32px 0; }
.ga-apply-success.visible { display: block; }

.ga-apply-success-icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ga-apply-success-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
}

.ga-apply-success-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

.ga-honeypot { display: none; visibility: hidden; position: absolute; }

.ga-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ga-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.ga-form-row .ga-form-group { margin-bottom: 0; }

.ga-form-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.ga-form-input,
.ga-form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light);
  background: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  box-sizing: border-box;
}

.ga-form-input:focus,
.ga-form-select:focus { border-color: var(--black); }

.ga-form-error { font-size: 11px; color: #c0392b; display: none; }
.ga-form-error.visible { display: block; }
.ga-form-error--general { display: none; margin-top: 12px; font-size: 12px; }
.ga-form-error--general.visible { display: block; }

.ga-form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ga-date-range {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.ga-date-range-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ga-date-range-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.ga-date-input { width: 100%; }

.ga-date-range-sep {
  font-size: 14px;
  color: var(--light);
  flex-shrink: 0;
  margin-bottom: 12px;
  padding-bottom: 2px;
}

.ga-form-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--sec-grey);
  line-height: 1.6;
  max-width: 260px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ga-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    align-items: start;
  }
  .ga-hero-stats {
    flex-direction: row;
    gap: 0;
    align-self: auto;
    margin-top: 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding: 24px 0;
  }
  .ga-stat { flex: 1; padding: 0 16px; }
  .ga-stat:first-child { padding-left: 0; }
  .ga-stat-divider { width: 1px; height: 100%; background: var(--light); }
  .ga-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ga-benefit:nth-child(4) { border-bottom: 1px solid var(--light); }
  .ga-benefit:nth-child(5) { border-bottom: 1px solid var(--light); }
  .ga-benefit:nth-child(6) { border-bottom: none; }
  .ga-mosaic-bottom { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  /* HERO */
  .ga-hero {
    padding-top: calc(var(--sv) + 32px);
    padding-bottom: 32px;
    gap: 28px;
  }
  .ga-hero-title {
    font-size: clamp(32px, 9vw, 52px);
    margin: 12px 0 16px;
  }
  .ga-hero-desc { font-size: 13px; margin-bottom: 20px; }
  .ga-stat-num { font-size: 26px; }
  .ga-stat-label { font-size: 9px; }

  /* BENEFITS */
  .ga-benefits-grid { grid-template-columns: 1fr 1fr; }
  .ga-benefit { padding: 20px 16px; }
  .ga-benefit-title { font-size: 11px; }
  .ga-benefit-desc { font-size: 12px; }
  .ga-benefit:nth-child(4),
  .ga-benefit:nth-child(5) { border-bottom: 1px solid var(--light); }
  .ga-benefit:nth-child(6) { border-bottom: none; }

  /* MOSAIC */
  .ga-space-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
  }
  .ga-mosaic-main {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 3/4;
  }
  .ga-mosaic-col {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
  }
  .ga-mosaic-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ga-mosaic-cell--wide { aspect-ratio: 4/3; }

  /* PRICING */
  .ga-pricing-grid { grid-template-columns: 1fr; gap: 2px; }
  .ga-plan {
    padding: 28px 20px;
    border: 1px solid var(--black);
  }
  .ga-plan--featured { border-color: var(--black); }
  .ga-plan-num { font-size: 36px; }

  /* PROCESS */
  .ga-steps { margin-top: 32px; }
  .ga-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .ga-step-title { font-size: 12px; }
  .ga-step-desc { font-size: 12px; line-height: 1.65; }

  /* REVIEWS */
  .ga-testimonials-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ga-reviews-nav { display: none; }
  .ga-testimonials { position: relative; }
  .ga-testimonials::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--white));
    pointer-events: none;
  }
  .ga-reviews-track::after {
    content: 'swipe';
    display: block;
    flex-shrink: 0;
    align-self: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sec-grey);
    padding: 0 16px 0 8px;
    white-space: nowrap;
  }
  .ga-review { width: 240px; padding: 20px; gap: 16px; }
  .ga-review-text { font-size: 12px; line-height: 1.7; }
  .ga-review-avatar { width: 36px; height: 36px; }

  /* FORM */
  .ga-section-header { margin-bottom: 28px; }
  .ga-form-row { grid-template-columns: 1fr; gap: 0; }
  .ga-form-group { margin-bottom: 12px; }
  .ga-apply-form-wrap {
    padding: 24px 16px;
    margin-top: 24px;
  }
  .ga-form-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ga-form-submit-row .btn { width: 100%; text-align: center; }
  .ga-form-note { max-width: 100%; }
  .ga-date-range { flex-direction: row; gap: 8px; align-items: flex-end; }
  .ga-date-range-sep { display: block; }
}

@media (max-width: 480px) {
  /* HERO */
  .ga-hero-stats { padding: 16px 0; }
  .ga-stat { padding: 0 10px; }
  .ga-stat:first-child { padding-left: 0; }
  .ga-stat-num { font-size: 22px; }

  /* BENEFITS */
  .ga-benefits-grid { grid-template-columns: 1fr; }
  .ga-benefit:nth-child(n) { border-bottom: 1px solid var(--light) !important; }
  .ga-benefit:last-child { border-bottom: none !important; }

  /* MOSAIC */
  .ga-space-mosaic { grid-template-columns: 1fr; }
  .ga-mosaic-main { grid-column: 1; grid-row: 1; aspect-ratio: 16/9; }
  .ga-mosaic-col { grid-column: 1; grid-row: 2; flex-direction: row; }
  .ga-mosaic-col .ga-mosaic-cell { aspect-ratio: 1/1; }
  .ga-mosaic-bottom {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
  }
  .ga-mosaic-bottom .ga-mosaic-cell:last-child { display: none; }
  .ga-mosaic-cell--wide { aspect-ratio: 16/9; }

  /* REVIEWS */
  .ga-review { width: 200px; padding: 16px; }
  .ga-testimonials-header h2 { font-size: clamp(24px, 8vw, 36px); }
}
/* ── SLOTS CALENDAR ── */
/* ── CALENDAR ── */

.ga-cal-hint {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.ga-cal-wrap {
  border: 1px solid var(--light);
  padding: 20px;
  margin-bottom: 12px;
  user-select: none;
}

.ga-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ga-cal-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--black);
  padding: 4px 8px;
  transition: opacity 0.15s;
}

.ga-cal-nav-btn:hover { opacity: 0.5; }

.ga-cal-month-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.ga-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.ga-cal-weekdays span {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 4px 0;
}

.ga-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.ga-cal-cell {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.ga-cal-cell--empty { cursor: default; }

.ga-cal-cell--past {
  opacity: 0.25;
  cursor: not-allowed;
}

.ga-cal-cell--today {
  outline: 1.5px solid var(--black);
  outline-offset: -1.5px;
}

.ga-cal-cell--full {
  background: var(--light);
  cursor: not-allowed;
  opacity: 0.5;
}

.ga-cal-cell--range {
  background: var(--light);
}

.ga-cal-cell--start,
.ga-cal-cell--end {
  background: var(--black);
  color: var(--white);
}

.ga-cal-cell:not(.ga-cal-cell--past):not(.ga-cal-cell--full):not(.ga-cal-cell--empty):hover {
  background: var(--light);
}

.ga-cal-cell--start:hover,
.ga-cal-cell--end:hover {
  background: var(--black);
}

.ga-cal-day-num {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.ga-cal-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8a400;
}

.ga-cal-selection {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  min-height: 18px;
  margin-bottom: 8px;
}

.ga-cal-group-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.ga-cal-group-note a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .ga-cal-wrap { padding: 14px; }
  .ga-cal-day-num { font-size: 11px; }
}

#gaSlotsPreview {
  margin: 24px 0;
}

.ga-slots-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 16px;
}

.ga-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ga-slot-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 10px;
  border: 1px solid var(--light);
  min-width: 64px;
  background: var(--white);
}

.ga-slot-day--low {
  border-color: #e0a800;
}

.ga-slot-day--full {
  background: var(--off-white);
  opacity: 0.5;
}

.ga-slot-weekday {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.ga-slot-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.ga-slot-month {
  font-size: 9px;
  font-weight: 400;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ga-slot-count {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 4px;
}

.ga-slot-day--full .ga-slot-count { color: var(--mid); }
.ga-slot-day--low  .ga-slot-count { color: #e0a800; }

.ga-slots-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

.ga-slots-loading,
.ga-slots-empty {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  padding: 16px 0;
}

@media (max-width: 600px) {
  .ga-slot-day { min-width: 52px; padding: 10px 8px; }
  .ga-slot-num { font-size: 16px; }
}
