/* Great Bay Development — Bold Contractor, navy palette */

:root {
  --cream: #f4f7fb;
  --cream-deep: #e6edf5;
  --ink: #1a2540;
  --ink-2: #2c3e63;
  --ink-3: #5b6e8a;
  --rule: #c7d2e0;
  --navy: #2c4d85;
  --navy-deep: #1a2540;
  --navy-darker: #0e1729;
  --terra: #3a6cb0;
  --terra-deep: #2d5495;
  --terra-light: #a8c1de;
  --white: #ffffff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--terra-deep); }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Oswald', system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-weight: 900; font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.005em; }
h2 { font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 0; }
h3 { font-weight: 700; font-size: 1.5rem; letter-spacing: 0.01em; }
h4 { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule-thick { height: 4px; background: var(--ink); border: 0; margin: 0; }

/* ===== Top utility bar ===== */
.utility {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.utility .container { display: flex; justify-content: space-between; align-items: center; }
.utility a { color: var(--cream); text-decoration: none; }
.utility a:hover { color: var(--terra-light); }
.utility .right { display: flex; gap: 24px; }
.utility .right a strong { color: var(--terra-light); font-weight: 800; }

/* ===== Site header ===== */
.site-header {
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
  padding: 18px 0;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 170px; width: auto; display: block;
}
.nav {
  display: flex; align-items: center; gap: 44px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.35rem;
}
.nav a {
  color: var(--ink); text-decoration: none;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav a:hover { color: var(--terra-deep); border-bottom-color: var(--terra); text-decoration: none; }
.nav .phone {
  background: var(--terra);
  color: var(--white) !important;
  padding: 18px 30px;
  border: 3px solid var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}
.nav .phone:hover { background: var(--ink); border-color: var(--ink); border-bottom-color: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 18px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  text-decoration: none;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.btn-primary { background: var(--terra); border-color: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--white); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); text-decoration: none; }
.btn-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--navy-deep); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
}
.hero::after {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 460px; height: 460px;
  background: var(--terra);
  transform: rotate(45deg);
  opacity: 0.12;
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.hero-center { text-align: center; }
.hero-center .container { max-width: 920px; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-center .hero-ctas { justify-content: center; }
.hero .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra-light);
  margin: 0 0 18px;
  font-size: 0.95rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 24px;
}
.hero h1 .accent { color: var(--terra-light); display: block; }
.hero-sub {
  font-size: 1.2rem;
  color: #d6e2eb;
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== "NOS" big block ===== */
.nos {
  background: var(--cream-deep);
  padding: 72px 0;
  border-bottom: 4px solid var(--ink);
  text-align: center;
}
.nos h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  margin: 0;
  line-height: 1;
  color: var(--ink);
}
.nos h2 .accent { color: var(--terra-deep); }
.nos p { font-size: 1.15rem; color: var(--ink-2); margin: 18px 0 0; }

/* ===== Sections ===== */
section { padding: 80px 0; }
section.compact { padding: 56px 0; }
section.deep { background: var(--cream-deep); }
section.dark { background: var(--navy-deep); color: var(--white); }
section.ink { background: var(--ink); color: var(--cream); }

.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 4px solid var(--ink);
  flex-wrap: wrap; gap: 12px;
}
.section-head .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--terra-deep);
}
section.dark .section-head, section.ink .section-head { border-bottom-color: var(--terra); }
section.dark .section-head h2, section.ink .section-head h2 { color: var(--white); }
section.dark .section-head .tag, section.ink .section-head .tag { color: var(--terra-light); }

.section-intro { max-width: 760px; margin: 0 0 36px; color: var(--ink-2); font-size: 1.1rem; }
section.dark .section-intro, section.ink .section-intro { color: #d6e2eb; }

/* ===== Process steps (3-up) ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.steps .step {
  padding: 32px 28px;
  border-right: 2px solid var(--ink);
}
.steps .step:last-child { border-right: 0; padding-right: 0; }
.steps .step + .step { padding-left: 28px; }
.steps .step .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--terra-deep);
  margin-bottom: 12px;
}
section.dark .steps .step, section.ink .steps .step { border-right-color: rgba(255,255,255,0.2); }
section.dark .steps .step .n, section.ink .steps .step .n { color: var(--terra-light); }
.steps .step h3 { font-size: 1.5rem; margin: 0 0 10px; color: var(--ink); }
section.dark .steps .step h3, section.ink .steps .step h3 { color: var(--white); }
.steps .step p { margin: 0; color: var(--ink-2); }
section.dark .steps .step p, section.ink .steps .step p { color: #d6e2eb; }

/* ===== Why / 4-up promises ===== */
.promises {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.promises .p {
  padding: 32px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
  transition: box-shadow 0.15s, transform 0.05s;
}
.promises .p:hover { box-shadow: 0 6px 18px rgba(26, 37, 64, 0.08); }
.promises .p .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 12px;
}
.promises .p h3 { font-size: 1.5rem; margin: 0 0 10px; }
.promises .p p { color: var(--ink-2); margin: 0; font-size: 1rem; }

/* ===== Comparison table ===== */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
}
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare thead th {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 0;
}
.compare thead th.us { background: var(--terra); color: var(--white); }
.compare tbody th {
  background: var(--cream-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--ink);
  width: 28%;
}
.compare tbody td { color: var(--ink-2); width: 36%; }
.compare tbody td.us {
  color: var(--ink);
  font-weight: 600;
  background: rgba(58, 108, 176, 0.08);
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* ===== Options for selling ===== */
.options {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.options .opt {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
  transition: box-shadow 0.15s;
}
.options .opt:hover { box-shadow: 0 6px 18px rgba(26, 37, 64, 0.08); }
.options .opt .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.options .opt h3 { font-size: 1.5rem; margin: 0 0 12px; }
.options .opt p { color: var(--ink-2); margin: 0 0 12px; font-size: 0.98rem; }
.options .opt.us { border-top: 4px solid var(--terra); padding-top: 28px; }
.options .opt.us .tag { color: var(--terra-deep); }

/* ===== Areas (grid of city links) ===== */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.areas a {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
  color: var(--ink);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.12s, color 0.12s, box-shadow 0.15s, transform 0.05s;
}
.areas a:hover { background: var(--terra); color: var(--white); border-color: var(--terra); box-shadow: 0 6px 18px rgba(58, 108, 176, 0.2); }
.areas a .county {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.areas a:hover .county { color: var(--white); opacity: 0.85; }

/* ===== Situations ===== */
.situations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.situations a {
  background: var(--white);
  padding: 28px 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.05s;
}
.situations a:hover { box-shadow: 0 6px 18px rgba(26, 37, 64, 0.08); }
.situations .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.situations .title::after {
  content: "→";
  color: var(--terra-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: transform 0.15s;
}
.situations a:hover .title::after { transform: translateX(4px); }
.situations .desc { color: var(--ink-2); margin: 0; font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  padding: 22px 50px 22px 28px;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--terra-deep);
}
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 28px 22px; color: var(--ink-2); font-size: 1rem; max-width: 760px; }

/* ===== Lead section (dark band with white form card) ===== */
.lead {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
  border-top: 4px solid var(--terra);
  border-bottom: 4px solid var(--terra);
}
.lead .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.lead .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  color: var(--terra-light);
  margin: 0 0 16px;
}
.lead h2 { color: var(--white); font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin: 0 0 16px; line-height: 0.95; }
.lead .lead-sub { color: #d6e2eb; font-size: 1.2rem; margin: 0 0 32px; }

/* Prominent phone callout in lead section */
.lead-call {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--terra);
  padding: 24px 28px;
  margin-bottom: 0;
}
.lead-call .or {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--terra-light);
  margin: 0 0 8px;
}
.lead-call a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 6px;
}
.lead-call a:hover { color: var(--terra-light); }
.lead-call .note {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #b8c5d1;
  margin: 0;
}

/* ===== Lead form card (polished, not Craigslist) ===== */
.form {
  background: var(--cream);
  border: 0;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  color: var(--ink);
  display: block;
}
.form .form-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  color: var(--terra-deep);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rule);
  text-align: center;
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row-split .form-row { margin-bottom: 18px; }
.form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.form label .req { color: var(--terra-deep); margin-left: 2px; }
.form input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.form input::placeholder { color: var(--ink-3); font-weight: 400; opacity: 0.55; }
.form input:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(58, 108, 176, 0.18);
}
.form button {
  width: 100%;
  padding: 20px 32px;
  background: var(--terra);
  color: var(--white);
  border: 0;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.12s;
  box-shadow: 0 3px 0 var(--terra-deep);
}
.form button:hover { background: var(--terra-deep); box-shadow: 0 2px 0 var(--terra-deep); transform: translateY(1px); }
.form .fine {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  color: var(--ink-3);
  margin: 16px 0 0;
  text-align: center;
}

/* ===== Page intro (interior pages) ===== */
.page-intro {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 48px;
  border-bottom: 4px solid var(--ink);
}
.page-intro .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--terra-light);
  margin: 0 0 14px;
}
.page-intro h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.4rem); margin: 0 0 16px; line-height: 0.95; }
.page-intro p { font-size: 1.15rem; color: #d6e2eb; max-width: 720px; margin: 0; }

/* ===== Article body (interior pages) ===== */
.article { display: grid; grid-template-columns: 1.6fr 0.7fr; gap: 56px; align-items: start; }
.article-body { max-width: 720px; font-size: 1.08rem; color: var(--ink); }
.article-body h2 {
  font-size: 1.9rem;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.article-body p { margin-bottom: 1.1em; color: var(--ink); }
.article-body ul li { margin-bottom: 8px; }

.article-side {
  position: sticky; top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
}
.article-side h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--terra-deep);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.article-side h4:not(:first-child) { margin-top: 28px; }
.article-side ul { list-style: none; padding: 0; margin: 0; }
.article-side li { padding: 8px 0; border-bottom: 1px solid var(--rule); }
.article-side li:last-child { border-bottom: 0; }
.article-side li a {
  color: var(--ink); text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}
.article-side li a:hover { color: var(--terra-deep); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 28px;
  border-top: 4px solid var(--terra);
}
.site-footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: var(--terra-light);
  margin: 0 0 16px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid p, .footer-grid a { color: #c8c2b3; font-size: 0.95rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--terra-light); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.005em;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer-brand .dot { color: var(--terra); }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: #8a99ad;
}
.footer-bottom a { color: #c8c2b3; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .promises, .situations, .areas { grid-template-columns: 1fr 1fr; }
  .article { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .lead .grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .steps .step { border-right: 0; border-bottom: 2px solid var(--ink); padding: 28px 0 !important; }
  .steps .step:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 56px 0; }
  .container { padding: 0 22px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-top: 2px solid var(--ink); border-bottom: 4px solid var(--ink);
    padding: 20px 24px;
    z-index: 50;
    gap: 14px;
  }
  .nav-toggle { display: block; }
  .site-header .container { position: relative; padding-top: 8px; padding-bottom: 8px; }
  .logo-img { height: 110px; }
}
@media (max-width: 600px) {
  .promises, .options, .situations, .areas { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
  .compare th, .compare td { padding: 12px 14px; font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .utility { font-size: 0.78rem; }
  .utility .container { gap: 12px; }
  .utility .right { gap: 12px; }
  .logo-img { height: 84px; }
  .form { padding: 24px; }
  .lead { padding: 56px 0; }
}

/* ===== Team headshot cards (About page) ===== */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 48px;
}
.team .member {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(26, 37, 64, 0.04);
}
.team .photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center top;
  background-color: var(--cream-deep);
}
.team .info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.team .info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.9rem;
  letter-spacing: 0.005em;
  margin: 0 0 4px;
  color: var(--ink);
}
.team .info .role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--terra-deep);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rule);
}
.team .info dl { margin: 0; }
.team .info dt {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 14px;
}
.team .info dt:first-child { margin-top: 0; }
.team .info dd {
  margin: 4px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.team .info dd a { color: var(--terra-deep); text-decoration: none; }
.team .info dd a:hover { color: var(--terra); text-decoration: underline; }
@media (max-width: 800px) {
  .team { grid-template-columns: 1fr; }
  .team .member { border-right: 0; border-bottom: 2px solid var(--ink); }
  .team .member:last-child { border-bottom: 0; }
}

/* options-symmetric: skip awkward 2+1 layout, jump straight from 3-col to 1-col */
@media (max-width: 900px) {
  .options { grid-template-columns: 1fr !important; }
}
/* options-symmetric */

/* Article full-width variant (no sidebar) */
.article-full { grid-template-columns: 1fr !important; max-width: 900px; margin: 0 auto; }
.article-full .article-body { max-width: 100%; }
