:root {
  --black: #0b0a08;
  --charcoal: #11100d;
  --charcoal-soft: #171510;
  --espresso: #241b14;
  --ivory: #eee8df;
  --warm-ivory: #e4dbcf;
  --paper: #f4eee6;
  --taupe: #9b8d7e;
  --brass: #b58b52;
  --brass-bright: #caa36d;
  --line-light: rgba(244, 238, 230, 0.16);
  --line-dark: rgba(17, 16, 13, 0.16);
  --max: 1710px;
  --content: 1240px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--ivory);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(202, 163, 109, 0.95);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 3.6vw, 60px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.1));
  border-bottom: 1px solid rgba(244, 238, 230, 0.06);
  backdrop-filter: blur(10px);
  transition:
    height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 10, 8, 0.9);
  border-color: rgba(244, 238, 230, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.site-header.is-open {
  align-items: flex-start;
  height: 100svh;
  padding-top: 22px;
  background: rgba(11, 10, 8, 0.98);
  box-shadow: none;
}

.brand {
  position: relative;
  z-index: 32;
  display: grid;
  gap: 6px;
  min-width: max-content;
  color: var(--ivory);
}

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.24rem, 1.55vw, 1.72rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--brass-bright);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.25vw, 34px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(238, 232, 223, 0.82);
  line-height: 1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 1px;
  background: var(--brass-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ivory);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(202, 163, 109, 0.62);
  color: var(--brass-bright) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--black) !important;
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}

.admin-nav-link {
  color: var(--brass-bright) !important;
}

.admin-secret-link {
  cursor: default;
}

.nav-toggle {
  position: relative;
  z-index: 32;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(238, 232, 223, 0.48);
  color: var(--ivory);
  background: rgba(11, 10, 8, 0.26);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1px;
  background: currentColor;
  transition:
    top 180ms ease,
    transform 180ms ease;
}

.admin-edit-toolbar {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  color: var(--ivory);
  background: rgba(11, 10, 8, 0.94);
  border: 1px solid rgba(202, 163, 109, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.admin-edit-toolbar strong,
.admin-edit-toolbar span {
  flex: 1 1 100%;
}

.admin-edit-toolbar span {
  color: rgba(238, 232, 223, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

.admin-edit-toolbar button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brass-bright);
  border: 0;
  cursor: pointer;
}

.admin-edit-toolbar button + button {
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(238, 232, 223, 0.28);
}

.admin-editable {
  outline: 1px dashed rgba(202, 163, 109, 0.46);
  outline-offset: 4px;
}

.admin-editable:focus {
  outline: 2px solid var(--brass-bright);
  background: rgba(202, 163, 109, 0.08);
}

.admin-editable-image {
  cursor: pointer;
  outline: 2px dashed rgba(202, 163, 109, 0.54);
  outline-offset: -8px;
}

.admin-page {
  min-height: 100svh;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 8%, rgba(202, 163, 109, 0.13), transparent 28%),
    linear-gradient(135deg, #090806, #171510);
}

.admin-shell {
  min-height: 100svh;
}

.admin-login {
  width: min(460px, calc(100% - 34px));
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
}

.admin-login h1,
.admin-topbar h1,
.admin-card h2,
.admin-section-header h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

.admin-login p,
.admin-card p,
.admin-list-item span,
.admin-list-item p {
  color: rgba(238, 232, 223, 0.66);
}

.admin-login form,
.admin-card,
.admin-list-item,
.admin-dialog {
  background: rgba(238, 232, 223, 0.045);
  border: 1px solid rgba(202, 163, 109, 0.26);
}

.admin-login form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.admin-password-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin-top: 20px;
}

.admin-login label,
.admin-password-form label,
.admin-form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-login input,
.admin-password-form input,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ivory);
  font: inherit;
  background: rgba(11, 10, 8, 0.58);
  border: 1px solid rgba(238, 232, 223, 0.16);
}

.admin-form-grid textarea {
  padding-top: 12px;
  resize: vertical;
}

.admin-line-items {
  display: grid;
  gap: 10px;
}

.admin-line-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-line-heading button,
.admin-line-item button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(202, 163, 109, 0.32);
  cursor: pointer;
}

.admin-line-list {
  display: grid;
  gap: 10px;
}

.admin-line-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px auto;
  gap: 10px;
}

.admin-line-item:first-child {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: var(--brass-bright);
}

.admin-app {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  padding: 28px 18px;
  background: rgba(8, 7, 6, 0.72);
  border-right: 1px solid rgba(202, 163, 109, 0.18);
}

.admin-brand {
  display: grid;
  gap: 6px;
  color: var(--ivory);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.15;
}

.admin-brand small,
.admin-kicker {
  color: var(--brass-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-tabs button,
.admin-view-site,
.admin-logout {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(238, 232, 223, 0.72);
  font: inherit;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.admin-tabs button.is-active,
.admin-tabs button:hover,
.admin-view-site:hover,
.admin-logout:hover {
  color: var(--ivory);
  background: rgba(202, 163, 109, 0.1);
  border-color: rgba(202, 163, 109, 0.24);
}

.admin-main {
  padding: 34px clamp(22px, 4vw, 56px) 56px;
}

.admin-topbar,
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: grid;
  gap: 22px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-metrics article {
  min-height: 130px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background: rgba(238, 232, 223, 0.045);
  border: 1px solid rgba(202, 163, 109, 0.26);
}

.admin-metrics span {
  color: var(--brass-bright);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.admin-metrics p {
  margin: 0;
  color: rgba(238, 232, 223, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-card {
  padding: 24px;
}

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-filter-tabs button {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(238, 232, 223, 0.72);
  background: transparent;
  border: 1px solid rgba(202, 163, 109, 0.24);
  cursor: pointer;
}

.admin-filter-tabs button.is-active {
  color: var(--black);
  background: var(--brass-bright);
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.admin-list-item strong,
.admin-list-item b {
  color: var(--ivory);
}

.admin-invoice-actions {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 10px;
  min-width: 150px;
}

.admin-invoice-actions button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brass-bright);
  border: 0;
  cursor: pointer;
}

.admin-list-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
}

.admin-list-item p {
  margin: 10px 0 0;
}

.admin-list-item ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(238, 232, 223, 0.72);
}

.admin-empty {
  padding: 28px;
  color: rgba(238, 232, 223, 0.58);
  border: 1px dashed rgba(202, 163, 109, 0.28);
}

.admin-dialog {
  width: min(760px, calc(100% - 34px));
  padding: 24px;
  color: var(--ivory);
}

.admin-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-close {
  min-height: 36px;
  padding: 0 12px;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(238, 232, 223, 0.28);
  cursor: pointer;
}

.nav-toggle span:nth-child(2) {
  top: 17px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(720px, 54vw, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  top: var(--header-height);
  display: flex;
  justify-content: flex-end;
  background: #050504;
}

.hero-media img {
  width: min(72%, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.08) saturate(1.02);
}

.hero-overlay {
  top: var(--header-height);
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.9) 30%, rgba(5, 5, 4, 0.36) 46%, rgba(5, 5, 4, 0.02) 62%, rgba(5, 5, 4, 0) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.04) 0%, rgba(5, 4, 3, 0) 36%, rgba(5, 4, 3, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - clamp(48px, 7vw, 120px)));
  margin: 0 auto;
  padding: calc(var(--header-height) + 44px) 0 clamp(54px, 7vh, 94px);
}

.hero-copy-block {
  max-width: 760px;
  transform: translateY(34px);
}

.hero-reference-image {
  min-height: calc(var(--header-height) + min(54.55vw, 860px));
}

.hero-reference-image .hero-media {
  justify-content: center;
}

.hero-reference-image .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.hero-reference-image .hero-overlay {
  display: none;
}

.hero-reference-image .hero-inner {
  opacity: 0;
}

.hero h1,
.services h2,
.starting-points h2,
.report-band h2,
.local-care h2,
.service-area h2,
.process h2,
.contact h2,
.closing-cta h2,
.section-heading h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.6rem, 5vw, 5.95rem);
  line-height: 1.02;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lead {
  margin: 22px 0 0;
  color: var(--brass-bright);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 2.24vw, 2.48rem);
  line-height: 1.15;
}

.gold-rule {
  display: block;
  width: 44px;
  height: 1px;
  margin: 27px 0;
  background: var(--brass-bright);
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  color: rgba(238, 232, 223, 0.78);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.72;
}

.hero-assurance {
  margin: 20px 0 0;
  color: var(--brass-bright);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.08rem, 1.34vw, 1.38rem);
  font-style: italic;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--black);
  background: var(--brass-bright);
  border-color: rgba(202, 163, 109, 0.8);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(202, 163, 109, 0.75);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(11, 10, 8, 0.18);
  border-color: rgba(202, 163, 109, 0.58);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--black);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-secondary {
  color: var(--ivory);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--black);
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.text-link-dark {
  color: var(--brass);
}

.hero-email {
  margin: 29px 0 0;
  color: rgba(238, 232, 223, 0.48);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-email a {
  position: relative;
  display: inline-block;
}

.hero-email a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 58px;
  height: 1px;
  background: rgba(202, 163, 109, 0.72);
}

.hero-service-area {
  max-width: 430px;
  margin: 36px 0 0;
  color: rgba(238, 232, 223, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.section-kicker {
  margin: 0;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.promise {
  padding: 38px clamp(22px, 5vw, 64px) 44px;
  color: var(--espresso);
  background: linear-gradient(180deg, #f4eee6, #ece4da);
  border-bottom: 1px solid var(--line-dark);
}

.promise > .section-kicker,
.section-heading {
  width: min(var(--content), 100%);
  margin: 0 auto;
  text-align: center;
}

.promise-grid {
  width: min(var(--content), 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px auto 0;
}

.promise-grid article {
  min-height: 122px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 4px clamp(22px, 4vw, 62px);
  text-align: center;
}

.promise-grid article + article {
  border-left: 1px solid rgba(36, 27, 20, 0.16);
}

.promise-grid h2,
.image-card h3,
.scenario-grid h3,
.price-grid h3,
.steps h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.promise-grid h2 {
  color: var(--espresso);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
}

.promise-grid p {
  max-width: 270px;
  margin: 10px 0 0;
  color: rgba(36, 27, 20, 0.72);
  font-size: 0.92rem;
  line-height: 1.58;
}

.services {
  padding: clamp(70px, 8vw, 104px) clamp(22px, 5vw, 64px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.98), rgba(17, 16, 13, 0.94)),
    url("assets/shepherds-watch-hero.png") center / cover;
}

.services-inner,
.service-list-panel,
.starting-points,
.report-band,
.local-care,
.service-area,
.process,
.contact-inner,
.closing-cta,
.site-footer {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.services-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.54fr) minmax(620px, 1.46fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.services-copy h2 {
  max-width: 360px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.12;
}

.services-copy p {
  max-width: 330px;
  margin: 0 0 28px;
  color: rgba(238, 232, 223, 0.74);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.image-card {
  min-height: 444px;
  display: grid;
  grid-template-rows: 182px 1fr;
  overflow: hidden;
  background: rgba(17, 16, 13, 0.9);
  border: 1px solid rgba(202, 163, 109, 0.42);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.image-card:hover,
.image-card:focus-within {
  background: rgba(22, 20, 16, 0.96);
  border-color: rgba(202, 163, 109, 0.72);
  transform: translateY(-2px);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
}

.image-card div {
  padding: 30px 28px 34px;
}

.service-type {
  margin: 0 0 14px;
  color: var(--brass-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.image-card h3 {
  color: var(--ivory);
  max-width: 240px;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  line-height: 1.06;
}

.image-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin: 22px 0 0;
  background: rgba(202, 163, 109, 0.8);
}

.image-card p:not(.service-type) {
  max-width: 250px;
  margin: 18px 0 0;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.86rem;
  line-height: 1.72;
}

.service-list-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(30px, 5vw, 70px);
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(238, 232, 223, 0.16);
}

.service-list-panel h3 {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--ivory);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 13px 0;
  color: rgba(238, 232, 223, 0.76);
  border-top: 1px solid rgba(238, 232, 223, 0.1);
  font-size: 0.92rem;
  line-height: 1.46;
}

.scenarios {
  padding: clamp(54px, 7vw, 76px) clamp(22px, 5vw, 64px);
  background: var(--paper);
}

.section-heading h2 {
  color: var(--espresso);
  font-size: clamp(1.65rem, 2.45vw, 2.25rem);
  line-height: 1.18;
}

.scenario-grid {
  width: min(var(--content), 100%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 28px auto 0;
}

.scenario-grid article {
  min-width: 0;
  background: #f7f1e9;
  border: 1px solid rgba(36, 27, 20, 0.14);
}

.scenario-grid img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.scenario-grid h3 {
  padding: 20px 20px 0;
  color: var(--espresso);
  font-size: clamp(1.03rem, 1.2vw, 1.22rem);
  line-height: 1.2;
  text-align: center;
}

.scenario-grid p {
  margin: 10px 0 0;
  padding: 0 20px 24px;
  color: rgba(36, 27, 20, 0.68);
  font-size: 0.84rem;
  line-height: 1.52;
  text-align: center;
}

.starting-points {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: 330px minmax(840px, 900px);
  justify-content: center;
  gap: 42px;
  align-items: start;
  padding: 72px 24px 88px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 36%, rgba(202, 163, 109, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(11, 10, 8, 0.98), rgba(17, 16, 13, 0.96));
  border-top: 1px solid rgba(202, 163, 109, 0.14);
  border-bottom: 1px solid rgba(202, 163, 109, 0.14);
}

.starting-copy h2 {
  max-width: 330px;
  margin-top: 16px;
  color: var(--ivory);
  font-size: 2.95rem;
  line-height: 1.08;
}

.starting-copy .gold-rule {
  margin: 26px 0 22px;
}

.starting-copy p:not(.section-kicker) {
  max-width: 286px;
  margin: 0 0 32px;
  color: rgba(238, 232, 223, 0.66);
  font-size: 0.9rem;
  line-height: 1.56;
}

.starting-copy .button {
  width: 286px;
  min-width: 0;
  background: transparent;
  color: var(--brass-bright);
  border-color: rgba(202, 163, 109, 0.58);
  box-shadow: none;
}

.starting-copy .button:hover,
.starting-copy .button:focus-visible {
  color: var(--black);
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}

.starting-offers {
  display: grid;
  align-content: start;
  justify-items: stretch;
  width: 100%;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(198px, 1fr));
  gap: 12px;
  align-items: start;
  width: 100%;
}

.price-grid article {
  height: 352px;
  display: grid;
  grid-template-rows: 72px 40px 40px 78px 24px;
  align-content: start;
  justify-items: center;
  row-gap: 0;
  padding: 42px 22px 30px;
  text-align: center;
  background: rgba(238, 232, 223, 0.012);
  border: 1px solid rgba(202, 163, 109, 0.5);
  box-shadow: inset 0 0 0 1px rgba(202, 163, 109, 0.08);
}

.price-grid h3 {
  max-width: 176px;
  color: var(--ivory);
  font-size: clamp(1.08rem, 1.42vw, 1.38rem);
  line-height: 1.06;
  align-self: center;
}

.price-grid h3::after {
  content: "";
  display: none;
}

.price-grid article::before {
  content: "";
  grid-row: 2;
  width: 38px;
  height: 1px;
  align-self: center;
  background: rgba(202, 163, 109, 0.78);
}

.price-grid p {
  grid-row: 3;
  align-self: center;
  margin: 0;
  color: var(--brass-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.price-grid strong {
  grid-row: 4;
  align-self: center;
  margin: 0;
  color: var(--brass-bright);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.55rem, 3.9vw, 3.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.price-grid article:nth-child(3) strong {
  max-width: 164px;
  font-size: clamp(1.9rem, 2.7vw, 2.56rem);
  line-height: 0.98;
}

.price-grid span {
  grid-row: 5;
  align-self: start;
  margin-top: 0;
  color: rgba(238, 232, 223, 0.6);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) minmax(300px, 544px) minmax(92px, 1fr);
  gap: 18px;
  align-items: center;
  margin: 32px 0 0;
  color: var(--brass-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.pricing-disclaimer::before,
.pricing-disclaimer::after {
  content: "";
  height: 1px;
  background: rgba(202, 163, 109, 0.42);
}

.report-band {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(460px, 1.38fr);
  min-height: 260px;
  color: var(--ivory);
  background: var(--black);
}

.report-copy {
  display: grid;
  align-content: center;
  padding: clamp(44px, 5.5vw, 74px) clamp(24px, 5vw, 70px);
}

.report-copy h2 {
  max-width: 360px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.1;
}

.report-copy p {
  max-width: 360px;
  margin: 20px 0 18px;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.95rem;
}

.report-band > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.12) brightness(0.78);
}

.local-care {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.local-care > img {
  width: 100%;
  height: 100%;
  min-height: 304px;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08) brightness(0.86);
}

.local-care-copy {
  display: grid;
  align-content: center;
  padding: clamp(46px, 6vw, 82px) clamp(24px, 6vw, 92px);
}

.local-care h2 {
  max-width: 550px;
  margin-top: 10px;
  color: var(--espresso);
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  line-height: 1.14;
}

.local-care p:not(.section-kicker) {
  max-width: 570px;
  margin: 16px 0 0;
  color: rgba(36, 27, 20, 0.74);
}

.local-care .text-link {
  margin-top: 22px;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(58px, 7vw, 86px) 0;
}

.service-area h2 {
  max-width: 520px;
  margin-top: 12px;
  color: var(--espresso);
  font-size: clamp(1.85rem, 2.7vw, 2.72rem);
  line-height: 1.12;
}

.service-area > p {
  align-self: end;
  max-width: 720px;
  margin: 0;
  color: rgba(36, 27, 20, 0.72);
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.process {
  max-width: none;
  width: 100%;
  padding: clamp(52px, 6vw, 74px) max(22px, calc((100vw - var(--content)) / 2));
  color: var(--ivory);
  background: var(--charcoal);
}

.process .section-heading {
  text-align: left;
}

.process .section-heading h2 {
  margin-top: 10px;
  color: var(--ivory);
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(238, 232, 223, 0.14);
}

.steps article {
  padding: 26px 28px 8px 0;
  border-right: 1px solid rgba(238, 232, 223, 0.14);
}

.steps article + article {
  padding-left: 28px;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--brass-bright);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.steps h3 {
  color: var(--ivory);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
}

.steps p {
  margin: 10px 0 0;
  color: rgba(238, 232, 223, 0.68);
  font-size: 0.88rem;
  line-height: 1.56;
}

.contact {
  padding: clamp(68px, 8vw, 104px) clamp(22px, 5vw, 64px);
  background: var(--ivory);
  border-top: 1px solid var(--line-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(440px, 0.94fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.contact h2 {
  max-width: 520px;
  margin-top: 12px;
  color: var(--espresso);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.contact-copy > p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(36, 27, 20, 0.72);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(36, 27, 20, 0.14);
}

.contact-details div {
  display: grid;
  gap: 4px;
}

.contact-details dt,
.contact-form span {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--espresso);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-details a {
  text-decoration: underline;
  text-decoration-color: rgba(181, 139, 82, 0.55);
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 16px;
  padding: clamp(24px, 3vw, 38px);
  background: #e8dfd3;
  border: 1px solid rgba(36, 27, 20, 0.15);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label:nth-last-of-type(1),
.contact-form .form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 27, 20, 0.22);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--espresso);
  background: rgba(244, 238, 230, 0.82);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(36, 27, 20, 0.72) 50%),
    linear-gradient(135deg, rgba(36, 27, 20, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size:
    5px 5px,
    5px 5px;
}

.contact-form input::placeholder {
  color: rgba(36, 27, 20, 0.44);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(181, 139, 82, 0.76);
  background: #f9f3eb;
  box-shadow: 0 0 0 3px rgba(181, 139, 82, 0.12);
}

.contact-form .button {
  grid-column: 2;
  justify-self: end;
  min-width: 210px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(36, 27, 20, 0.7);
  font-size: 0.9rem;
}

.closing-cta {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px max(22px, calc((100vw - var(--content)) / 2));
  color: var(--ivory);
  background: var(--charcoal);
  border-top: 1px solid rgba(202, 163, 109, 0.24);
  border-bottom: 1px solid rgba(202, 163, 109, 0.24);
}

.closing-cta h2 {
  color: var(--ivory);
  font-size: clamp(1.32rem, 2vw, 2rem);
  line-height: 1.16;
}

.closing-cta p {
  margin: 4px 0 0;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.95rem;
}

.closing-cta .button {
  min-width: 290px;
}

.site-footer {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(190px, 0.82fr) minmax(190px, 0.78fr) minmax(150px, 0.5fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(42px, 5vw, 64px) max(22px, calc((100vw - var(--content)) / 2)) 30px;
  color: rgba(238, 232, 223, 0.68);
  background: #11100d;
  font-size: 0.86rem;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--brass-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  color: rgba(238, 232, 223, 0.82);
}

.footer-mark {
  width: fit-content;
  display: block;
  color: var(--ivory) !important;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand > p:first-of-type {
  margin-top: 8px;
  color: rgba(238, 232, 223, 0.68);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-tagline {
  max-width: 280px;
  color: var(--brass-bright) !important;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
}

.footer-nav {
  display: grid;
  gap: 7px;
  align-content: start;
}

.footer-nav a {
  width: fit-content;
}

.footer-legal {
  grid-column: 1 / -1;
  margin-top: 8px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(238, 232, 223, 0.12);
  color: rgba(238, 232, 223, 0.56);
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 16px;
    font-size: 0.62rem;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .services-inner,
  .starting-points {
    grid-template-columns: 1fr;
  }

  .starting-copy h2,
  .starting-copy p:not(.section-kicker) {
    max-width: 620px;
  }

  .starting-copy .button {
    width: fit-content;
    min-width: 280px;
  }

  .services-copy h2,
  .services-copy p {
    max-width: 720px;
  }

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

  .scenario-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding: 0 22px;
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 31;
    inset: 0;
    min-height: 100svh;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 18px;
    padding: 124px 28px 40px;
    background: rgba(11, 10, 8, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition:
      transform 240ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    width: fit-content;
    color: var(--ivory);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-cta {
    width: fit-content;
    min-height: 52px;
    margin-top: 12px;
    padding: 0 22px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    width: 100%;
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 10, 8, 0.92) 0%, rgba(11, 10, 8, 0.78) 55%, rgba(11, 10, 8, 0.52) 100%),
      linear-gradient(180deg, rgba(11, 10, 8, 0.1) 0%, rgba(11, 10, 8, 0.9) 100%);
  }

  .hero-inner {
    width: calc(100% - 44px);
  }

  .hero-copy-block {
    transform: none;
  }

  .promise-grid,
  .service-card-grid,
  .service-list-panel,
  .report-band,
  .local-care,
  .service-area,
  .process .section-heading,
  .contact-inner,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .promise-grid article {
    min-height: auto;
    padding: 22px 0;
  }

  .promise-grid article + article {
    border-top: 1px solid rgba(36, 27, 20, 0.14);
    border-left: 0;
  }

  .image-card {
    grid-template-rows: 220px 1fr;
    min-height: auto;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

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

  .report-band > img,
  .local-care > img {
    min-height: 240px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-last-of-type(1),
  .contact-form .form-status,
  .contact-form .button {
    grid-column: 1;
  }

  .contact-form .button {
    justify-self: stretch;
  }

  .closing-cta .button {
    width: fit-content;
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .brand-subtitle {
    max-width: 220px;
    font-size: 0.5rem;
    line-height: 1.25;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    width: calc(100% - 34px);
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: clamp(1.28rem, 7vw, 2rem);
  }

  .hero-copy,
  .hero-service-area {
    font-size: 0.94rem;
  }

  .hero-actions,
  .button,
  .closing-cta .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .promise,
  .services,
  .scenarios,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .services {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .image-card {
    grid-template-rows: 188px 1fr;
  }

  .image-card div {
    padding: 24px 22px 26px;
  }

  .scenario-grid,
  .price-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .scenario-grid {
    gap: 16px;
  }

  .starting-points,
  .process,
  .closing-cta,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .price-grid article {
    height: auto;
    min-height: 176px;
    padding: 30px 20px;
  }

  .price-grid h3 {
    min-height: auto;
  }

  .price-grid p {
    margin-top: 24px;
  }

  .pricing-disclaimer {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .pricing-disclaimer::before,
  .pricing-disclaimer::after {
    width: 100%;
  }

  .report-copy,
  .local-care-copy {
    padding: 44px 18px;
  }

  .service-area {
    padding: 56px 18px;
  }

  .steps article,
  .steps article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 232, 223, 0.14);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .closing-cta {
    align-items: stretch;
  }
}

@media (max-width: 860px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto;
  }

  .admin-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-main {
    padding: 24px 18px 44px;
  }

  .admin-topbar,
  .admin-section-header,
  .admin-list-item {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-metrics,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-wide {
    grid-column: 1;
  }
}
