/* Tina Marie's Recovery Housing — Money/Service Page Stylesheet
   Shares the main site's design tokens. Used by /sober-living-dayton.html etc. */

:root {
  --red-primary: #8B1A1A;
  --red-dark: #5C1010;
  --red-light: #B22222;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0EB;
  --warm-gray: #6B5B4F;
  --dark: #1A1A1A;
  --text-primary: #2D2420;
  --text-secondary: #5A4E45;
  --gold-accent: #C9A96E;
  --shadow-soft: 0 4px 20px rgba(139,26,26,0.08);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text-primary); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* NAV (mirrors main site) */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(139,26,26,0.1); padding: 12px 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--red-primary); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-primary); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--red-primary); }
.nav-cta { background: var(--red-primary); color: var(--white) !important; padding: 10px 22px; border-radius: 4px; transition: background 0.3s, transform 0.2s; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); }

/* HERO */
.mhero { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 45%, #6B1515 100%); color: var(--white); padding: 130px 30px 64px; text-align: center; }
.mhero .breadcrumb { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.mhero .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.mhero .breadcrumb a:hover { color: var(--white); }
.mhero h1 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; line-height: 1.15; max-width: 880px; margin: 0 auto 18px; color: var(--white); }
.mhero h1 em { font-style: italic; color: var(--gold-accent); }
.mhero .sub { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 30px; line-height: 1.7; }
.mhero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-block; background: var(--white); color: var(--red-primary); padding: 15px 32px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-outline { display: inline-block; color: var(--white); padding: 15px 32px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; transition: all 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* CONTENT */
.mp { max-width: 820px; margin: 0 auto; padding: 64px 30px 30px; }
.mp p { font-size: 17px; line-height: 1.85; color: var(--text-primary); margin-bottom: 22px; }
.mp h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--text-primary); margin: 46px 0 18px; line-height: 1.3; }
.mp h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; color: var(--text-primary); margin: 30px 0 12px; }
.mp ul, .mp ol { margin: 0 0 22px 26px; }
.mp li { font-size: 17px; line-height: 1.8; margin-bottom: 10px; }
.mp a { color: var(--red-primary); text-decoration: underline; text-underline-offset: 3px; }
.mp a:hover { color: var(--red-dark); }
.mp strong { font-weight: 700; }
.mp .lede { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; line-height: 1.6; color: var(--text-primary); margin-bottom: 32px; padding-left: 22px; border-left: 3px solid var(--gold-accent); }
.mp .callout { background: var(--cream); border-left: 4px solid var(--gold-accent); padding: 22px 26px; margin: 30px 0; border-radius: 0 6px 6px 0; }
.mp .callout h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--red-primary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.mp .callout p:last-child { margin-bottom: 0; }
.mp hr { border: none; border-top: 1px solid rgba(139,26,26,0.15); margin: 44px 0; }

/* FEATURE CARDS */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.feature-card { background: var(--off-white); border: 1px solid rgba(139,26,26,0.07); border-top: 3px solid var(--red-primary); border-radius: 8px; padding: 24px 22px; }
.feature-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* FAQ */
.mp-faq { max-width: 820px; margin: 0 auto; padding: 20px 30px 40px; }
.mp-faq h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--text-primary); margin-bottom: 22px; }
.faq-item { background: var(--off-white); border: 1px solid rgba(139,26,26,0.08); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--text-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; font-weight: 300; color: var(--red-primary); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; font-size: 16px; line-height: 1.8; color: var(--text-secondary); }

/* CTA */
.mp-cta { max-width: 820px; margin: 40px auto 0; padding: 42px 32px; background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%); color: var(--white); border-radius: 12px; text-align: center; }
.mp-cta h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 10px; }
.mp-cta p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 22px; max-width: 540px; margin-left: auto; margin-right: auto; }
.mp-cta .cta-phone { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--white); text-decoration: none; display: inline-block; transition: color 0.2s, transform 0.2s; }
.mp-cta .cta-phone:hover { color: var(--gold-accent); transform: scale(1.03); }
.mp-cta .cta-sub { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-accent); margin-top: 12px; margin-bottom: 0; }

/* RELATED PAGES */
.related-pages { max-width: 1100px; margin: 60px auto 0; padding: 0 30px; }
.related-pages h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-primary); margin-bottom: 22px; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--off-white); padding: 24px; border-radius: 8px; border: 1px solid rgba(139,26,26,0.06); border-top: 3px solid var(--gold-accent); }
.related-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.related-card h4 a { color: var(--text-primary); text-decoration: none; }
.related-card h4 a:hover { color: var(--red-primary); }
.related-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* FOOTER (mirrors main site) */
footer { background: var(--dark); color: rgba(255,255,255,0.6); text-align: center; padding: 44px 30px; font-size: 13px; margin-top: 70px; }
footer .footer-text { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); font-weight: 700; margin-bottom: 12px; }
footer p { margin-bottom: 6px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; gap: 16px; box-shadow: var(--shadow-medium); }
  .mobile-toggle { display: flex; }
  .mhero h1 { font-size: 32px; }
  .mhero { padding: 110px 20px 50px; }
  .mp { padding: 50px 24px 24px; }
  .mp p, .mp li { font-size: 16px; }
  .mp h2 { font-size: 26px; }
  .feature-grid, .related-grid { grid-template-columns: 1fr; }
}

/* PROPERTY PHOTO GALLERY (individual home pages) */
.home-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.home-photo { margin: 0; }
.home-photo img { width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow-medium); display: block; }
.home-photo figcaption { font-size: 14px; color: var(--text-secondary); margin-top: 8px; font-style: italic; line-height: 1.5; }

/* PROPERTY CARDS (Our Homes hub) */
.property-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 34px 0; }
.property-card { background: var(--off-white); border: 1px solid rgba(139,26,26,0.07); border-radius: 10px; overflow: hidden; border-top: 3px solid var(--red-primary); }
.property-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.property-card .pc-body { padding: 22px 24px; }
.property-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; margin-bottom: 6px; }
.property-card h3 a { color: var(--text-primary); text-decoration: none; }
.property-card h3 a:hover { color: var(--red-primary); }
.property-card .pc-loc { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red-primary); margin-bottom: 10px; }
.property-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.property-card a.pc-link { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red-primary); text-decoration: none; }
@media (max-width: 968px) { .home-gallery, .property-grid { grid-template-columns: 1fr; } }
