/* ── Page-specific styles: Orientation ── */

.page-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  padding-left: clamp(24px, 8vw, 160px);
  padding-right: clamp(24px, 8vw, 160px);
  border-bottom: 1px solid #eee;
  height: 100vh;
}

.page-hero--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
}

.page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-10px);
}

.page-hero-logo {
  max-width: 50%;
  height: auto;
  object-fit: contain;
}

.page-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-hero-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 540px;
}

/* ── Hero Image ── */
.event-hero-img {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
}

.event-hero-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* ── Event Summary Card ── */
.event-summary {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 160px);
  background: #f8f8f8;
}

.event-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  max-width: 900px;
}

.event-item {
  background: #fff;
  padding: 32px 28px;
}

.event-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 10px;
}

.event-item-value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

/* ── Content sections ── */
.content-section {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 160px);
}

.content-section + .content-section {
  border-top: 1px solid #eee;
}

.content-section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 16px;
}

.content-section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

/* ── Timeline ── */
.timeline {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  padding-top: 3px;
}

.timeline-content-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-content-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

/* ── Roles grid ── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
  max-width: 900px;
}

.role-item {
  background: #fff;
  padding: 32px 28px;
}

.role-item-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.role-item-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 28px 0;
}

.faq-item:first-child {
  border-top: 1px solid #eee;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.faq-q::before {
  content: "Q";
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: #111;
  color: #fff;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-a {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  padding-left: 38px;
}

/* ── CTA block ── */
.cta-block {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 160px);
  background: #111;
  color: #fff;
}

.cta-block-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #888;
  margin-bottom: 16px;
}

.cta-block-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-block-sub {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.8;
}

/* ── Back link ── */
.back-bar {
  padding: 20px clamp(24px, 8vw, 160px);
  border-bottom: 1px solid #eee;
}

.back-bar a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #999;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.back-bar a:hover { color: #111; }
.back-bar a::before { content: "←"; }

/* ── Footer ── */
.page-footer {
  padding: 40px clamp(24px, 8vw, 160px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.page-footer .logo {
  font-size: 0.9rem;
}

.page-footer .copyright {
  font-size: 0.7rem;
  color: #aaa;
  letter-spacing: 0.05em;
}

.footer-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-end;
}

.footer-page-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-page-links a:hover {
  color: #111;
}

.contact-form-section {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 160px);
  border-top: 1px solid #eee;
}

.contact-form-note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
  margin-top: -18px;
  margin-bottom: 24px;
}

.contact-form-note a {
  color: #111;
  text-underline-offset: 2px;
}

.contact-form-embed-wrap {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.contact-form-embed-wrap iframe {
  width: 100%;
  height: min(1200px, 80vh);
  min-height: 760px;
  border: 0;
  display: block;
}

.contact-page .page-hero {
  height: auto;
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 40px;
}

.contact-page .contact-form-section {
  padding-top: 32px;
}

@media (max-width: 768px) {
  .page-hero--two-col {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    display: none;
  }

  .event-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .page-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-form-note {
    margin-top: -12px;
  }

  .contact-form-embed-wrap iframe {
    min-height: 680px;
  }

  .contact-page .page-hero {
    height: auto;
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .contact-page .contact-form-section {
    padding-top: 24px;
  }
}

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