/* ═══════════════════════════════════════════════════════
   Cunningham Laundry · cunninghamlaundry.com
   Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A6B;
  --navy-deep:  #0A1E3D;
  --navy-light: #5A88BC;
  --gold:       #C9A84C;
  --warm-white: #F7F7F5;
  --charcoal:   #2E2E2E;
  --gray:       #666666;
  --gray-light: #EBEBEA;
  --border:     #D8D8D6;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVIGATION ───────────────────────────────────────── */

nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: bold; }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 3px;
  font-size: 13px !important;
}

.nav-cta:hover { background: var(--navy-deep) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── BUTTONS ──────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #b8962e; color: var(--navy-deep); }

.btn-ghost {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION SHARED ───────────────────────────────────── */

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

section h2,
.cta-banner h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.lead {
  font-size: 17px;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  background:
    linear-gradient(rgba(10,30,61,0.88), rgba(10,30,61,0.88)),
    url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #fff;
  padding: 100px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 480px;
}

.hero-footnote {
  font-size: 11px;
  color: rgba(138,171,204,0.65);
  margin-top: 16px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  line-height: 1.12;
  font-weight: bold;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  color: #b8c8df;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px 28px;
  text-align: center;
  min-width: 160px;
}

.stat-card .number {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: bold;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.stat-card .label {
  font-size: 11px;
  color: #8aabcc;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */

.how-section {
  background: var(--warm-white);
  padding: 80px 60px;
}

.how-section h2 { color: var(--navy); }

.steps {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.step {
  flex: 1;
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  background: #fff;
}

.step:last-child { border-right: none; }

.step-number {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: bold;
}

.step p { font-size: 15px; color: var(--gray); line-height: 1.75; }

/* ── WHY US ───────────────────────────────────────────── */

.why-section { padding: 80px 60px; background: #fff; }
.why-section h2 { color: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: #eef3fa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: bold;
}

.why-card p { font-size: 15px; color: var(--gray); line-height: 1.75; }

/* ── CTA BANNER ───────────────────────────────────────── */

.cta-banner {
  background: var(--navy);
  color: #fff;
  padding: 72px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { font-size: 17px; color: #8aabcc; max-width: 480px; }
.cta-banner-right { flex-shrink: 0; }

/* ── ABOUT: INTRO ─────────────────────────────────────── */

.about-intro {
  background: var(--warm-white);
  padding: 80px 60px;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.about-intro-content { flex: 1; }
.about-intro-content h2 { color: var(--navy); }
.about-intro-content .body-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 600px;
}

.about-aside {
  flex: 0 0 280px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 36px;
  margin-top: 8px;
}

.about-aside h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.aside-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.aside-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.aside-item .aside-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8aabcc;
  margin-bottom: 5px;
}
.aside-item .aside-value { font-size: 14px; color: #fff; line-height: 1.4; }

/* ── ABOUT: TEAM ──────────────────────────────────────── */

.team-section { padding: 80px 60px; background: #fff; }
.team-section h2 { color: var(--navy); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.team-card-bar { height: 6px; }
.team-card-body { padding: 32px; }

.team-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.team-initials.blue { background: #eef3fa; color: var(--navy); }
.team-initials.gold { background: #fdf3e3; color: #8a6a1a; }

.team-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: bold;
}

.team-card .team-title {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ── ABOUT: MISSION ───────────────────────────────────── */

.mission-section {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 60px;
}

.mission-section .section-eyebrow { color: var(--gold); }
.mission-section h2 { color: var(--gold) !important; }
.mission-section .lead { color: #b8c8df !important; max-width: 680px; }

.mission-pillars { display: flex; gap: 48px; margin-top: 0; }

.pillar { flex: 1; border-top: 2px solid var(--gold); padding-top: 24px; }

.pillar h4 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: bold;
}

.pillar p { font-size: 14px; color: #8aabcc; line-height: 1.75; }

/* ── CONTACT: TRUST STRIP ─────────────────────────────── */

.trust-strip {
  background: var(--navy);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-item { text-align: center; }
.trust-item .ti-number {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.trust-item .ti-label {
  font-size: 11px;
  color: #8aabcc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── CONTACT: MAIN ────────────────────────────────────── */

.contact-section {
  background: var(--warm-white);
  padding: 80px 60px;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.contact-content { flex: 1; }
.contact-content h2 { color: var(--navy); }
.contact-content .lead { margin-bottom: 36px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: #eef3fa;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg { width: 16px; height: 16px; }

.contact-detail .d-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 3px;
  font-weight: bold;
}

.contact-detail .d-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: bold;
}

.contact-note {
  margin-top: 40px;
  padding: 22px 24px;
  background: #e8e8e6;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ── CONTACT: FORM ────────────────────────────────────── */

.contact-form-wrap { flex: 0 0 460px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}

.contact-form h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: bold;
}

.form-row { display: flex; gap: 16px; }
.form-group { margin-bottom: 18px; flex: 1; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  font-family: Arial, sans-serif;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  background: #fff;
}

.form-group textarea { height: 96px; resize: vertical; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: 12px;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: background 0.15s;
}

.btn-submit:hover { background: var(--navy-deep); }

.form-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.6;
  text-align: center;
}

/* ── THANKS PAGE ──────────────────────────────────────── */

.thanks-section {
  background: var(--warm-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  text-align: center;
}

.thanks-inner { max-width: 540px; }

.thanks-icon {
  width: 64px;
  height: 64px;
  background: #eef3fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thanks-inner h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: bold;
}

.thanks-inner p { font-size: 17px; color: var(--gray); line-height: 1.75; margin-bottom: 12px; }

/* ── FOOTER ───────────────────────────────────────────── */

footer {
  background: var(--navy-deep);
  color: #8aabcc;
  padding: 44px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

footer .footer-copy { font-size: 13px; }

footer .footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: #8aabcc;
  text-decoration: none;
  font-size: 13px;
}

footer .footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .hero { padding: 80px 32px; gap: 48px; }
  .hero h1 { font-size: 42px; }
  .how-section, .why-section, .team-section,
  .cta-banner, .mission-section,
  .about-intro, .contact-section { padding: 64px 32px; }
  .footer { padding: 36px 32px; }
}

@media (max-width: 840px) {
  /* Nav */
  nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { flex-direction: column; padding: 60px 24px; gap: 40px; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .hero-desc { font-size: 16px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .stat-card { flex: 1; min-width: 120px; }

  /* How */
  .how-section, .why-section, .team-section,
  .mission-section, .about-intro { padding: 56px 24px; }
  .steps { flex-direction: column; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { flex-direction: column; padding: 56px 24px; text-align: center; gap: 28px; }
  .cta-banner p { margin: 0 auto; }

  /* About */
  .about-intro { flex-direction: column; }
  .about-aside { width: 100%; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Mission */
  .mission-pillars { flex-direction: column; gap: 32px; }

  /* Contact */
  .contact-section { flex-direction: column; padding: 56px 24px; }
  .contact-form-wrap { width: 100%; flex: none; }
  .contact-form { padding: 28px 24px; }
  .form-row { flex-direction: column; gap: 0; }
  .trust-strip { gap: 32px; padding: 36px 24px; }
  .trust-divider { display: none; }

  /* Footer */
  footer { flex-direction: column; text-align: center; padding: 36px 24px; gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  section h2, .cta-banner h2 { font-size: 26px; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: auto; }
}
