/* Shared page-level styles (Pablo + Zlata) */

.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.page-hero__sub {
  margin-top: 1.25rem;
  font-style: italic;
  opacity: 0.78;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nav__menu a.is-current {
  opacity: 1;
  font-weight: 500;
}
.nav__menu a.is-current::after { width: 100%; }

.btn--ghost-dark {
  background: transparent;
  color: var(--green-dark, var(--terracotta));
  border-color: var(--green-dark, var(--terracotta));
}
.btn--ghost-dark:hover {
  background: var(--green-dark, var(--terracotta));
  color: var(--cream);
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--line, rgba(0, 0, 0, 0.08));
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line, rgba(0, 0, 0, 0.08));
}

.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  padding-right: 2rem;
  position: relative;
  list-style: none;
  letter-spacing: 0.005em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item__answer {
  padding-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.85;
}

.faq-item__answer p { margin-bottom: 0.85rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* Story page */
.story-page {
  max-width: 760px;
  margin: 0 auto;
}

.story-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  margin: 3rem 0 1rem;
  letter-spacing: 0.005em;
}

.story-page p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  opacity: 0.86;
}

.story-page p.lead {
  font-size: 1.25rem;
  font-style: italic;
  opacity: 1;
  margin-bottom: 2rem;
}

.story-page blockquote {
  border-left: 2px solid currentColor;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  opacity: 0.78;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

/* Contact page */
.contact-map {
  margin-top: 3rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Big gallery */
.gallery--full {
  grid-auto-rows: 280px;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .page-hero { padding: 7rem 0 3rem; }
  .gallery--full { grid-auto-rows: 200px; }
  .contact-map iframe { height: 300px; }
}
