/* ==========================================================================
   Ferrous Development Partners — Stylesheet
   ========================================================================== */

:root {
  --charcoal: #17181a;
  --charcoal-soft: #202226;
  --steel: #3d4148;
  --steel-light: #6b7078;
  --off-white: #f4f2ee;
  --paper: #ffffff;
  --rust: #b3502a;
  --rust-light: #d97a4d;
  --logo-accent: #ec3013;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(23, 24, 26, 0.12);
  --max-width: 1180px;
  --serif: "Helvetica Neue", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--steel);
  font-size: 17px;
}

section { padding: 100px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--rust);
  color: var(--off-white);
}
.btn-primary:hover { background: var(--rust-light); }

.btn-outline {
  border-color: rgba(244, 242, 238, 0.4);
  color: var(--off-white);
}
.btn-outline:hover { border-color: var(--off-white); background: rgba(244,242,238,0.08); }

.btn-outline-dark {
  border-color: var(--line-dark);
  color: var(--charcoal);
}
.btn-outline-dark:hover { border-color: var(--charcoal); background: rgba(23,24,26,0.04); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(23, 24, 26, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.logo:hover {
  border-color: rgba(244, 242, 238, 0.45);
  background: rgba(244, 242, 238, 0.08);
}

.logo span {
  color: var(--logo-accent);
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(244, 242, 238, 0.82);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--off-white); }

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--off-white);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(23,24,26,0.55) 0%, rgba(23,24,26,0.55) 40%, rgba(17,18,20,0.96) 100%), url('../images/radd-construction.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 90px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: var(--off-white);
}

.hero-content .eyebrow {
  color: var(--rust-light);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .hero-content .eyebrow { font-size: 14px; }
}

.hero-content h1 {
  font-size: clamp(38px, 6vw, 68px);
  max-width: 780px;
  color: var(--off-white);
  margin-bottom: 22px;
}

.hero-content .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 560px;
  color: rgba(244, 242, 238, 0.82);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 2px solid rgba(244, 242, 238, 0.32);
  padding-top: 48px;
  text-align: center;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  border-left: 1px solid var(--line);
}

.hero-stats .stat:first-child { border-left: none; }

.hero-stats .stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-variant-numeric: tabular-nums;
  color: var(--off-white);
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-stats .stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(244, 242, 238, 0.65);
  white-space: nowrap;
}

/* ---------- About / Overview ---------- */

.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy p {
  color: var(--steel);
  font-size: 16px;
  margin-bottom: 18px;
}

.about-copy-full {
  max-width: 760px;
}

.about-copy-wide {
  max-width: 100%;
}

.about-tight {
  padding-bottom: 40px;
}

.about-image {
  margin-top: 56px;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .about-image img { height: 280px; }
}

.markets {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.market-pill {
  border: 1px solid var(--line-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-item:first-child { padding-top: 0; }

.service-item .num {
  font-family: var(--serif);
  color: var(--rust);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-item p {
  color: var(--steel);
  font-size: 15px;
}

/* ---------- Partners ---------- */

.partners { background: var(--charcoal-soft); color: var(--off-white); }

.partners .section-head p { color: rgba(244,242,238,0.7); }
.partners .section-head .eyebrow { color: var(--rust-light); }

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 938px;
  gap: 48px;
}

.partner-card {
  background: rgba(244, 242, 238, 0.04);
  border: 1px solid var(--line);
  padding: 40px;
}

.partner-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 50px;
}

.partner-photo img { width: 100%; height: 100%; object-fit: cover; }

.partner-card h3 {
  font-size: 24px;
  margin-bottom: 2px;
  color: var(--off-white);
}

.partner-title {
  color: var(--rust-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.partner-card p {
  color: rgba(244, 242, 238, 0.75);
  font-size: 15px;
  margin-bottom: 14px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.partner-tags span {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 14px;
  color: rgba(244,242,238,0.8);
  cursor: default;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.partner-tags span:hover {
  background: var(--rust-light);
  border-color: var(--rust-light);
  color: var(--charcoal);
}

.partner-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.partner-contact a { color: var(--rust-light); font-weight: 600; }
.partner-contact a:hover { color: var(--off-white); }
.partner-contact .dot { color: rgba(244,242,238,0.3); }

.contact-list a { color: var(--rust-light); }
.contact-list a:hover { color: var(--off-white); }

.icon-link { display: inline-flex; align-items: center; gap: 7px; }
.icon-link .icon { width: 15px; height: 15px; flex-shrink: 0; }
.contact-list .value.icon-link { color: var(--off-white); }

.placeholder-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(244, 242, 238, 0.45);
  font-style: italic;
}

.markets-served-home { margin-top: 28px; }
.markets-served-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 14px;
}
.markets-served-list {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2;
  color: var(--charcoal);
}
.markets-served-list .msep {
  color: var(--rust);
  margin: 0 12px;
}
@media (max-width: 700px) {
  .markets-served-list { font-size: 15px; line-height: 2.2; }
  .markets-served-list .msep { margin: 0 8px; }
}

/* ---------- Portfolio ---------- */

.portfolio { background: var(--off-white); }

.flagship {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  color: var(--off-white);
  margin-bottom: 20px;
}

.flagship-img { position: relative; min-height: 420px; }
.flagship-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.flagship-copy {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flagship-copy .eyebrow { color: var(--rust-light); }

.flagship-copy h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--off-white);
  margin-bottom: 14px;
}

.flagship-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.flagship-meta div {
  font-size: 13px;
  color: rgba(244,242,238,0.6);
}
.flagship-meta strong {
  display: block;
  color: var(--off-white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.flagship-copy p { color: rgba(244,242,238,0.78); font-size: 15px; margin-bottom: 14px; }

.roles-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.roles-split h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rust-light);
  margin-bottom: 6px;
}
.roles-split p { font-size: 14px; margin-bottom: 0; }

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--rust); }
.filter-btn.active { background: var(--charcoal); color: var(--off-white); border-color: var(--charcoal); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23,24,26,0.1);
}

.project-img { aspect-ratio: 4/3; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-img.placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, var(--steel) 0 14px, var(--steel-light) 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.project-img.placeholder span {
  color: var(--off-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}
.project-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
  display: block;
}

.project-body { padding: 22px; }

.project-body .loc {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 6px;
}

.project-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.project-body p {
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 10px;
}

.project-budget {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1px solid var(--line-dark);
  padding-top: 10px;
  margin-top: 10px;
}

/* ---------- CTA / Contact ---------- */

.contact {
  background: var(--charcoal);
  color: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact h2 { color: var(--off-white); }
.contact .section-head p { color: rgba(244,242,238,0.7); }

.contact-intro { max-width: 560px; margin-bottom: 40px; }
.contact-intro p { color: rgba(244,242,238,0.75); margin-top: 14px; font-size: 16px; line-height: 1.6; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 560px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card .icon-link {
  color: var(--off-white);
  font-size: 15px;
  transition: color 0.2s ease;
}
.contact-card .icon-link .icon { color: var(--rust-light); }
.contact-card .icon-link:hover { color: var(--rust-light); }

@media (max-width: 700px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-list {
  list-style: none;
  margin-top: 8px;
}

.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.contact-list .label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.5);
}

.contact-list .value {
  font-family: var(--serif);
  font-size: 18px;
}

.contact-form {
  background: rgba(244,242,238,0.04);
  border: 1px solid var(--line);
  padding: 40px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.6);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(244,242,238,0.06);
  border: 1px solid var(--line);
  color: var(--off-white);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 2px;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rust);
}

.form-row textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(244,242,238,0.5);
  font-size: 13px;
}

.footer-row .logo { font-size: 16px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid,
  .partner-grid,
  .contact-grid,
  .roles-split { grid-template-columns: 1fr; }

  .flagship { grid-template-columns: 1fr; }
  .flagship-img { min-height: 280px; }

  .project-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

@media (max-width: 700px) {
  section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(23, 24, 26, 0.98);
    padding: 8px 32px 24px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }
  .project-grid { grid-template-columns: 1fr; }
  .flagship-copy { padding: 32px; }
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 110px; padding-bottom: 56px; }
  .hero-stats .stat-label { white-space: normal; }
  .hero-stats .stat-num { font-size: 26px; }
  .logo img { height: 22px; }
  .about-tight { padding-bottom: 20px; }
  .explore { padding-top: 20px; }
}

/* ---------- Nav active state ---------- */
.nav-links a.active { color: var(--rust-light); }

/* ---------- Brand mark / definition ---------- */
.brand-mark {
  background: var(--charcoal-soft);
  color: var(--off-white);
  text-align: center;
}
.brand-logo-wrap {
  padding: 40px 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.brand-definition { max-width: 760px; margin: 0 auto; }
.brand-definition .word {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: rgba(244, 242, 238, 0.55);
  margin-bottom: 8px;
}
.brand-definition .phon {
  color: var(--rust-light);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.brand-definition .def {
  font-size: 19px;
  margin-bottom: 16px;
  color: rgba(244, 242, 238, 0.92);
}
.brand-definition .def-extended {
  font-size: 16px;
  color: rgba(244, 242, 238, 0.72);
}
.brand-definition .founded-note {
  font-size: 18px;
  color: var(--rust-light);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 242, 238, 0.15);
}

/* ---------- Home explore grid ---------- */
.explore { background: var(--off-white); padding-top: 40px; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.explore-card {
  background: var(--rust);
  border: 1px solid var(--rust);
  padding: 32px 28px;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23,24,26,0.14);
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.explore-card .num {
  font-family: var(--serif);
  color: var(--off-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
  transition: color 0.2s ease;
}
.explore-card:hover .num { color: var(--rust-light); }
.explore-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--off-white); transition: color 0.2s ease; }
.explore-card:hover h3 { color: var(--off-white); }
.explore-card p { color: rgba(244,242,238,0.85); font-size: 14px; margin-bottom: 18px; transition: color 0.2s ease; }
.explore-card:hover p { color: rgba(244,242,238,0.7); }
.explore-card .link { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal); transition: color 0.2s ease; }
.explore-card:hover .link { color: var(--off-white); }

@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .explore-grid { grid-template-columns: 1fr; } }

/* ---------- Services deep-dive page ---------- */
.service-category { margin-bottom: 80px; }
.service-category:last-child { margin-bottom: 0; }
.service-category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 2px solid var(--charcoal);
  padding-bottom: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.service-category-head h2 { margin-bottom: 0; }
.service-category-head p { color: var(--steel); font-size: 15px; max-width: 420px; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-detail-card {
  border: 1px solid var(--line-dark);
  padding: 32px;
}
.service-detail-card .num {
  font-family: var(--serif);
  color: var(--rust);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.service-detail-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-detail-card p { color: var(--steel); font-size: 15px; }
@media (max-width: 700px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* ---------- Education list ---------- */
.education-list { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.education-list .label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.5);
  margin-bottom: 10px;
  display: block;
}
.education-list ul { list-style: none; }
.education-list li {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--off-white);
  padding: 6px 0;
}

/* ---------- Services page v2 ---------- */
.services-v2 { background: var(--off-white); }
.services-title { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 12px; }
.services-lede { color: var(--steel); font-size: 17px; max-width: 760px; margin-bottom: 0; }

.service-photo-band {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
}

.service-category-v2 { margin-bottom: 8px; }
.service-category-head-v2 {
  border-bottom: 3px solid var(--rust);
  padding-bottom: 20px;
  margin-bottom: 32px;
}
.service-category-head-v2 h2 { margin-bottom: 10px; }
.service-category-head-v2 p { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 680px; }

.gc-license-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--rust);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.gc-license-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--off-white); flex-shrink: 0; }
.gc-license-badge .label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--off-white); }
.gc-license-badge .status { font-size: 13px; color: rgba(244,242,238,0.85); margin-left: 8px; }

.service-block {
  background: var(--paper);
  border-left: 4px solid var(--rust);
  padding: 34px 34px 30px;
  margin-bottom: 20px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.service-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--off-white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-block h3 { font-size: 20px; margin-bottom: 0; text-transform: none; }
.service-block > p { color: var(--steel); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.rust-emphasis { color: var(--rust); font-weight: 700; }

.service-bullets { list-style: none; }
.service-bullets li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 12px;
}
.service-bullets li:last-child { margin-bottom: 0; }
.service-bullets li::before {
  content: "\25A0";
  color: var(--rust);
  font-size: 12px;
  line-height: 1.9;
  flex-shrink: 0;
}

.clients-served {
  background: var(--rust);
  padding: 48px 32px;
  text-align: center;
  margin: 56px 0 24px;
}
.clients-served-title {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: var(--off-white);
  margin-bottom: 22px;
}
.chip-rows { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  background: var(--off-white);
  color: var(--rust);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 20px;
  cursor: default;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.chip:hover { background: var(--charcoal); color: var(--off-white); }

.workout-support {
  border: 1px solid var(--rust);
  padding: 36px;
}
.workout-support h3 {
  font-size: 19px;
  margin-bottom: 14px;
}
.workout-support p { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 720px; margin-bottom: 0; }

@media (max-width: 700px) {
  .service-photo-band { height: 280px; }
  .service-block { padding: 26px 22px 24px; }
  .service-block > p { font-size: 16px; }
  .clients-served { padding: 36px 20px; margin-top: 40px; }
  .workout-support { padding: 26px; }
}

/* ---------- Draft content flag ---------- */
.draft-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid var(--rust);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 24px;
}
