:root {
  --ink: #102033;
  --muted: #5d6875;
  --line: #d9dee5;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --accent: #b78a4a;
  --accent-dark: #8c6631;
  --blue: #1f5f8f;
  --green: #1f7a5b;
  --shadow: 0 22px 70px rgba(16, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-call,
.button {
  text-decoration: none;
}

.header-call {
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 73px);
  padding: clamp(46px, 7vw, 96px) clamp(20px, 5vw, 70px) clamp(38px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(16, 32, 51, 0.94), rgba(31, 95, 143, 0.72)),
    url("data:image/svg+xml,%3Csvg width='1200' height='760' viewBox='0 0 1200 760' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1200' height='760' fill='%23e7ecef'/%3E%3Cpath d='M0 570 C190 480 290 660 480 548 C660 442 735 430 900 505 C1055 575 1120 520 1200 465 L1200 760 L0 760 Z' fill='%23c9d4dc'/%3E%3Cpath d='M130 188 H1020 V225 H130zM208 253 H950 V286 H208zM180 332 H980 V350 H180zM180 388 H895 V406 H180zM180 444 H935 V462 H180z' fill='%23ffffff' fill-opacity='.42'/%3E%3Ccircle cx='1000' cy='190' r='84' fill='%23b78a4a' fill-opacity='.34'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
}

.intake-panel {
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.intake-panel h2 {
  margin: 18px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.intake-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.panel-phone,
.panel-email {
  display: block;
  padding: 15px 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-weight: 850;
  text-decoration: none;
}

.badge-strip,
.section,
.process,
.contact-section {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 70px);
}

.badge-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.badge-strip h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.bark-badge {
  min-width: 240px;
  text-align: right;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
}

.service-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.service-grid p,
.steps span,
.contact-copy p,
.form-note,
.site-footer {
  color: var(--muted);
}

.process {
  background: var(--ink);
  color: #fff;
}

.process .section-kicker {
  color: #dfb56d;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.steps li {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  font-size: 20px;
}

.steps span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-options a {
  font-weight: 850;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd2db;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 95, 143, 0.18);
  border-color: var(--blue);
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intake-panel {
    max-width: 620px;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .brand-text small {
    display: none;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .badge-strip {
    display: block;
  }

  .bark-badge {
    margin-top: 18px;
    text-align: left;
  }

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

  .service-grid article {
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }
}
