@import "../fonts/alegreyasans.css";
:root {
  --ink: #26221E;
  --ink-soft: #4E473C;
  --ink-mute: #6E6455;
  --bg: #FAF7F2;
  --bg-alt: #F2EBDD;
  --surface: #ffffff;
  --line: #DCCFB4;
  --accent: #1F5F5B;
  --accent-dark: #163F3D;
  --accent-soft: #E1EDEB;
  --accent-tint: rgba(31, 95, 91, 0.08);
  --clay: #B5714A;
  --clay-dark: #8C5637;
  --clay-soft: #F3E3D8;
  --clay-pale: #E3B08D;
  --shadow-sm: 0 1px 2px rgba(38,34,30,0.05), 0 1px 3px rgba(38,34,30,0.07);
  --shadow-md: 0 4px 12px rgba(38,34,30,0.07), 0 2px 4px rgba(38,34,30,0.05);
  --shadow-lg: 0 18px 40px rgba(38,34,30,0.12), 0 4px 12px rgba(38,34,30,0.07);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --font-display:
    "Alegreya Sans",
    Georgia,
    "Times New Roman",
    serif;
  --font-body:
    "Alegreya Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --t-fast: 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
img {
  font-style: italic;
  background-color: var(--accent-soft);
}
a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
  color: var(--ink-soft);
}
.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 1rem;
  color: var(--bg);
}
.pd-rail {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.97);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.pd-rail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding-block: 0.45rem;
  gap: 1rem;
}
.pd-rail-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pd-rail-brand:hover {
  color: var(--accent-dark);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex-shrink: 0;
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pd-rail-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-rail-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.pd-rail-phone:hover {
  background: var(--accent-dark);
  color: var(--surface);
}
.pd-rail-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 95, 91, 0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.pd-rail-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-mute);
  flex-shrink: 0;
}
.pd-rail-status[data-status=office] .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(31, 95, 91, 0.16);
}
.pd-rail-status[data-status=office] {
  color: var(--accent-dark);
}
.pd-rail-status[data-status=oncall] .dot {
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(181, 113, 74, 0.16);
}
.pd-rail-status[data-status=oncall] {
  color: var(--clay-dark);
}
@media (max-width: 1100px) {
  .pd-rail-status {
    display: none;
  }
}
.pd-rail-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--surface) !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.005em;
  transition: background var(--t-fast), transform var(--t-fast);
}
.pd-rail-cta:hover {
  background: var(--accent-dark);
  color: var(--surface) !important;
  transform: translateY(-1px);
}
.pd-rail-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pd-rail-toggle:hover {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
}
@media (max-width: 640px) {
  .pd-rail-phone span:last-child {
    display: none;
  }
  .pd-rail-phone {
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .pd-rail-cta {
    display: none;
  }
}
.pd-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(38, 34, 30, 0.36);
  opacity: 0;
  transition: opacity 280ms ease;
}
.pd-drawer[data-open=true] {
  opacity: 1;
}
.pd-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: var(--bg);
  padding: 1.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pd-drawer[data-open=true] .pd-drawer-inner {
  transform: translateX(0);
}
.pd-drawer-close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: background var(--t-fast);
}
.pd-drawer-close:hover {
  background: var(--accent-soft);
}
.pd-drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pd-drawer nav a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color var(--t-fast);
}
.pd-drawer nav a:hover {
  color: var(--accent-dark);
}
.pd-drawer nav a[aria-current=page] {
  color: var(--accent-dark);
}
.pd-drawer-meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.pd-drawer-meta .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  align-self: center;
}
.pd-drawer-meta .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
a.btn-primary,
.pd-drawer nav a.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--surface);
  box-shadow: var(--shadow-md);
}
.btn-accent,
a.btn-accent {
  background: var(--accent-dark);
  color: var(--surface) !important;
}
.btn-accent:hover,
a.btn-accent:hover {
  background: var(--ink);
  color: var(--surface) !important;
}
.btn-ghost,
a.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent-dark);
  color: var(--ink);
}
.btn-sm,
a.btn-sm {
  padding: 0.55rem 1.1rem 0.5rem;
  font-size: 0.92rem;
  min-height: 0;
}
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  margin-bottom: 1.1rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero-lead.wide {
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}
.hero-visual picture,
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(38, 34, 30, 0) 30%,
      rgba(38, 34, 30, 0.5) 68%,
      rgba(38, 34, 30, 0.88) 100%);
  pointer-events: none;
}
.hero-visual .tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: var(--surface);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 14px rgba(0, 0, 0, 0.35);
}
.hero-visual .tag .dot {
  width: 9px;
  height: 9px;
  background: var(--surface);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.section-head p {
  margin-inline: auto;
}
.section-head.left p {
  margin-inline: 0;
}
.pd-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
}
.pd-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pd-hero-lines svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pd-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.pd-line-team {
  stroke: var(--accent);
  opacity: 0.65;
}
.pd-line-client {
  stroke: var(--clay);
  opacity: 0.55;
}
html.js .pd-line {
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js .pd-hero-lines.is-drawn .pd-line {
  stroke-dashoffset: 0;
}
html.js .pd-hero-lines.is-drawn .pd-line-client {
  transition-delay: 90ms;
}
.pd-hero-dot {
  fill: var(--accent-dark);
  opacity: 0;
  transition: opacity 400ms ease 1.7s;
}
.pd-hero-dot-halo {
  fill: var(--accent);
  opacity: 0;
  transition: opacity 400ms ease 1.7s;
  animation: pdDotPulse 3.4s ease-in-out infinite 2.1s;
  transform-box: fill-box;
  transform-origin: center;
}
html.js .pd-hero-lines.is-drawn .pd-hero-dot {
  opacity: 1;
}
html.js .pd-hero-lines.is-drawn .pd-hero-dot-halo {
  opacity: 0.16;
}
@keyframes pdDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.16;
  }
  50% {
    transform: scale(1.7);
    opacity: 0.05;
  }
}
.pd-hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-block: clamp(2.5rem, 8vh, 4.5rem);
}
.pd-hero-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.pd-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.4rem;
  max-width: 15ch;
}
.pd-hero-title em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 800;
}
.pd-hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 0 2rem;
}
.pd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
html.js [data-hero-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--hero-delay, 0ms);
}
html.js [data-hero-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 880px) {
  .pd-hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
  .pd-hero-lines {
    opacity: 0.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pd-line {
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
  .pd-hero-dot,
  .pd-hero-dot-halo {
    transition: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .pd-hero-dot-halo {
    opacity: 0.16 !important;
  }
  html.js [data-hero-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.pd-reach {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 0;
}
.pd-reach-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}
@media (max-width: 780px) {
  .pd-reach-inner {
    grid-template-columns: 1fr;
  }
}
.pd-reach-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
@media (max-width: 780px) {
  .pd-reach-divider {
    width: 100%;
    height: 1px;
  }
}
.pd-reach-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pd-reach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex-shrink: 0;
}
.pd-reach-item--oncall .pd-reach-icon {
  background: var(--clay-soft);
  color: var(--clay-dark);
}
.pd-reach-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1 12rem;
}
.pd-reach-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.pd-reach-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.pd-reach-hint {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.pd-reach-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.pd-reach-item--oncall .pd-reach-phone {
  background: var(--clay-soft);
  color: var(--clay-dark);
}
.pd-reach-phone:hover {
  background: var(--accent-dark);
  color: var(--surface);
}
.pd-reach-item--oncall .pd-reach-phone:hover {
  background: var(--clay-dark);
  color: var(--surface);
}
.pd-trust {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-trust-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.pd-trust-head p {
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.pd-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 880px) {
  .pd-trust-list {
    grid-template-columns: 1fr;
  }
}
.pd-trust-list li {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.pd-trust-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.pd-trust-list h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.pd-trust-list p {
  font-size: 0.96rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service {
  display: block;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--ink);
  transition:
    transform var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 200px;
  height: 200px;
  background:
    radial-gradient(
      circle,
      var(--accent-soft) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.service:hover::before {
  opacity: 1;
}
.service h3 {
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
  position: relative;
}
.service p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.service .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-dark);
  position: relative;
  transition: gap var(--t-fast);
}
.service:hover .arrow {
  gap: 0.6rem;
}
.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: var(--accent-soft);
  margin: -1px -1px 1rem -1px;
}
.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-member {
  text-align: center;
}
.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.team-member p {
  font-size: 0.92rem;
  max-width: 28ch;
  margin-inline: auto;
}
.pd-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (max-width: 820px) {
  .pd-matrix {
    grid-template-columns: 1fr;
  }
}
.pd-matrix-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.pd-matrix-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pd-matrix-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.pd-matrix-col--accent .pd-matrix-tag {
  background: var(--clay-soft);
  color: var(--clay-dark);
}
.pd-matrix-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pd-matrix-head p {
  font-size: 0.94rem;
  margin: 0;
  color: var(--ink-soft);
}
.pd-matrix-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pd-matrix-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pd-matrix-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.5em;
}
.pd-matrix-col--accent .pd-matrix-list li::before {
  background: var(--clay);
}
.pd-matrix-note {
  margin: 1.75rem 0 0;
  padding: 1.1rem 1.4rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: none;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  padding: 1.85rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.testimonial blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 700;
}
.svc-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem 3rem;
  max-width: 960px;
}
.svc-mini {
  border-left: 2px solid var(--clay);
  padding-left: 1.1rem;
}
.svc-mini h3 {
  margin: 0 0 .55rem;
  line-height: 1.2;
}
.svc-mini p {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.pd-page-hero {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
}
.pd-page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .pd-page-hero-grid {
    grid-template-columns: 1fr;
  }
}
.pd-page-hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}
.pd-page-hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 1.75rem;
}
.pd-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.pd-page-hero-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.pd-page-hero-aside-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 1.25rem;
}
.pd-page-hero-facts {
  margin: 0;
}
.pd-page-hero-facts > div {
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}
.pd-page-hero-facts > div:first-child {
  padding-top: 0;
  border-top: none;
}
.pd-page-hero-facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}
.pd-page-hero-facts dd {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.pd-page-hero-facts dd:last-of-type {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pd-services-section {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3.5rem, 7vw, 5rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.pd-services-head {
  margin-bottom: 2.5rem;
}
.pd-services-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.location-card dl {
  margin: 0;
}
.location-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 1.25rem;
}
.location-card dt:first-child {
  margin-top: 0;
}
.location-card dd {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ink);
}
.opening-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.opening-row:last-child {
  border-bottom: none;
}
.opening-row.is-today {
  font-weight: 700;
  color: var(--accent-dark);
}
.map-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 320px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed .map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  line-height: 1.5;
}
.map-embed .map-label a {
  font-weight: 700;
}
.cta-band {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin-bottom: 0.4rem;
}
.cta-band p {
  margin: 0;
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--t-fast);
}
.faq summary:hover {
  color: var(--accent-dark);
}
.faq summary:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent-dark);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq[open] summary::after {
  content: "−";
}
.faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.field .req {
  color: var(--clay-dark);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}
.field.consent input {
  margin-top: 0.25rem;
}
.field.consent label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field.consent label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.form-intro p {
  font-size: 0.95rem;
}
#form-status {
  font-size: 0.9rem;
  margin: 0;
}
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-mute);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb [aria-current=page] {
  color: var(--ink);
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
  }
}
.article-body {
  max-width: 70ch;
}
.article-body h2 {
  margin-top: 2.5rem;
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-aside {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-aside > * {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.article-aside > h3:first-of-type {
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.article-aside > h3:first-of-type::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--clay);
  margin-right: 0.6rem;
  vertical-align: 4px;
  border-radius: 2px;
}
.article-aside > p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.article-aside > p:last-of-type {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0.75rem 0 1.75rem !important;
}
.article-aside > .btn {
  display: flex;
  width: calc(100% - 3.5rem);
  margin: 0 1.75rem 0.5rem;
}
.article-aside > .btn + p {
  margin-top: 0.75rem !important;
}
.article-aside::after {
  content: "";
  display: block;
  height: 0.75rem;
}
.image-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  margin: 0;
  box-shadow: var(--shadow-md);
}
.image-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.pd-mobile-call {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  padding: 0.95rem 1.2rem;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-pill);
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 12px 28px rgba(38, 34, 30, 0.28);
  transition:
    background var(--t-fast),
    transform var(--t-fast),
    opacity var(--t-fast);
}
.pd-mobile-call:hover {
  background: var(--accent-dark);
  color: var(--surface);
}
.pd-mobile-call[inert] {
  opacity: 0;
  pointer-events: none;
}
.pd-mobile-call:focus-visible {
  outline: none;
  box-shadow:
    0 12px 28px rgba(38, 34, 30, 0.28),
    0 0 0 2px var(--bg),
    0 0 0 4px var(--accent-dark);
}
@media (max-width: 640px) {
  .pd-mobile-call {
    display: inline-flex;
  }
  body {
    padding-bottom: 5rem;
  }
}
.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.8);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--bg);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color var(--t-fast);
}
.footer-brand .brand:hover {
  color: var(--clay-pale);
}
.footer-brand p {
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--bg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(250, 247, 242, 0.74);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--bg);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.58);
}
.footer-bottom a {
  color: rgba(250, 247, 242, 0.68);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: var(--bg);
}
.site-footer a:focus-visible,
.footer-brand .brand:focus-visible {
  outline-color: var(--bg);
}
.demo-disclaimer {
  background: rgba(181, 113, 74, 0.14);
  border: 1px solid rgba(181, 113, 74, 0.32);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 1.5rem;
}
.demo-disclaimer a {
  color: var(--clay-pale);
  text-decoration: underline;
}
.demo-disclaimer a:hover {
  color: var(--bg);
}
.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;
}
.text-center {
  text-align: center;
}
.mt-loose {
  margin-top: 2.5rem;
}
.section-head.wide {
  max-width: 760px;
}
.container.narrow {
  max-width: 760px;
}
.section-surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.section-surface-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.section-surface-top {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
@media print {
  .pd-rail,
  .pd-drawer,
  .pd-mobile-call,
  .site-footer,
  .cta-band {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
