:root {
  --dp-ink: #2a211c;
  --dp-ink-deep: #1a1512;
  --dp-herb: #3f5a48;
  --dp-paprika: #b53c2f;
  --dp-paprika-deep: #922f24;
  --dp-saffron: #c9922a;
  --dp-saffron-deep: #a6781f;
  --dp-stone: #f3f1ec;
  --dp-mist: #e8e4dc;
  --dp-ink-text: #2a211c;
  --dp-muted: #6a625a;
  --dp-white: #fffcf8;
  --dp-line: rgba(42, 33, 28, 0.12);
  --dp-shadow: 0 18px 40px rgba(26, 21, 18, 0.12);
  --dp-display: "Fraunces", "Palatino Linotype", Georgia, serif;
  --dp-sans: "Outfit", "Segoe UI", sans-serif;
  --dp-top: 36px;
  --dp-header: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--dp-header) + 12px);
}

body {
  margin: 0;
  color: var(--dp-ink);
  background: var(--dp-stone);
  font-family: var(--dp-sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
.dp-logo__text {
  font-family: var(--dp-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dp-ink);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1rem;
}

figure {
  margin: 0;
}

.dp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--dp-header) + 16px);
}

.dp-skip {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 80;
  background: var(--dp-ink);
  color: var(--dp-stone);
  padding: 8px 12px;
}

.dp-skip:focus {
  top: 12px;
}

.dp-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dp-herb);
}

.dp-eyebrow--gold {
  color: var(--dp-saffron);
}

.dp-topbar {
  height: var(--dp-top);
  background: var(--dp-ink-deep);
  color: rgba(243, 241, 236, 0.78);
  font-size: 0.76rem;
}

.dp-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.dp-topbar a:hover {
  color: var(--dp-saffron);
}

.dp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--dp-header);
  background: rgba(243, 241, 236, 0.96);
  backdrop-filter: blur(10px);
  color: var(--dp-ink);
  border-bottom: 1px solid var(--dp-line);
}

.dp-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(26, 21, 18, 0.08);
}

.dp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dp-logo__img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
}

.dp-logo__mark {
  display: flex;
  flex-direction: column;
}

.dp-logo__text {
  margin: 0;
  color: var(--dp-ink);
  font-size: 1.5rem;
  line-height: 1;
}

.dp-logo__sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dp-herb);
  font-weight: 600;
}

.dp-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.dp-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dp-nav-list a {
  color: var(--dp-herb);
  font-size: 0.94rem;
  font-weight: 600;
}

.dp-nav-list a:hover,
.dp-nav-list a.is-active {
  color: var(--dp-ink);
}

.dp-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.dp-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--dp-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dp-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.dp-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.dp-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.dp-btn--gold {
  background: var(--dp-saffron);
  color: var(--dp-ink-deep);
}

.dp-btn--gold:hover {
  background: var(--dp-saffron-deep);
  color: var(--dp-white);
}

.dp-btn--ghost {
  background: transparent;
  color: var(--dp-stone);
  border: 1px solid rgba(243, 241, 236, 0.45);
}

.dp-btn--ghost:hover {
  background: rgba(243, 241, 236, 0.12);
}

.dp-btn--full {
  width: 100%;
}

.dp-hero {
  position: relative;
  min-height: calc(100vh - var(--dp-top) - var(--dp-header));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--dp-stone);
}

.dp-hero__media {
  position: absolute;
  inset: 0;
}

.dp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dp-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 21, 18, 0.82) 0%, rgba(26, 21, 18, 0.35) 58%, rgba(26, 21, 18, 0.12) 100%);
}

.dp-hero__copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  max-width: 640px;
  margin-left: max(20px, calc((100% - 1120px) / 2));
}

.dp-hero h1 {
  color: var(--dp-stone);
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 11ch;
}

.dp-lead {
  font-size: 1.08rem;
  max-width: 44ch;
  color: rgba(243, 241, 236, 0.88);
}

.dp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 22px;
}

.dp-hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(243, 241, 236, 0.68);
  max-width: 48ch;
}

.dp-hours {
  background: var(--dp-white);
  border-bottom: 1px solid var(--dp-line);
  padding: 0;
}

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

.dp-hours__item {
  padding: 22px 8px;
  border-right: 1px solid var(--dp-line);
}

.dp-hours__item:last-child {
  border-right: 0;
}

.dp-hours__label {
  margin: 0 0 4px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dp-herb);
  font-weight: 700;
}

.dp-hours__value {
  margin: 0;
  font-family: var(--dp-display);
  color: var(--dp-ink);
  font-size: 1.2rem;
}

.dp-section {
  padding: 96px 0;
}

.dp-section__intro {
  max-width: 620px;
  margin-bottom: 44px;
}

.dp-section__intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.dp-about {
  background: var(--dp-stone);
}

.dp-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.dp-about__copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.dp-about__media {
  position: relative;
}

.dp-about__media::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 28px;
  width: 18px;
  height: 62%;
  background: var(--dp-saffron);
}

.dp-about__media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 2px;
}

.dp-about__media figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--dp-muted);
  letter-spacing: 0.04em;
}

.dp-checklist {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.dp-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.dp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  background: var(--dp-saffron);
}

.dp-care {
  background: var(--dp-mist);
}

.dp-care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dp-card {
  background: var(--dp-white);
  overflow: hidden;
  box-shadow: var(--dp-shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 240px;
}

.dp-card__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.dp-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
}

.dp-card__index {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--dp-saffron-deep);
  font-weight: 700;
}

.dp-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  font-weight: 600;
  color: var(--dp-herb);
  border-bottom: 1px solid var(--dp-saffron);
  align-self: flex-start;
}

.dp-path {
  background: var(--dp-ink);
  color: var(--dp-stone);
}

.dp-path h2,
.dp-path h3 {
  color: var(--dp-stone);
}

.dp-path .dp-eyebrow {
  color: var(--dp-saffron);
}

.dp-path__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.dp-path__list li {
  padding: 8px 22px 8px 0;
  border-right: 1px solid rgba(243, 241, 236, 0.14);
}

.dp-path__list li:last-child {
  border-right: 0;
  padding-right: 0;
}

.dp-path__num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--dp-display);
  font-size: 2rem;
  color: var(--dp-saffron);
}

.dp-faq {
  background: var(--dp-stone);
}

.dp-faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.dp-faq__item {
  background: var(--dp-white);
  border-left: 3px solid var(--dp-saffron);
  margin-bottom: 10px;
  padding: 4px 18px 4px 20px;
}

.dp-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.dp-faq__item summary::-webkit-details-marker {
  display: none;
}

.dp-faq__item p {
  color: var(--dp-muted);
  padding-bottom: 12px;
}

.dp-contact {
  padding-bottom: 0;
  background: var(--dp-mist);
}

.dp-contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding-bottom: 56px;
}

.dp-contact__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.dp-contact__list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dp-herb);
  margin-bottom: 4px;
}

.dp-contact__list a:hover {
  color: var(--dp-saffron-deep);
}

address,
.dp-contact__list p {
  font-style: normal;
  margin: 0;
}

.dp-form {
  background: var(--dp-white);
  padding: 30px;
  box-shadow: var(--dp-shadow);
  display: grid;
  gap: 14px;
}

.dp-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
}

.dp-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dp-form input,
.dp-form textarea,
.dp-form select {
  width: 100%;
  border: 1px solid var(--dp-line);
  border-radius: 2px;
  padding: 11px 12px;
  font: inherit;
  background: var(--dp-stone);
}

.dp-form input:focus,
.dp-form textarea:focus,
.dp-form select:focus {
  outline: 2px solid var(--dp-saffron);
  border-color: transparent;
}

.dp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dp-form__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dp-muted);
  font-weight: 400;
}

.dp-form__legal a {
  text-decoration: underline;
  color: var(--dp-ink);
}

.dp-form__status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.dp-form__status.is-success {
  color: var(--dp-herb);
}

.dp-form__status.is-error {
  color: #9a3b2a;
}

.dp-map {
  height: 360px;
}

.dp-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.dp-footer {
  background: var(--dp-ink-deep);
  color: rgba(243, 241, 236, 0.82);
  padding: 64px 0 0;
}

.dp-footer .dp-logo__text {
  color: var(--dp-stone);
}

.dp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.dp-footer__heading {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dp-saffron);
  font-weight: 700;
}

.dp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dp-footer__links li {
  margin-bottom: 8px;
}

.dp-footer a:hover {
  color: var(--dp-stone);
}

.dp-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.dp-footer__bar {
  border-top: 1px solid rgba(243, 241, 236, 0.12);
  padding: 16px 0 22px;
  font-size: 0.88rem;
}

.dp-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dp-footer__bar p {
  margin: 0;
}

.dp-footer__bar a {
  margin-left: 10px;
  text-decoration: underline;
}

.dp-page {
  padding: 48px 0 88px;
}

.dp-page__inner {
  max-width: 760px;
}

.dp-article__header h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.dp-article__body h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.dp-404 {
  padding: 40px 0 80px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .dp-hero__copy,
  .dp-about__grid,
  .dp-care__grid,
  .dp-path__list,
  .dp-faq__layout,
  .dp-contact__grid,
  .dp-hours__row,
  .dp-footer__grid,
  .dp-card {
    grid-template-columns: 1fr;
  }

  .dp-hero {
    min-height: 78vh;
  }

  .dp-hero__copy {
    margin-left: 20px;
    margin-right: 20px;
    padding: 48px 0 40px;
  }

  .dp-about__media img,
  .dp-card__media img {
    min-height: 280px;
    height: 42vh;
  }

  .dp-hours__item {
    border-right: 0;
    border-bottom: 1px solid var(--dp-line);
  }

  .dp-path__list li {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 241, 236, 0.14);
    padding: 18px 0;
  }
}

@media (max-width: 760px) {
  .dp-topbar {
    display: none;
  }

  .dp-toggle {
    display: block;
  }

  .dp-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--dp-header);
    background: var(--dp-ink-deep);
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .dp-nav.is-open {
    display: flex;
  }

  .dp-nav-list {
    flex-direction: column;
    gap: 14px;
  }

  .dp-nav-list a {
    color: var(--dp-stone);
  }

  .dp-form__split,
  .dp-footer__bar-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .dp-section {
    padding: 64px 0;
  }
}
