/* /studio — "the space" */

.studio-hero-page {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: var(--ef-white);
  background: var(--ef-navy-deep);
  isolation: isolate; overflow: hidden;
}
.studio-hero-page .hero-media img { object-position: 50% 40%; opacity: .55; }
.studio-hero-page .hero-overlay {
  background: linear-gradient(180deg, rgba(11,30,51,0.65) 0%, rgba(11,30,51,0.85) 100%);
}
.studio-hero-page-inner { max-width: 760px; padding: var(--s-9) 0; }
.studio-hero-page h1 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.06;
  margin: var(--s-4) 0 var(--s-5);
}
.studio-hero-page p.lede {
  font-size: 19px; color: rgba(255,255,255,0.86);
  max-width: 56ch;
}

/* Amenities grid */
.amenities { padding: var(--s-9) 0; background: var(--ef-paper); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.amenity {
  background: var(--ef-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: var(--s-5);
}
.amenity .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ef-cyan);
  margin-bottom: var(--s-4);
  position: relative;
}
.amenity .icon::after {
  content: ""; position: absolute; inset: 8px;
  border-radius: 50%;
  background: var(--ef-navy-deep);
}
.amenity h3 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 19px;
  color: var(--ef-navy-deep);
  margin: 0 0 var(--s-2);
}
.amenity p { font-size: 14px; color: rgba(11,30,51,0.75); margin: 0; }

/* First visit timeline */
.first-visit {
  background: var(--ef-navy-deep);
  color: var(--ef-white);
  padding: var(--s-9) 0;
  position: relative;
}
.first-visit::before {
  content: ""; position: absolute; top:0; left:0; right:0; height:1px;
  background: var(--ef-gradient);
}
.first-visit h2 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--ef-white);
  margin: 0 0 var(--s-7);
  max-width: 26ch;
}
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  position: relative;
  padding-left: var(--s-7);
  border-left: 2px solid var(--ef-cyan);
}
.timeline-step {
  position: relative;
}
.timeline-step::before {
  content: ""; position: absolute;
  left: calc(-1 * var(--s-7) - 9px); top: 8px;
  width: 16px; height: 16px;
  background: var(--ef-cyan);
  border-radius: 50%;
}
.timeline-step .when {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ef-cyan-aa);
  margin-bottom: var(--s-2);
}
.timeline-step h4 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 var(--s-2);
}
.timeline-step p { color: rgba(255,255,255,0.85); margin: 0; max-width: 56ch; }

/* FAQ */
.faq { padding: var(--s-9) 0; background: var(--ef-paper); }
.faq-list { margin-top: var(--s-7); border-top: 1px solid var(--color-border); }
.faq-item {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 19px;
  color: var(--ef-navy-deep);
  display: flex; justify-content: space-between; gap: var(--s-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ef-teal-aa);
  font-size: 24px; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  font-size: 16px; color: var(--ef-ink);
  margin: var(--s-4) 0 0;
  max-width: 64ch;
  line-height: 1.65;
}

/* Location */
.location { padding: var(--s-9) 0; background: var(--ef-paper); border-top: 1px solid var(--color-border); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: var(--s-7);
  align-items: stretch;
}
.location h2 {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--ef-navy-deep);
  margin: 0 0 var(--s-4);
}
.location address {
  font-style: normal;
  font-size: 17px; line-height: 1.7;
  color: var(--ef-ink);
  margin-bottom: var(--s-5);
}
.location .map-placeholder {
  background: var(--ef-mist);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  color: rgba(11,30,51,0.65);
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 13px;
}
.location .location-map {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 24px 48px -24px rgba(17, 56, 95, 0.22);
  display: block;
}

@media (max-width: 960px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* Studio gallery — 3-column responsive photo strip */
.studio-gallery {
  padding: var(--s-9) 0;
  background: var(--ef-paper);
  border-top: 1px solid var(--color-border);
}
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.studio-gallery-tile {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0b1a2b;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 48px -24px rgba(17, 56, 95, 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.studio-gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(17, 56, 95, 0.34);
}
.studio-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.studio-gallery-tile:hover img { transform: scale(1.04); }
.studio-gallery-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-4) var(--s-5);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(11,26,43,0) 0%, rgba(11,26,43,0.78) 100%);
}

@media (max-width: 960px) {
  .studio-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .studio-gallery-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}
