.back-link {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  z-index: 5;
  padding: 0.5rem 0.75rem;
  background: rgba(10, 9, 8, 0.6);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.back-link:hover {
  color: var(--text);
}

.sub-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
}

.sub-hero {
  margin-bottom: 3.5rem;
}

.sub-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.sub-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  margin: 0 0 1.25rem;
  line-height: 1.1;
}

.sub-lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0;
}

.sub-section {
  margin-bottom: 3.5rem;
}

.sub-section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.sub-section-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.sub-section-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -0.75rem 0 1.25rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.photo-grid--single img {
  aspect-ratio: auto;
}

.sub-section--cta {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.booking-button {
  display: inline-block;
  background: var(--create);
  color: #0a0908;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 1.1rem 3rem;
  border-radius: 8px;
  transition: opacity 0.2s var(--ease);
}

.booking-button:hover {
  opacity: 0.85;
}

.video-embed--single {
  max-width: 640px;
  margin: 0 auto;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.data-card {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s var(--ease);
}

.data-card:hover {
  background: var(--bg-card-hover);
}

.data-card-icon {
  font-size: 22px;
  color: var(--jura);
  margin-bottom: 12px;
}

.data-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  margin: 0 0 0.75rem;
}

.data-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.pdf-embed-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  margin-bottom: 1.25rem;
  background: var(--bg-card);
}

.pdf-embed {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border: none;
  display: block;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .data-grid { grid-template-columns: 1fr; }
  .pdf-embed { height: 60vh; }
}

  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  transition: opacity 0.2s var(--ease);
}

.download-button:hover {
  opacity: 0.85;
}

.sub-footer {
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.sub-footer a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sub-footer a:hover {
  color: var(--text);
}

.creative-item {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 0.5px solid var(--border);
}

.creative-item:last-of-type {
  border-bottom: 0.5px solid var(--border);
}

.creative-item-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  margin: 0 0 0.4rem;
}

.creative-item-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 0.9rem;
}

.creative-item-link {
  font-size: 0.875rem;
  color: var(--create);
}

.creative-item-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .creative-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.placeholder-box {
  background: var(--bg-elevated);
  border: 0.5px dashed var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
