/* ============================================================
   PAGES — interior page banners, prose, detail rows, forms
   ============================================================ */

/* active nav state */
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }
.nav-links .btn.btn-gold.active { background: #ad7c2a; }

/* ---------- Page banner (interior hero) ---------- */
.page-banner {
  background:
    linear-gradient(180deg, rgba(16,31,60,.92), rgba(16,31,60,.92)),
    url("../assets/hero-skyline.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 9vw, 104px);
}
.page-banner .eyebrow { color: var(--gold-soft); }
.page-banner h1 {
  color: #fff; font-size: clamp(34px, 5vw, 56px); margin-top: 16px; line-height: 1.1;
}
.page-banner .rule { width: 64px; height: 3px; background: var(--gold); margin: 24px auto 0; }
.page-banner p {
  color: rgba(255,255,255,.82); font-size: 18px; max-width: 600px;
  margin: 22px auto 0; line-height: 1.6;
}

/* breadcrumb */
.crumb {
  font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.6);
  display: flex; gap: 8px; justify-content: center; margin-bottom: 26px;
}
.crumb a { color: rgba(255,255,255,.6); transition: color .2s ease; }
.crumb a:hover { color: var(--gold-soft); }

/* ---------- Generic prose / two-column ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 17px; margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.narrow { grid-template-columns: 1.1fr .9fr; }
.split h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 16px 0 22px; }
.split p { font-size: 16.5px; margin-bottom: 18px; }
.split .rule { width: 56px; height: 3px; background: var(--gold); margin: 0 0 24px; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); color: var(--navy); font-weight: 700; }
.stat .lbl { font-size: 14px; letter-spacing: .04em; color: var(--body); margin-top: 6px; }

/* values grid */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value {
  background: #fff; border: 1px solid var(--line); padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -28px rgba(22,41,76,.4); border-color: #d8cdb8; }
.value .ico { width: 46px; height: 46px; color: var(--navy); margin-bottom: 18px; }
.value .ico svg { width: 100%; height: 100%; }
.value h3 { font-size: 20px; margin-bottom: 12px; }
.value p { font-size: 15px; line-height: 1.6; }

/* alternating section bg */
.bg-warm { background: var(--bg-warm); }

/* ---------- Practice detail rows ---------- */
.practice-row {
  display: grid; grid-template-columns: 88px 1fr; gap: 32px;
  padding: clamp(36px, 5vw, 56px) 0; border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.practice-row:last-child { border-bottom: 0; }
.practice-row .big-ico {
  width: 72px; height: 72px; color: var(--navy);
  border: 1px solid var(--line); background: #fff; display: grid; place-items: center;
}
.practice-row .big-ico svg { width: 42px; height: 42px; }
.practice-row h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 8px; }
.practice-row .lead { color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: .03em; margin-bottom: 16px; text-transform: uppercase; }
.practice-row p { font-size: 16.5px; max-width: 640px; margin-bottom: 20px; }
.practice-row ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 640px; }
.practice-row li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.practice-row li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }

/* ---------- Contact split ---------- */
.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 72px); }
.contact-info h2 { font-size: clamp(26px, 3vw, 34px); margin: 14px 0 20px; }
.contact-info > p { font-size: 16.5px; margin-bottom: 32px; max-width: 380px; }
.info-list { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item .ic {
  width: 46px; height: 46px; flex: none; background: var(--navy); color: #fff;
  display: grid; place-items: center;
}
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px; }
.info-item p, .info-item a { font-size: 16px; color: var(--body); line-height: 1.5; }
.info-item a:hover { color: var(--gold); }

/* hours card */
.hours { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 26px; }
.hours h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; max-width: 320px; font-size: 15px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.hours-row span:last-child { color: var(--ink); font-weight: 600; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 60px -40px rgba(22,41,76,.45);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .sub { font-size: 15px; margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,139,51,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; text-align: center; margin-top: 16px; color: var(--body); }

/* success message */
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(31,138,91,.12); color: #1f8a5b; display: grid; place-items: center;
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 10px; }

/* consultation steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; }
.step .n {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--serif); font-size: 22px; font-weight: 600;
  display: grid; place-items: center;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.6; }

/* ---------- Responsive for pages ---------- */
@media (max-width: 920px) {
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .split.narrow { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; max-width: 420px; margin: 0 auto; }
  .contact-info > p { max-width: none; }
}
@media (max-width: 620px) {
  .practice-row { grid-template-columns: 1fr; gap: 20px; }
  .practice-row ul { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
