/* ============================================================
   NMS — Nationwide Marketing Solutions
   Static site stylesheet v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=EB+Garamond:wght@400;500&family=Raleway:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.8;
  color: #111;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ── */
header {
  padding: 30px 40px 0;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.logo-wrap {
  display: block;
  width: 100%;
  margin-bottom: 22px;
}
.logo-wrap img {
  display: block;
  width: 92%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

/* ── Horizontal Nav ── */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid #ddd;
  padding: 0;
}
.main-nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #222;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid #ddd;
}
.main-nav a:first-child { border-left: none; }
.main-nav a:last-child { border-right: none; }
.main-nav a:hover { background: #111; color: #fff; }
.main-nav a.active { background: #111; color: #fff; }

/* ── Typography ── */
.heading-tracked {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
}
.heading-bold {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #111;
}

/* ── Page sections ── */
.section {
  padding: 64px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section p {
  color: #333;
  margin-top: 16px;
  font-size: 1.05rem;
}
.hero-heading {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.18em;
}

/* ── Full-width image strips ── */
.img-strip {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ── CTA Button ── */
.cta-btn {
  display: block;
  border: 2px solid #111;
  padding: 20px 40px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover { background: #111; color: #fff; }

/* ── Content blocks ── */
.content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px;
}
.content-block h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: #111;
  letter-spacing: 0.04em;
}
.content-block p {
  color: #333;
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1.05rem;
}

/* ── Forms ── */
.form-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 70px;
}
.form-wrap input,
.form-wrap textarea {
  display: block;
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 0;
  padding: 17px 20px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: #333;
  background: #fff;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-wrap input[type="checkbox"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  cursor: pointer;
}
.form-wrap input:focus,
.form-wrap textarea:focus { border-color: #555; }
.form-wrap textarea { min-height: 170px; resize: vertical; }
.form-wrap input::placeholder,
.form-wrap textarea::placeholder { color: #999; }

.btn-submit {
  display: block;
  width: 100%;
  border: 2px solid #111;
  padding: 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-submit:hover { background: #111; color: #fff; }

.recaptcha-note {
  text-align: center;
  font-size: 0.82rem;
  color: #777;
  margin-top: 18px;
}

/* ── Contact info block ── */
.contact-info {
  text-align: center;
  padding: 50px 24px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}
.contact-info p { color: #333; font-size: 1rem; }
.hours-table {
  margin: 22px auto;
  text-align: left;
  font-size: 1rem;
  color: #333;
  display: inline-block;
}
.hours-table tr td:first-child {
  padding-right: 24px;
  font-weight: 500;
  color: #111;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #ccc;
  text-align: center;
  padding: 44px 20px 34px;
  background: #fff;
}
footer .copyright {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333;
}
footer nav a {
  color: #333;
  padding: 4px 18px;
  border-right: 1px solid #ccc;
}
footer nav a:last-child { border-right: none; }
footer nav a:hover { color: #000; text-decoration: underline; }

/* ── Divider ── */
hr.light { border: none; border-top: 1px solid #ddd; margin: 0; }

/* ── Privacy policy page ── */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 24px 90px;
}
.policy-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
}
.policy-content .last-updated {
  text-align: center;
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 44px;
}
.policy-content h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 36px 0 12px;
  color: #111;
}
.policy-content p, .policy-content li {
  color: #333;
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 14px;
}
.policy-content ul {
  padding-left: 26px;
  margin-bottom: 14px;
}
.policy-content .sms-box {
  border: 2px solid #111;
  padding: 22px 28px;
  margin: 28px 0;
  background: #f9f9f9;
}
.policy-content .sms-box p {
  font-weight: 500;
  color: #111;
}

/* ── Page heading section ── */
.page-heading {
  padding: 60px 24px 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-heading h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.65rem;
  color: #111;
  margin-bottom: 14px;
}
.page-heading p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #333;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .logo-wrap img { height: 90px; }
  .main-nav a { padding: 12px 16px; font-size: 0.7rem; letter-spacing: 0.12em; }
  .section { padding: 44px 16px; }
  .content-block { padding: 36px 16px; }
  .img-strip { max-height: 280px; }
  .hero-heading { font-size: 1.2rem; }
}
