/* Bell Mobile Homes */

:root {
  --navy: #17324f;
  --navy-dark: #10243a;
  --orange: #e8930c;
  --orange-dark: #c97c05;
  --paper: #faf8f4;
  --ink: #2b3540;
  --muted: #5c6a77;
  --line: #e3ddd2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.3rem; margin: 0 0 0.6rem; }
h2 { font-size: 1.6rem; margin: 2.2rem 0 0.6rem; }
h3 { font-size: 1.15rem; margin: 1.4rem 0 0.4rem; }

p { margin: 0 0 1rem; }

a { color: var(--navy); }
a:hover { color: var(--orange-dark); }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */

.site-header {
  background: #fff;
  border-bottom: 3px solid var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { height: 74px; width: auto; display: block; }

.header-phone {
  text-align: right;
  line-height: 1.3;
}

.header-phone .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.header-phone a {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.header-phone a:hover { color: var(--orange-dark); }

/* Nav */

.site-nav {
  background: var(--navy);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 11px 16px;
  color: #f2ede4;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover { background: var(--navy-dark); color: #fff; }
.site-nav a.current { background: var(--navy-dark); color: var(--orange); }

/* Hero */

.hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--line);
}

.hero h1 { max-width: 620px; }

.hero .lede {
  font-size: 1.15rem;
  max-width: 560px;
  color: var(--ink);
}

.hero .small-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 4px;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
}

.btn:hover { background: var(--orange-dark); color: #fff; }

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 24px;
}

.btn.secondary:hover { background: var(--navy); color: #fff; }

.cta-row { margin-top: 1.4rem; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Sections */

.section { padding: 40px 0; }

.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Steps */

.steps { list-style: none; margin: 1.5rem 0 0; padding: 0; max-width: 640px; }

.steps li {
  position: relative;
  padding: 0 0 1.6rem 58px;
}

.steps .num {
  position: absolute;
  left: 0; top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 { margin: 0 0 0.3rem; }
.steps p { margin: 0; color: var(--ink); }

/* Checklist */

.checklist { list-style: none; padding: 0; margin: 1rem 0; max-width: 620px; }

.checklist li {
  padding: 7px 0 7px 30px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 2px; top: 15px;
  width: 12px; height: 7px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

/* Callout */

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 18px 22px;
  margin: 1.6rem 0;
  max-width: 640px;
}

.callout p { margin: 0; }

/* Contact */

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-grid > div { flex: 1 1 320px; }

.phone-big {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem 0;
}

.phone-big:hover { color: var(--orange-dark); }

form label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 14px 0 4px;
  color: var(--navy);
}

form input, form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #c9c2b4;
  border-radius: 3px;
  background: #fff;
}

form input:focus, form textarea:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}

form button { margin-top: 18px; }

/* Footer */

.site-footer {
  margin-top: 48px;
  background: var(--navy);
  color: #cfd8e0;
  padding: 28px 0;
  font-size: 0.92rem;
}

.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* Small screens */

@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }
  .hero { padding: 36px 0 32px; }
  .brand img { height: 58px; }
  .header-inner { justify-content: center; text-align: center; }
  .header-phone { text-align: center; }
}


/* Photo hero */

.hero.with-photo {
  background:
    linear-gradient(rgba(16, 32, 51, 0.72), rgba(16, 32, 51, 0.55)),
    url("/assets/photo-hero.jpg") center 60% / cover no-repeat;
  border-bottom: 4px solid var(--orange);
  padding: 84px 0 76px;
}

.hero.with-photo h1 { color: #fff; }
.hero.with-photo .lede { color: #eef1f4; }
.hero.with-photo .small-note { color: #c9d3dc; }

/* Section photos */

.photo-block { margin: 1.8rem 0; max-width: 720px; }

.photo-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.photo-block .caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
