/* =====================================================
   AWC Inner Page Styles
   Extend main.css for content pages (non-homepage)
   ===================================================== */

/* ── PAGE BANNER ── */
.page-banner {
  padding-top: var(--nav-height);
  background: var(--charcoal);
  color: white;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,110,82,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
  position: relative;
  z-index: 1;
}
.page-banner-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 1rem;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }
.page-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page-content-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* ── PROSE BODY ── */
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.75rem 0 0.5rem;
}
.prose p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol {
  margin: 0.75rem 0 1.1rem 1.5rem;
}
.prose li {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.prose a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--sage); }
.prose strong { color: var(--charcoal); font-weight: 600; }

/* ── TWO-COLUMN CONTENT + SIDEBAR ── */
.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
.sidebar-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sidebar-card p, .sidebar-card li {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.65;
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 0.5rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li::before {
  content: '→';
  color: var(--sage);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sidebar-card a {
  color: var(--sage-dark);
  text-decoration: none;
  font-size: 0.88rem;
}
.sidebar-card a:hover { text-decoration: underline; }

/* ── CONTACT / CTA BOX ── */
.cta-box {
  background: var(--sage);
  color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.cta-box p { font-size: 0.86rem; opacity: 0.88; line-height: 1.6; margin-bottom: 0.75rem; }
.cta-box a {
  display: inline-block;
  background: white;
  color: var(--sage-dark);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-box a:hover { background: var(--cream); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.94rem;
  color: var(--stone);
  line-height: 1.75;
}
.faq-answer a { color: var(--sage-dark); }
.faq-item.open .faq-answer { display: block; }

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-light);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem; left: 1rem;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}
.testimonial-attribution { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }
.testimonial-attribution span { font-weight: 400; color: var(--stone); }

/* ── PHILANTHROPY PROGRAM CARD ── */
.program-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.program-card:last-child { border-bottom: none; }
.program-card.reverse { direction: rtl; }
.program-card.reverse > * { direction: ltr; }
.program-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}
.program-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.program-card p {
  font-size: 0.94rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.program-card ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.program-card li {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.program-card a.ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(92,110,82,0.3);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.program-card a.ext-link:hover { color: var(--sage); border-color: var(--sage); }

/* ── RENTAL REQUEST FORM ── */
.form-page {
  background: var(--cream);
  padding: 4rem 2rem;
}
.form-card {
  background: white;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}
.form-card-header {
  background: var(--sage);
  color: white;
  padding: 1.5rem 2rem;
}
.form-card-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.form-card-header p { font-size: 0.86rem; opacity: 0.85; margin-top: 0.3rem; }
.form-card-body { padding: 2rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.4rem;
}
.form-field label .req { color: var(--sage); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 5px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,140,110,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
  gap: 1rem;
}
.form-submit p { font-size: 0.82rem; color: var(--stone); }

/* ── LOCATION MAP PLACEHOLDER ── */
.map-container {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  margin-top: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .content-sidebar-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .program-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .program-card.reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .page-banner-inner { padding: 2rem 1.25rem 0; }
  .page-content, .page-content-narrow { padding: 3rem 1.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
