/* RTWD AI Website Health Audit — Core Styles */
/* Brand: Desert Storm #FAF8F4, Eerie Black #181A1B, Corduroy #3F4C45, Akaroa #D8C3A5 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Lato', Arial, sans-serif; color: #181A1B; background: #FAF8F4; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; line-height: 1.25; }
a { color: #3F4C45; }
a:hover { color: #181A1B; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.site-header { background: #3F4C45; padding: 18px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { height: 38px; width: auto; }
.logo-link { display: inline-block; }
.header-link { color: #D8C3A5; font-size: 14px; text-decoration: none; }
.header-link:hover { color: #fff; }
.admin-badge { background: #D8C3A5; color: #181A1B; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.05em; }

.hero { padding: 70px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #3F4C45; margin-bottom: 14px; }
.hero h1 { font-size: 42px; color: #181A1B; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: #444; margin-bottom: 14px; line-height: 1.7; }

.form-card { background: #fff; border-radius: 10px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(63,76,69,0.10); }
.form-card h2 { font-size: 22px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; color: #3F4C45; margin-bottom: 7px; }
.label-note { font-weight: 400; color: #888; font-size: 13px; }
.form-group input[type="text"], .form-group input[type="email"] { width: 100%; padding: 12px 14px; border: 1.5px solid #d0cbc3; border-radius: 5px; font-size: 15px; font-family: 'Lato', sans-serif; color: #181A1B; background: #FAF8F4; transition: border-color 0.2s; }
.form-group input:focus { outline: none; border-color: #3F4C45; background: #fff; }
.field-note { font-size: 12px; color: #888; margin-top: 6px; }
.form-error { background: #fdf0ef; border-left: 4px solid #b0312b; padding: 12px 16px; border-radius: 4px; font-size: 14px; color: #b0312b; margin-bottom: 20px; }

.btn-primary { display: inline-block; width: 100%; padding: 15px 24px; background: #3F4C45; color: #fff; border: none; border-radius: 5px; font-size: 16px; font-family: 'Lato', sans-serif; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: #181A1B; color: #fff; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-secondary { display: inline-block; padding: 11px 24px; background: transparent; color: #3F4C45; border: 2px solid #3F4C45; border-radius: 5px; font-size: 15px; font-family: 'Lato', sans-serif; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { background: #3F4C45; color: #fff; }
.btn-text-link { font-size: 14px; color: #666; text-decoration: underline; }
.form-reassurance { font-size: 13px; color: #888; text-align: center; margin-top: 12px; }

.what-we-check { padding: 70px 0; background: #fff; }
.section-title { font-size: 32px; color: #181A1B; margin-bottom: 12px; text-align: center; }
.section-intro { font-size: 16px; color: #555; text-align: center; margin-bottom: 44px; }
.checks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.check-item { padding: 24px; border: 1px solid #e8e4dd; border-radius: 8px; background: #FAF8F4; }
.check-icon { font-size: 28px; margin-bottom: 12px; }
.check-item h3 { font-size: 16px; font-family: 'Lato', sans-serif; font-weight: 700; margin-bottom: 8px; color: #3F4C45; }
.check-item p { font-size: 14px; color: #555; line-height: 1.6; }

.about-richard { padding: 70px 0; }
.about-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.about-text h2 { font-size: 30px; margin-bottom: 18px; }
.about-text p { font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 14px; }
.award-badge { width: 140px; height: auto; opacity: 0.85; }

.site-footer { background: #3F4C45; padding: 20px 0; text-align: center; }
.site-footer p { font-size: 13px; color: rgba(255,255,255,0.6); }
.site-footer a { color: #D8C3A5; text-decoration: none; }
.site-footer a:hover { color: #fff; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 30px; }
  .checks-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .award-badge { display: none; }
}
@media (max-width: 500px) {
  .checks-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
}
