:root{
  --brand:#1a2a3c;         /* header background color */
  --ink:#111111;           /* dark text */
  --paper:#939191;         /* card/form background */
  --paper-ink:#111111;     /* text on cards */
  --on-brand:#ffffff;      /* text on brand background */
}

* { box-sizing: border-box; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  color: var(--on-brand);
  background: var(--brand);
}

header{
  background-color: var(--brand);
  color: var(--on-brand);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  /* Align header content with 960 container + 20px gutters */
  padding-block: 20px;
  padding-inline: max(20px, calc((100vw - 960px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1{
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .5px;
}
nav a{
  color: var(--on-brand);
  text-decoration: none;
  margin-left: 30px;
  font-weight: bold;
  font-size: 14px;
}

.hero {
  background: url('../images/archdaleconcrete.png') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  color: var(--on-brand);
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,.35);
  position: absolute;
  inset: 0;
}

.hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 28px;
}

.hero-left {
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

.hero-left h2{
  color: var(--brand);
  /* keeps your contrast pill */
  background: rgba(255,255,255,0.92);
  display:inline-block;
  padding: 6px 10px;
  border-radius: 6px;
}

.hero-left p.lead {
  font-size: 18px;
  margin: 0 0 12px;
}

.hero-left ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  margin: 10px 0 0;
}
.hero-left li { margin-bottom: 8px; }
.hero-left li::before { content: "• "; margin-right: 8px; }

.form-box {
  background-color: #fff;
  padding: 26px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  width: 320px;
  color: #111;
}

.form-box h3 {
  margin-top: 0;
  font-size: 18px;
  color: #111;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #111;
  background: #fff;
}

.form-box button {
  width: 100%;
  background-color: #111;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.form-box button:hover { opacity: .92; }

.form-note {
  display: none;
  margin-top: 8px;
  font-size: 13px;
}

.badges {
  max-width: 960px;
  margin: 18px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  text-align: center;
  color: #333;
}
.badge {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.badge img {
  width: 22px; height: 22px;
}

.disclaimer{
  max-width:960px;
  margin:16px auto 28px;
  padding:12px 16px;
  background: var(--brand);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:10px;
  color: var(--on-brand);
  font-size:14px;
}

.section {
  max-width: 960px;
  margin: 28px auto;
  padding: 0 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
}
.card h4 { margin: 0 0 8px; }
.card p { margin: 0; color: #444; }

footer{
  background-color: var(--brand);
  color: var(--on-brand);
  text-align:center;
  padding:20px 40px;
  font-size:14px;
  border-top:1px solid rgba(255,255,255,0.1);
}
footer a{ color:#d8deff; }
footer img { vertical-align: middle; }

/* shared blocks kept desktop-only */
.content-block{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 10px 0;
}
.content-block .text{ flex:1; min-width:260px; }
.content-image{
  max-width:100%;
  width:400px;
  border: 1px solid #e6e6e6;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.content-card{
  background: var(--paper, #3a3636);
  color: var(--paper-ink, #111);
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
  padding: 22px;
}

.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.card{ background: var(--paper, #fff); color: var(--paper-ink, #111); border: 1px solid #eee; border-radius: 10px; padding: 18px; }

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}
.btn.primary{ background: #120d0d; color: #fcfafa; border: 1px solid #eee; }
.btn.primary:hover{ opacity:.92; }

nav a.active{ text-decoration: underline; }

p.firstline { text-indent: 1.5rem; }

/* === LOCK FORM TO DESKTOP COLORS EVERYWHERE === */
html { color-scheme: light; } /* tell the OS to stop auto-darkening */

.form-box {
  background: #fff !important;
  color: #111 !important;
}
.form-box input,
.form-box select,
.form-box textarea {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #ccc !important;
}
.form-box input::placeholder,
.form-box textarea::placeholder { color: #666 !important; }

/* kill Android/Chrome autofill tint */
.form-box input:-webkit-autofill,
.form-box input:-webkit-autofill:focus,
.form-box textarea:-webkit-autofill,
.form-box select:-webkit-autofill {
  -webkit-text-fill-color: #111 !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 9999s ease 0s;
}

/* === MINIMAL MOBILE LAYOUT (NO COLOR CHANGES) === */
@media (max-width: 900px){
  html, body { overflow-x: hidden; }
  header { flex-wrap: wrap; gap: 12px; }
  nav { display:flex; flex-wrap:wrap; gap:12px; }
  nav a { margin-left: 0; }

  .hero { min-height: auto; padding: 28px 16px; }
  .hero-inner { display:flex; flex-direction:column; align-items:stretch; gap:16px; }

  .form-box { width: 100%; max-width: 420px; margin-top: 8px; padding: 20px 16px; box-shadow: 0 6px 18px rgba(0,0,0,.22); }

  .hero-left h2 { font-size: clamp(22px, 6.5vw, 34px); line-height: 1.25; }
  .hero-left p.lead, .hero-left ul { font-size: clamp(14px, 3.8vw, 18px); }

  .grid-3, .badges { grid-template-columns: 1fr; }
  footer { padding: 16px; }
}

/* === MINIMAL MOBILE LAYOUT FIXES === */
@media (max-width: 900px){
  .hero { 
    flex-direction: column;   /* stack instead of side by side */
    align-items: stretch;
    padding: 28px 16px;
    min-height: auto;
  }
  .hero-inner { flex-direction: column; gap: 16px; }
  .form-box {
    width: 100%;
    max-width: 420px;
    margin-top: 16px;
  }
  .grid-3,
  .badges { grid-template-columns: 1fr; }
  footer { padding: 16px; }
}

@media (max-width: 480px){
  .form-box { padding: 18px 14px; }
  .hero-left h2 { font-size: 28px; line-height: 1.25; }
  .hero-left p.lead, .hero-left ul { font-size: 16px; }
}


