:root {
  --ink: #19272b;
  --panel: #223035;
  --paper: #ffffff;
  --mist: color-mix(in srgb, #ffffff 64%, #19272b);
  --haze: color-mix(in srgb, #ffffff 42%, #19272b);
  --line: color-mix(in srgb, #ffffff 12%, transparent);
  --line-strong: color-mix(in srgb, #ffffff 22%, transparent);
  --font-heading: "Marcellus", "Times New Roman", ui-serif, Georgia, serif;
  --font-body: "Belleza", "Palatino Linotype", Palatino, ui-serif, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}

p {
  text-wrap: pretty;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-weight: 400;
}

button:not(:disabled),
[role="button"]:not(:disabled) {
  cursor: pointer;
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid color-mix(in srgb, #ffffff 45%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .wrap {
    padding: 0 2rem;
  }
}

.site {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.header-inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  height: 2.5rem;
  width: auto;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-full {
  display: none;
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .brand-mark,
  .brand-name {
    display: none;
  }
  .brand-full {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .menu-toggle,
  .menu-overlay,
  .menu-panel {
    display: none !important;
  }
}

.nav-desktop a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--paper);
}

.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--paper);
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: var(--paper);
  padding: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ink) 80%, transparent);
}

.menu-overlay[hidden],
.menu-panel[hidden] {
  display: none !important;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 2rem;
}

@media (min-width: 640px) {
  .menu-panel {
    left: auto;
    width: 24rem;
    border-left: 1px solid var(--line);
  }
}

.menu-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-panel nav {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.menu-panel nav a {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.menu-panel .btn {
  margin-top: 2.5rem;
  width: 100%;
}

.menu-address {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--haze);
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0;
}

.brand-rule {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 5.5rem;
}

.brand-rule span {
  display: block;
  height: 1px;
  background: color-mix(in srgb, #ffffff 72%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn:active {
  transform: scale(0.96);
}

.btn-lg {
  height: 3rem;
  padding: 0 1.75rem;
  font-size: 0.75rem;
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-strong);
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--paper) 8%, transparent);
  opacity: 1;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.625rem;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-pad {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 7rem 0;
  }
}

.page-header {
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .page-header {
    padding: 5rem 0;
  }
}

.page-header h1 {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.page-header .lede {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mist);
}

.page-header .brand-rule {
  margin-top: 2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-mark {
  display: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.14;
}

.hero-mark img {
  position: absolute;
  right: -8%;
  top: 2rem;
  height: 85%;
  width: auto;
}

@media (min-width: 1024px) {
  .hero-mark {
    display: block;
  }
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 5rem);
  align-items: end;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    padding: 5rem 0;
  }
}

.hero-copy {
  grid-column: span 8;
}

.hero h1 {
  margin-top: 2rem;
  font-size: clamp(3rem, 9vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero .brand-rule {
  margin-top: 2.5rem;
}

.hero-lede {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mist);
}

@media (min-width: 640px) {
  .hero-lede {
    font-size: 1.25rem;
  }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-aside {
  display: none;
}

@media (min-width: 1024px) {
  .hero-aside {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
}

.hero-aside p {
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--haze);
}

.hero-aside .loc {
  margin-top: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.trust {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 1.25rem 0;
}

.trust-inner span {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.split {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .split-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .col-4 {
    grid-column: span 4;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-7 {
    grid-column: span 7;
  }
  .col-8 {
    grid-column: span 8;
  }
}

.prose-lg p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mist);
  margin: 0;
}

@media (min-width: 640px) {
  .prose-lg p {
    font-size: 1.25rem;
  }
}

.prose-lg p + p {
  margin-top: 1.5rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-head h2,
.page-block h2,
.split h2 {
  font-size: 1.875rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-head h2,
  .page-block h2,
  .split h2 {
    font-size: 2.25rem;
  }
}

.package-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .package-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 1.75rem;
  transition: background-color 0.2s ease;
}

.package-card:hover {
  background: var(--panel);
}

.package-no {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--haze);
}

.package-card h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.package-card p {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mist);
}

.more {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel {
  background: var(--panel);
}

blockquote.quote {
  margin: 2rem 0 0;
  max-width: 56rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  blockquote.quote {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

.triple {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .triple {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.triple h3 {
  font-size: 1.25rem;
}

.triple p,
.step p,
.serve-card p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mist);
}

.steps {
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-n,
.item-n {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--haze);
}

.steps h3 {
  margin-top: 0.75rem;
  font-size: 1.125rem;
}

.cta-box {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 3rem 2rem;
}

@media (min-width: 640px) {
  .cta-box {
    padding: 4rem 3.5rem;
  }
}

.cta-box h2 {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .cta-box h2 {
    font-size: 2.25rem;
  }
}

.cta-box .addr {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mist);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.serve-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .serve-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .serve-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.serve-card {
  background: var(--panel);
  padding: 2rem;
}

.serve-card h3 {
  font-size: 1.25rem;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list > li {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list > li:last-child {
  border-bottom: 0;
}

@media (min-width: 1024px) {
  .service-list > li {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
  }
}

.service-list h2 {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .service-list h2 {
    font-size: 1.875rem;
  }
}

.target {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--haze);
}

.dash-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.dash-list li {
  font-size: 0.875rem;
  color: var(--mist);
}

.dash-list li::before {
  content: "—";
  margin-right: 0.75rem;
  color: var(--haze);
}

.service-actions {
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .service-actions {
    justify-content: flex-end;
    align-self: center;
  }
}

.note {
  margin-top: 3rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--haze);
}

.detail-grid {
  display: grid;
  gap: 4rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: repeat(12, 1fr);
    padding: 5rem 0;
  }
}

.detail-main {
  grid-column: span 8;
}

.detail-aside {
  grid-column: span 4;
}

.sticky-box {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.75rem;
}

@media (min-width: 1024px) {
  .sticky-box {
    position: sticky;
    top: 7rem;
  }
}

.sticky-box ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sticky-box li a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--mist);
}

.sticky-box li a:hover {
  color: var(--paper);
}

.sticky-box .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.sticky-box .btn-outline {
  margin-top: 0.75rem;
}

.item-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.item-list article {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

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

.item-list h2 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.item-list p {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mist);
}

.child-list {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
}

.child-list h3 {
  font-size: 1.125rem;
}

.child-list p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.form-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form-panel {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .span-2 {
    grid-column: span 2;
  }
}

label.field-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.75rem;
  outline: none;
}

textarea {
  height: auto;
  min-height: 8rem;
  padding: 0.75rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--paper) 25%, transparent);
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--mist);
}

.consent input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--paper);
}

.form-error {
  margin-top: 0.4rem;
  font-size: 0.875rem;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
  }
}

.notice {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 2.5rem;
}

.notice h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.notice p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mist);
}

.phones a.big {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.wa {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.wa:hover {
  color: var(--paper);
}

.by-appt {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--haze);
}

.conduct-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.conduct-toolbar p {
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--haze);
}

.conduct {
  max-width: 48rem;
  margin: 0 auto;
}

.conduct article {
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}

.conduct h2 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .conduct h2 {
    font-size: 1.875rem;
  }
}

.conduct .body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mist);
}

.conduct .body p + p {
  margin-top: 1rem;
}

.conduct-close {
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .conduct-close {
    font-size: 1.5rem;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 2.5rem;
  width: auto;
}

.footer-brand p {
  margin-top: 1.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mist);
}

.footer-brand .brand-rule {
  margin-top: 1.5rem;
}

.footer-grid ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.75rem;
}

.footer-grid a {
  font-size: 0.875rem;
  color: var(--mist);
}

.footer-grid a:hover {
  color: var(--paper);
}

address {
  font-style: normal;
}

.legal {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal p {
  max-width: 56rem;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--haze);
}

.space-y > * + * {
  margin-top: 1.5rem;
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.border-t {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

@media print {
  .site-header,
  .site-footer,
  .no-print {
    display: none !important;
  }
  html,
  body,
  .site-main {
    background: #fff !important;
    color: #19272b !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
