/* Lightweight styles for static text pages (FAQ, Privacy, Shipping, Contact, 404). */

.static-hero {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.static-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.static-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
}
.static-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.static-hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem auto 0;
  max-width: 640px;
  line-height: 1.7;
}

.static-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.75;
}
.static-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 2.4rem 0 0.8rem;
  color: var(--dark);
}
.static-wrap h2:first-child {
  margin-top: 0;
}
.static-wrap p {
  margin-bottom: 1rem;
  font-size: 0.96rem;
}
.static-wrap ul {
  margin: 0.5rem 0 1.2rem 1.4rem;
}
.static-wrap li {
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
}
.static-wrap a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.static-wrap a:hover {
  color: var(--gold-light);
}
.static-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: 0.04em;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--cream-2);
  border: 1px solid rgba(180, 130, 50, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(180, 130, 50, 0.45);
}
.faq-q {
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after {
  content: '−';
}
.faq-a {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* 404 */
.notfound-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* Contact page extension */
.contact-page-intro {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}
