/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 8, 8, 0.92) 0%, rgba(10, 8, 8, 0.55) 45%, rgba(10, 8, 8, 0.75) 100%),
    linear-gradient(to top, rgba(10, 8, 8, 0.9) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-block: var(--space-4xl);
}

.hero__signal {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: var(--color-champagne);
  margin-bottom: var(--space-sm);
}

.hero__signal span {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.55em;
  color: var(--color-gold);
  margin-top: var(--space-md);
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-champagne-muted);
  max-width: 22ch;
  margin-bottom: var(--space-xl);
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2xl);
}

.hero__location::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__accent-line {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero__content {
    padding-block: var(--space-3xl);
    min-height: 90vh;
  }

  .hero__accent-line {
    display: none;
  }
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.services-grid .service-card:nth-child(3),
.services-grid .service-card:nth-child(4) {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery Section ── */
.gallery-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.gallery-header .section__lead {
  margin-bottom: 0;
}

.gallery-note {
  font-size: var(--text-sm);
  color: var(--color-champagne-muted);
  max-width: 28ch;
  text-align: right;
}

@media (max-width: 768px) {
  .gallery-note {
    text-align: left;
  }
}

/* ── Studio ── */
.studio-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.studio-artist {
  position: relative;
}

.studio-artist__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.studio-artist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-artist__tag {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-champagne);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-content__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.studio-content__role {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.studio-content__bio {
  font-size: var(--text-base);
  color: var(--color-ink-soft);
  margin-bottom: var(--space-xl);
  max-width: 48ch;
}

.studio-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.studio-highlight {
  padding: var(--space-md);
  background: var(--color-champagne);
  border-radius: var(--radius-sm);
  text-align: center;
}

.studio-highlight__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-accent);
}

.studio-highlight__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.studio-ambiance {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.studio-ambiance__main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.studio-ambiance__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-ambiance__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.studio-ambiance__side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  min-height: 0;
}

@media (max-width: 900px) {
  .studio-layout {
    grid-template-columns: 1fr;
  }

  .studio-artist__photo {
    max-height: 420px;
    aspect-ratio: auto;
  }

  .studio-ambiance {
    grid-template-columns: 1fr;
  }

  .studio-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .studio-highlights {
    grid-template-columns: 1fr;
  }
}

/* ── Booking ── */
.booking-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

.booking-info__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-champagne);
  margin-bottom: var(--space-xl);
}

.booking-info__block {
  margin-bottom: var(--space-lg);
}

.booking-info__block h3 {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.booking-info__block p,
.booking-info__block a {
  font-size: var(--text-sm);
  color: var(--color-champagne-muted);
  line-height: 1.7;
}

.booking-info__block a:hover {
  color: var(--color-gold);
}

.booking-hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-champagne-muted);
}

.booking-hours dt {
  font-weight: 500;
  color: var(--color-champagne);
}

.booking-form-wrap {
  padding: var(--space-xl);
  background: rgba(20, 16, 16, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.16);
  border-radius: var(--radius-md);
}

.booking-form-wrap__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-champagne);
  margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .booking-panel {
    grid-template-columns: 1fr;
  }
}
