/*
  DENTALSTUDIO LICHTHOF — Editorial Healthcare.
  ---------------------------------------------------------------------------
  Design system of this concept demo only. Every selector is prefixed `dl-` or
  scoped through the body class `.dl`, so nothing leaks into the Appvolution
  demo frame or any other demo.

  Principles
    · Full-bleed bands alternate deep petrol and porcelain. That alternation is
      the layout, not a decoration.
    · Marcellus sets every display line and every numeral, Karla the running
      text. Uppercase runs wide, lowercase runs tight.
    · Radius 0 on images, media and buttons. 999px is reserved for small pills.
    · Motion is a single gesture: a slow vertical clip-path wipe from the top.
*/

/* ------------------------------------------------------------------ tokens */
.dl {
  --dl-petrol: #0b1f24;
  --dl-petrol-deep: #07171b;
  --dl-petrol-raise: #10292f;
  --dl-porcelain: #f2efe9;
  --dl-porcelain-2: #e6e1d6;
  --dl-gold: #c8a26a;
  --dl-gold-bright: #dcbc86;
  --dl-gold-deep: #7d5e26;

  --dl-display: "Marcellus", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --dl-body: "Karla", ui-sans-serif, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --dl-shell: min(1240px, 100% - clamp(32px, 7vw, 120px));
  --dl-band-y: clamp(58px, 8vw, 132px);

  /* Contextual tokens, overwritten per band. */
  --dl-fg: #0b1f24;
  --dl-fg-soft: #4d5f63;
  --dl-rule: rgba(11, 31, 36, .16);
  --dl-accent: #7d5e26;
  --dl-num-c: #a37b34;
  --dl-field-bg: rgba(11, 31, 36, .03);
  --dl-curtain: #f2efe9;
}

/* -------------------------------------------------------------- foundation */
.dl {
  margin: var(--appv-bar-h) 0 0;
  padding: 0;
  background: var(--dl-porcelain);
  color: var(--dl-petrol);
  font-family: var(--dl-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:where(.dl) *, :where(.dl) *::before, :where(.dl) *::after { box-sizing: border-box; }

/* The anchor reset uses :where() so that button classes and link classes keep
   their own colour without needing !important. */
:where(.dl) a { color: inherit; text-decoration: none; }

:where(.dl) img, :where(.dl) picture { display: block; max-width: 100%; border-radius: 0; }
:where(.dl) img { height: auto; }
:where(.dl) h1, :where(.dl) h2, :where(.dl) h3, :where(.dl) h4 { margin: 0; font-weight: 400; }
:where(.dl) p { margin: 0 0 1.05em; }
:where(.dl) p:last-child { margin-bottom: 0; }
:where(.dl) address { font-style: normal; }

.dl a:focus-visible,
.dl button:focus-visible,
.dl input:focus-visible,
.dl select:focus-visible,
.dl textarea:focus-visible,
.dl [tabindex]:focus-visible {
  outline: 2px solid var(--dl-gold);
  outline-offset: 3px;
}

.dl .skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  padding: 12px 20px; background: var(--dl-petrol); color: var(--dl-porcelain);
  font-family: var(--dl-body); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.dl .skip:focus { left: 12px; top: calc(var(--appv-bar-h) + 12px); }

.dl-shell { width: var(--dl-shell); margin-inline: auto; }

/* ------------------------------------------------------------------- bands */
.dl-band { padding: var(--dl-band-y) 0; }
.dl-band--dark {
  --dl-fg: #f2efe9; --dl-fg-soft: #a8bcbe; --dl-rule: rgba(242, 239, 233, .2);
  --dl-accent: #c8a26a; --dl-num-c: #c8a26a; --dl-field-bg: rgba(242, 239, 233, .05);
  --dl-curtain: #0b1f24;
  background: var(--dl-petrol); color: var(--dl-porcelain); color-scheme: dark;
}
.dl-band--light {
  --dl-fg: #0b1f24; --dl-fg-soft: #4d5f63; --dl-rule: rgba(11, 31, 36, .16);
  --dl-accent: #7d5e26; --dl-num-c: #a37b34; --dl-field-bg: rgba(11, 31, 36, .03);
  --dl-curtain: #f2efe9;
  background: var(--dl-porcelain); color: var(--dl-petrol);
}
.dl-band--gold {
  --dl-fg: #0b1f24; --dl-fg-soft: #2c3d3f; --dl-rule: rgba(11, 31, 36, .3);
  --dl-accent: #0b1f24; --dl-num-c: rgba(11, 31, 36, .4);
  --dl-curtain: #c8a26a;
  background: var(--dl-gold); color: var(--dl-petrol);
}
.dl-band--rail { padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid var(--dl-rule); }

/* --------------------------------------------------------------- typography */
.dl-display {
  font-family: var(--dl-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .002em;
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  color: var(--dl-fg);
}
.dl-display em { font-style: normal; color: var(--dl-accent); }
.dl-band--dark .dl-display em { color: var(--dl-gold); }
:where(.dl) .dl-display + p, :where(.dl) .dl-display + .dl-lede { margin-top: 20px; }

.dl-eyebrow {
  margin: 0 0 14px;
  font-family: var(--dl-body);
  font-size: 11px; font-weight: 700; line-height: 1.4;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--dl-accent);
}
.dl-eyebrow--gold { color: var(--dl-gold); }

.dl-lede { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.62; color: var(--dl-fg); }
.dl-lede--light { color: #ded9d0; }
.dl-band--light p, .dl-band--gold p { color: var(--dl-fg-soft); }
.dl-band--dark p { color: #c4d0d0; }
.dl-band--light .dl-lede { color: #23383c; }

.dl-num {
  display: block;
  margin: 0 0 12px;
  font-family: var(--dl-display);
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: .82;
  letter-spacing: .01em;
  color: var(--dl-num-c);
}
.dl-num--sm { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; }

.dl-hint {
  margin: 18px 0 0;
  font-size: 13px; line-height: 1.6; color: var(--dl-fg-soft);
}
.dl-band--dark .dl-hint { color: #93a8aa; }

/* ------------------------------------------------------------------ pills */
.dl-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.dl-pill {
  display: inline-flex; align-items: center;
  padding: 5px 13px; border: 1px solid var(--dl-rule); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dl-fg-soft);
}

/* ---------------------------------------------------------------- buttons */
.dl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border: 1px solid transparent; border-radius: 0; cursor: pointer;
  font-family: var(--dl-body); font-size: 12px; font-weight: 700; line-height: 1;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.dl-btn--gold { background: var(--dl-gold); border-color: var(--dl-gold); color: #0b1f24; }
.dl-btn--gold:hover { background: var(--dl-gold-bright); border-color: var(--dl-gold-bright); color: #0b1f24; }
.dl-btn--dark { background: var(--dl-petrol); border-color: var(--dl-petrol); color: var(--dl-porcelain); }
.dl-btn--dark:hover { background: #163940; border-color: #163940; color: var(--dl-porcelain); }
.dl-btn--ghost { background: transparent; border-color: rgba(242, 239, 233, .5); color: var(--dl-porcelain); }
.dl-btn--ghost:hover { background: rgba(242, 239, 233, .1); border-color: var(--dl-porcelain); }
.dl-btn--ghostdark { background: transparent; border-color: rgba(11, 31, 36, .35); color: var(--dl-petrol); }
.dl-btn--ghostdark:hover { background: rgba(11, 31, 36, .06); border-color: var(--dl-petrol); }
.dl-btn--sm { padding: 11px 18px; font-size: 11px; letter-spacing: .16em; }
.dl-btn--lg { padding: 19px 38px; }
.dl-btn--block { display: flex; width: 100%; }
.dl-band .dl-btn { margin-top: clamp(26px, 3vw, 40px); }
.dl-band .dl-two .dl-btn, .dl-band .dl-btn--sm, .dl-head .dl-btn, .dl-mobile .dl-btn, .dl-book__nav .dl-btn { margin-top: 0; }

.dl-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 4px; border-bottom: 1px solid var(--dl-rule);
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dl-fg);
  transition: border-color .25s ease, color .25s ease;
}
.dl-link i { font-style: normal; transition: transform .3s ease; }
.dl-link:hover { border-color: var(--dl-gold); color: var(--dl-accent); }
.dl-link:hover i { transform: translateX(5px); }
.dl-link--gold { color: var(--dl-gold); }

/* ------------------------------------------------------------------ header */
.dl-head {
  position: sticky; top: var(--appv-bar-h); z-index: 30;
  background: var(--dl-petrol-deep);
  border-bottom: 1px solid rgba(200, 162, 106, .28);
  color: var(--dl-porcelain);
}
.dl-head__inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  min-height: 74px; padding: 12px 0;
}
.dl-mark { display: flex; flex-direction: column; gap: 2px; flex: 0 0 auto; }
.dl-mark__name {
  font-family: var(--dl-display); font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1; letter-spacing: .14em; text-transform: uppercase; color: var(--dl-porcelain);
}
.dl-mark__sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--dl-gold);
}
.dl-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); margin-left: auto; }
.dl-nav a {
  position: relative; padding: 6px 0;
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #cfd8d7;
  transition: color .25s ease;
}
.dl-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--dl-gold); transition: right .3s ease;
}
.dl-nav a:hover { color: var(--dl-porcelain); }
.dl-nav a:hover::after, .dl-nav a[aria-current="page"]::after { right: 0; }
.dl-nav a[aria-current="page"] { color: var(--dl-gold); }
.dl-head__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; margin-left: 0; }
.dl-nav + .dl-head__actions { margin-left: clamp(10px, 2vw, 26px); }

.dl-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 10px; cursor: pointer;
  background: transparent; border: 1px solid rgba(242, 239, 233, .32); border-radius: 0;
}
.dl-burger span { display: block; height: 1px; background: var(--dl-porcelain); transition: transform .3s ease, opacity .2s ease; }
.dl-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dl-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.dl-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 10px clamp(16px, 5vw, 32px) 24px;
  background: var(--dl-petrol-deep); border-top: 1px solid rgba(242, 239, 233, .12);
}
.dl-mobile a {
  padding: 14px 0; border-bottom: 1px solid rgba(242, 239, 233, .1);
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #dfe6e5;
}
.dl-mobile a[aria-current="page"] { color: var(--dl-gold); }
.dl-mobile .dl-btn { margin-top: 18px; border-bottom: 0; }
.dl-mobile.is-open { display: flex; }

@media (max-width: 1040px) {
  .dl-nav { display: none; }
  .dl-head__actions { margin-left: auto; }
  .dl-burger { display: flex; }
}
@media (max-width: 420px) {
  .dl-head__inner { min-height: 62px; gap: 10px; }
  .dl-head .dl-btn--sm { padding: 10px 13px; letter-spacing: .12em; }
}

/* -------------------------------------------------------------------- hero */
.dl-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(72px, 12vw, 150px) 0 clamp(34px, 5vw, 56px);
  background: var(--dl-petrol-deep); color: var(--dl-porcelain);
  --dl-fg: #f2efe9; --dl-fg-soft: #b3c3c4; --dl-rule: rgba(242, 239, 233, .24); --dl-accent: #c8a26a;
}
.dl-hero__media { position: absolute; inset: 0; z-index: -2; }
.dl-hero__media picture { height: 100%; }
.dl-hero__img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.04) brightness(.5); }
/* Three stacked scrims: a vertical one for the band edges, a horizontal one so
   the display type always sits on the darkest part of the photograph, and a
   flat floor so bright window areas can never wash out the gold. */
.dl-hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 23, 27, .95) 0%, rgba(7, 23, 27, .7) 45%, rgba(7, 23, 27, .97) 100%),
    linear-gradient(96deg, rgba(7, 23, 27, .95) 0%, rgba(7, 23, 27, .82) 46%, rgba(7, 23, 27, .42) 100%),
    rgba(7, 23, 27, .28);
}
.dl-hero__inner { position: relative; max-width: 900px; }
.dl-hero__title { font-size: clamp(2.3rem, 5.4vw, 4.3rem); margin-bottom: 26px; }
.dl-hero__lead { max-width: 58ch; font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.7; color: #d5dcda; }
.dl-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vw, 42px); }

.dl-hero__meta {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--dl-shell); margin: clamp(46px, 7vw, 92px) auto 0; padding: 0;
  list-style: none; border-top: 1px solid rgba(200, 162, 106, .42);
}
.dl-hero__meta li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px clamp(10px, 2vw, 24px) 4px 0;
}
.dl-hero__meta li + li { border-left: 1px solid rgba(242, 239, 233, .16); padding-left: clamp(14px, 2vw, 28px); }
.dl-hero__meta b { font-family: var(--dl-display); font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1; color: var(--dl-gold); }
.dl-hero__meta span { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #a7b8b9; }

@media (max-width: 720px) {
  .dl-hero__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dl-hero__meta li:nth-child(3) { border-left: 0; padding-left: 0; }
  .dl-hero__meta li:nth-child(n+3) { border-top: 1px solid rgba(242, 239, 233, .16); margin-top: 14px; }
}

/* -------------------------------------------------------------- page heads */
.dl-pagehead { padding: clamp(60px, 9vw, 128px) 0 clamp(48px, 7vw, 96px); }
.dl-pagehead h1 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); max-width: 18ch; }
.dl-pagehead__lead { max-width: 62ch; margin-top: 26px; font-size: clamp(1rem, 1.3vw, 1.14rem); color: #c4d0d0; }

/* -------------------------------------------------- asymmetric two columns */
.dl-two {
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, 1fr);
  gap: clamp(26px, 4.5vw, 92px);
  align-items: start;
}
.dl-two--head { margin-bottom: clamp(30px, 4vw, 56px); }
.dl-two__side { position: relative; }
.dl-two__side .dl-eyebrow { margin-top: 6px; }
.dl-two__main > .dl-lede { margin-bottom: 1.1em; }
@media (max-width: 900px) { .dl-two { grid-template-columns: minmax(0, 1fr); gap: 22px; } }

.dl-facts { margin: clamp(26px, 3vw, 40px) 0 0; padding: 0; list-style: none; }
.dl-facts li {
  display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1fr); gap: 8px 26px;
  padding: 18px 0; border-top: 1px solid var(--dl-rule);
}
.dl-facts li:last-child { border-bottom: 1px solid var(--dl-rule); }
.dl-facts b { font-family: var(--dl-display); font-size: 1.08rem; color: var(--dl-fg); }
.dl-facts span { font-size: 14.5px; line-height: 1.65; color: var(--dl-fg-soft); }
.dl-facts--light span { color: #b6c4c4; }
@media (max-width: 620px) { .dl-facts li { grid-template-columns: minmax(0, 1fr); gap: 4px; } }

/* ------------------------------------------------- signature: treatment path */
.dl-path { margin-top: clamp(30px, 4vw, 52px); }
.dl-path__scroll {
  overflow-x: auto; overflow-y: hidden;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--dl-gold) transparent;
  scroll-snap-type: x proximity;
}
.dl-path__scroll::-webkit-scrollbar { height: 4px; }
.dl-path__scroll::-webkit-scrollbar-thumb { background: var(--dl-gold); }
.dl-path__scroll::-webkit-scrollbar-track { background: var(--dl-rule); }
.dl-path__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(238px, 1fr);
  min-width: 100%; margin: 0; padding: 0; list-style: none;
}
.dl-path__node {
  position: relative; scroll-snap-align: start;
  padding: 34px clamp(18px, 2.4vw, 32px) 0 0;
}
.dl-path__node::before {
  content: ""; position: absolute; top: 6px; left: 13px; right: 0; height: 1px;
  background: var(--dl-rule);
}
.dl-path__node:last-child::before { display: none; }
.dl-path__dot {
  position: absolute; top: 0; left: 0; width: 13px; height: 13px;
  border: 1px solid var(--dl-gold); border-radius: 50%; background: transparent;
}
.dl-path__dot::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--dl-gold);
}
.dl-path__idx {
  display: block; margin-bottom: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dl-accent);
}
.dl-path__title { font-family: var(--dl-display); font-size: 1.24rem; line-height: 1.22; color: var(--dl-fg); }
.dl-path__dur {
  display: inline-flex; margin: 12px 0 12px; padding: 4px 12px;
  border: 1px solid var(--dl-rule); border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dl-fg-soft);
}
.dl-path__text { font-size: 14.5px; line-height: 1.65; }
.dl-path__note {
  margin: clamp(20px, 3vw, 30px) 0 0; padding-left: 18px;
  border-left: 2px solid var(--dl-gold);
  font-size: 14px; line-height: 1.65; color: var(--dl-fg-soft);
}
.dl-band--dark .dl-path__note { color: #b6c4c4; }

/* --------------------------------------------------- signature: cost range */
.dl-cost { margin-top: clamp(22px, 3vw, 32px); }
.dl-cost__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 18px;
  padding-bottom: 12px;
}
.dl-cost__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dl-accent);
}
.dl-cost__value { font-family: var(--dl-display); font-size: clamp(1.15rem, 1.9vw, 1.5rem); color: var(--dl-fg); }
.dl-cost__track {
  position: relative; height: 3px; background: var(--dl-rule);
}
.dl-cost__span {
  position: absolute; top: 0; bottom: 0;
  left: var(--dl-a); width: max(6px, calc(var(--dl-b) - var(--dl-a)));
  background: var(--dl-gold);
}
.dl-cost__span::before, .dl-cost__span::after {
  content: ""; position: absolute; top: -6px; width: 1px; height: 15px; background: var(--dl-gold);
}
.dl-cost__span::before { left: 0; }
.dl-cost__span::after { right: 0; }
.dl-cost__scale {
  display: flex; justify-content: space-between; margin-top: 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .12em; color: var(--dl-fg-soft);
}
.dl-cost__unit {
  margin: 10px 0 0;
  font-size: 12.5px; letter-spacing: .04em; color: var(--dl-fg-soft);
}
.dl-band--dark .dl-cost__unit, .dl-band--dark .dl-cost__scale { color: #9db0b1; }

.dl-costgrid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(24px, 3vw, 46px);
}
.dl-costcard { padding-top: 22px; border-top: 1px solid var(--dl-rule); }
.dl-costcard__head { display: flex; align-items: baseline; gap: 14px; }
.dl-costcard__head h3 { font-family: var(--dl-display); font-size: 1.3rem; line-height: 1.2; color: var(--dl-fg); }
.dl-cost--compact .dl-cost__head { padding-bottom: 10px; }

/* ----------------------------------------------------------------- teasers */
.dl-teaser { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 34px); }
.dl-teaser__item { margin: 0; }
.dl-teaser__media { display: block; overflow: hidden; }
.dl-teaser__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(.2) contrast(1.02); transition: transform .8s cubic-bezier(.2, .8, .3, 1); }
.dl-teaser__item:hover .dl-teaser__media img { transform: scale(1.035); }
.dl-teaser figcaption { display: block; padding-top: 16px; border-top: 1px solid var(--dl-rule); margin-top: 16px; }
.dl-teaser__role {
  display: block; margin-bottom: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dl-gold);
}
.dl-teaser__name { display: block; font-family: var(--dl-display); font-size: 1.15rem; line-height: 1.3; color: var(--dl-fg); }
@media (max-width: 860px) { .dl-teaser { grid-template-columns: minmax(0, 1fr); } }

.dl-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(26px, 4vw, 74px); align-items: center; }
/* Interiors are pulled towards the petrol palette so no photograph introduces a
   fourth colour into the band rhythm. */
.dl-split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(.72) contrast(1.06); }
@media (max-width: 900px) { .dl-split { grid-template-columns: minmax(0, 1fr); } }

.dl-cta { text-align: center; }
.dl-cta .dl-display { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.dl-cta .dl-eyebrow { margin-bottom: 18px; }

/* -------------------------------------------------------------------- rail */
.dl-rail { display: flex; gap: clamp(14px, 2.4vw, 34px); overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.dl-rail a {
  display: inline-flex; align-items: baseline; gap: 9px; white-space: nowrap;
  font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--dl-fg-soft);
  transition: color .25s ease;
}
/* --dl-num-c is the token for the large decorative numerals. At 1.05rem the
   rail numeral counts as small text, so it takes the darker accent instead. */
.dl-rail a b { font-family: var(--dl-display); font-size: 1.05rem; letter-spacing: 0; color: var(--dl-accent); }
.dl-rail a:hover { color: var(--dl-fg); }

/* --------------------------------------------------------------- treatments */
.dl-treat .dl-two--head { margin-bottom: clamp(20px, 3vw, 34px); }

/* ------------------------------------------------------------------ tables */
.dl-tablewrap { overflow-x: auto; margin-top: clamp(22px, 3vw, 34px); scrollbar-width: thin; }
.dl-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; }
.dl-table caption { text-align: left; }
.dl-table th, .dl-table td {
  padding: 15px 18px 15px 0; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--dl-rule); color: var(--dl-fg-soft);
}
.dl-table thead th {
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dl-accent); border-bottom-color: var(--dl-fg);
}
.dl-table tbody th { font-family: var(--dl-display); font-size: 1.05rem; font-weight: 400; color: var(--dl-fg); }
.dl-table__num { font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--dl-fg); }
.dl-table--narrow { min-width: 480px; }

/* -------------------------------------------------------------------- team */
/* The portrait keeps the same generous column on both sides of the layout —
   only its order flips, never its width. */
.dl-person { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); gap: clamp(26px, 4vw, 78px); align-items: center; }
.dl-person--flip { grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); }
.dl-person__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(.18) contrast(1.03); }
.dl-person--flip .dl-person__media { order: 2; }
.dl-person__copy .dl-display { margin-bottom: 18px; }
.dl-person__copy > p { max-width: 56ch; }
@media (max-width: 900px) {
  .dl-person, .dl-person--flip { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .dl-person--flip .dl-person__media { order: 0; }
}

.dl-deflist { margin: clamp(22px, 3vw, 32px) 0 0; padding: 0; }
.dl-deflist > div {
  display: grid; grid-template-columns: minmax(0, .42fr) minmax(0, 1fr); gap: 6px 24px;
  padding: 14px 0; border-top: 1px solid var(--dl-rule);
}
.dl-deflist > div:last-child { border-bottom: 1px solid var(--dl-rule); }
.dl-deflist dt {
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dl-accent);
}
.dl-deflist dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--dl-fg-soft); }
.dl-deflist--light dd { color: #c4d0d0; }
@media (max-width: 620px) { .dl-deflist > div { grid-template-columns: minmax(0, 1fr); } }

.dl-wide { margin: 0; }
.dl-wide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.dl-wide figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--dl-rule); font-size: 13.5px; color: var(--dl-fg-soft); }

.dl-hours { margin: clamp(22px, 3vw, 30px) 0 0; padding: 0; }
.dl-hours > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--dl-rule); }
.dl-hours dt { font-size: 13.5px; color: var(--dl-fg-soft); }
.dl-hours dd { margin: 0; font-size: 13.5px; font-variant-numeric: tabular-nums; color: var(--dl-fg); }

/* ------------------------------------------------------------------- tour */
.dl-tour { display: grid; grid-template-columns: minmax(0, 330px) minmax(0, 1fr); gap: clamp(26px, 4vw, 66px); align-items: start; }
.dl-tour__list { margin: 0; padding: 0; list-style: none; }
.dl-tour__btn {
  display: flex; align-items: baseline; gap: 16px; width: 100%;
  padding: 18px 12px 18px 0; border: 0; border-top: 1px solid var(--dl-rule);
  border-left: 2px solid transparent; border-radius: 0;
  background: transparent; text-align: left; cursor: pointer; font-family: var(--dl-body);
  transition: border-color .25s ease, padding-left .25s ease, background .25s ease;
}
.dl-tour__list li:last-child .dl-tour__btn { border-bottom: 1px solid var(--dl-rule); }
/* The station numeral is part of the tab label, not a hairline: it takes the
   muted text colour, never the border token (which sits at ~1.4:1). */
.dl-tour__btn .dl-num { color: var(--dl-fg-soft); transition: color .25s ease; }
.dl-tour__btnbody { display: block; }
.dl-tour__btnbody b { display: block; font-family: var(--dl-display); font-size: 1.15rem; font-weight: 400; line-height: 1.25; color: var(--dl-fg); }
.dl-tour__btnbody i {
  display: block; margin-top: 5px; font-style: normal;
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--dl-fg-soft);
}
.dl-tour__btn:hover { padding-left: 10px; border-left-color: rgba(200, 162, 106, .5); }
.dl-tour__btn.is-active { padding-left: 14px; border-left-color: var(--dl-gold); background: rgba(200, 162, 106, .1); }
.dl-tour__btn.is-active .dl-num { color: var(--dl-num-c); }

.dl-tour__stage { min-width: 0; }
.dl-tour__panel { display: grid; gap: clamp(20px, 3vw, 32px); }
/* Light desaturation only — the same amount the portraits get. A stronger pull
   would flatten the wood wall and the treatment chairs that carry these rooms. */
.dl-tour__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: grayscale(.18) contrast(1.04); }
.dl-tour__copy .dl-display { margin-bottom: 14px; }
.dl-tour__copy p { max-width: 62ch; }
.dl-tour__nav {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(24px, 3vw, 34px); padding-top: 20px; border-top: 1px solid var(--dl-rule);
}
.dl-tour__count { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dl-fg-soft); }
@media (max-width: 960px) { .dl-tour { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------- forms */
.dl-field { display: block; margin-bottom: 20px; }
.dl-field > span {
  display: block; margin-bottom: 9px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dl-accent);
}
.dl-field input, .dl-field select, .dl-field textarea {
  display: block; width: 100%; padding: 14px 16px;
  border: 1px solid var(--dl-rule); border-radius: 0;
  background: var(--dl-field-bg); color: var(--dl-fg);
  font-family: var(--dl-body); font-size: 15px; line-height: 1.5;
  transition: border-color .2s ease, background .2s ease;
}
.dl-field textarea { resize: vertical; min-height: 110px; }
.dl-field input:focus, .dl-field select:focus, .dl-field textarea:focus { border-color: var(--dl-gold); }
.dl-field input::placeholder, .dl-field textarea::placeholder { color: var(--dl-fg-soft); opacity: .7; }
.dl-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
.dl-field--wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .dl-fields { grid-template-columns: minmax(0, 1fr); } }

/* Booking strecke */
.dl-book { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: clamp(26px, 4vw, 64px); align-items: start; }
.dl-book__form { min-width: 0; }
@media (max-width: 1000px) { .dl-book { grid-template-columns: minmax(0, 1fr); } }

.dl-steps {
  display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 44px);
  margin: 0 0 clamp(28px, 4vw, 44px); padding: 0 0 20px;
  border-bottom: 1px solid var(--dl-rule); list-style: none;
}
/* State is carried by colour, not by opacity: a 10.5px uppercase label faded to
   .42 lands at 2.6:1. Every state below stays above 4.5:1 on both bands. */
.dl-steps li { display: flex; align-items: baseline; gap: 10px; color: var(--dl-fg-soft); transition: color .3s ease; }
.dl-steps li b { font-family: var(--dl-display); font-size: 1.5rem; line-height: 1; color: var(--dl-fg-soft); transition: color .3s ease; }
.dl-steps li span { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.dl-steps li.is-active { color: var(--dl-fg); }
.dl-steps li.is-active b, .dl-steps li.is-done b { color: var(--dl-accent); }

.dl-step { display: none; margin: 0; padding: 0; border: 0; min-width: 0; }
.dl-step.is-active { display: block; }
/* A floated legend collapses the following grid to zero height — it stays a
   block-level element on its own line. */
.dl-step > legend {
  display: block; width: 100%; float: none; margin: 0 0 22px; padding: 0;
  font-family: var(--dl-display); font-size: clamp(1.35rem, 2.4vw, 1.95rem); line-height: 1.2;
  color: var(--dl-fg);
}

.dl-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 26px; }
@media (max-width: 700px) { .dl-choices { grid-template-columns: minmax(0, 1fr); } }
.dl-choice { position: relative; display: block; cursor: pointer; }
.dl-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dl-choice__body {
  display: block; height: 100%; padding: 18px 20px;
  border: 1px solid var(--dl-rule); border-radius: 0;
  transition: border-color .2s ease, background .2s ease;
}
.dl-choice__body b { display: block; font-family: var(--dl-display); font-size: 1.15rem; font-weight: 400; color: var(--dl-fg); }
.dl-choice__body i {
  display: block; margin-top: 6px; font-style: normal;
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--dl-fg-soft);
}
.dl-choice__body em { display: block; margin-top: 10px; font-style: normal; font-size: 13.5px; color: var(--dl-accent); }
.dl-choice:hover .dl-choice__body { border-color: rgba(200, 162, 106, .6); }
.dl-choice input:checked + .dl-choice__body { border-color: var(--dl-gold); background: rgba(200, 162, 106, .12); }
.dl-choice input:focus-visible + .dl-choice__body { outline: 2px solid var(--dl-gold); outline-offset: 3px; }

.dl-days { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.dl-day {
  display: flex; flex-direction: column; gap: 3px; padding: 11px 16px; cursor: pointer;
  border: 1px solid var(--dl-rule); border-radius: 0; background: transparent;
  font-family: var(--dl-body); text-align: left;
  transition: border-color .2s ease, background .2s ease;
}
.dl-day b { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dl-fg); }
.dl-day i { font-style: normal; font-size: 11px; color: var(--dl-fg-soft); }
.dl-day:hover { border-color: rgba(200, 162, 106, .6); }
.dl-day.is-active { border-color: var(--dl-gold); background: var(--dl-petrol); }
.dl-day.is-active b { color: var(--dl-gold); }
.dl-day.is-active i { color: #b3c3c4; }

.dl-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.dl-slot {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 62px; padding: 10px 8px; cursor: pointer;
  border: 1px solid var(--dl-rule); border-radius: 0;
  font-variant-numeric: tabular-nums;
  transition: border-color .2s ease, background .2s ease;
}
.dl-slot input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dl-slot > span { font-family: var(--dl-display); font-size: 1.18rem; color: var(--dl-fg); }
.dl-slot:hover { border-color: rgba(200, 162, 106, .7); }
.dl-slot:has(input:checked), .dl-slot.is-picked { border-color: var(--dl-gold); background: var(--dl-petrol); }
.dl-slot:has(input:checked) > span, .dl-slot.is-picked > span { color: var(--dl-gold); }
.dl-slot:has(input:focus-visible) { outline: 2px solid var(--dl-gold); outline-offset: 3px; }
.dl-slot.is-taken { cursor: not-allowed; border-style: dashed; background: transparent; }
.dl-slot.is-taken > span { color: var(--dl-fg-soft); text-decoration: line-through; opacity: .65; }
.dl-slot.is-taken i { font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dl-fg-soft); }
.dl-slot.is-taken:hover { border-color: var(--dl-rule); }

.dl-book__nav { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: clamp(26px, 3vw, 38px); padding-top: 24px; border-top: 1px solid var(--dl-rule); }

.dl-book__side {
  padding: clamp(24px, 3vw, 36px);
  background: var(--dl-petrol); color: var(--dl-porcelain);
  --dl-fg: #f2efe9; --dl-fg-soft: #a8bcbe; --dl-rule: rgba(242, 239, 233, .2); --dl-accent: #c8a26a;
}
.dl-book__title { font-size: 1.7rem; margin-bottom: 6px; }
.dl-book__note { margin-top: 20px; font-size: 12.5px; line-height: 1.6; color: #9db0b1; }
.dl-book__media { margin-top: 22px; }
.dl-book__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(.25); }
.dl-recap { margin: 18px 0 0; padding: 0; }
.dl-recap > div { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1fr); gap: 6px 16px; padding: 11px 0; border-top: 1px solid var(--dl-rule); }
.dl-recap dt { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dl-gold); }
.dl-recap dd { margin: 0; font-size: 13.5px; line-height: 1.5; color: #dde4e2; }

/* --------------------------------------------------------------------- FAQ */
.dl-qa { border-top: 1px solid var(--dl-rule); }
.dl-qa__item { border-bottom: 1px solid var(--dl-rule); }
.dl-qa h3 { margin: 0; }
.dl-qa button {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%;
  padding: 22px 0; border: 0; border-radius: 0; background: transparent; cursor: pointer;
  font-family: var(--dl-display); font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 400;
  line-height: 1.3; text-align: left; color: var(--dl-fg);
  transition: color .2s ease;
}
.dl-qa button:hover { color: var(--dl-accent); }
.dl-qa button i { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.dl-qa button i::before, .dl-qa button i::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 16px; height: 1px;
  background: var(--dl-accent); transition: transform .3s ease;
}
.dl-qa button i::after { transform: rotate(90deg); }
.dl-qa button[aria-expanded="true"] i::after { transform: rotate(0deg); }
.dl-qa__body { padding: 0 0 24px; }
.dl-qa__body p { max-width: 68ch; font-size: 15px; }

/* ----------------------------------------------------------------- contact */
.dl-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 76px); align-items: start; }
@media (max-width: 900px) { .dl-contact { grid-template-columns: minmax(0, 1fr); } }
.dl-form { padding: clamp(24px, 3vw, 38px); border: 1px solid var(--dl-rule); background: rgba(242, 239, 233, .04); }
.dl-form__title { margin-bottom: 24px; font-family: var(--dl-display); font-size: 1.5rem; color: var(--dl-fg); }
.dl-form select { color-scheme: dark; }
.dl-form__range {
  margin: -6px 0 22px; padding: 14px 16px;
  border-left: 2px solid var(--dl-gold); background: rgba(200, 162, 106, .1);
  font-size: 13.5px; line-height: 1.6; color: #dbe2e0;
}
.dl-form__range b { font-family: var(--dl-display); font-size: 1.1rem; color: var(--dl-gold); }
.dl-form__hint { margin-top: 18px; font-size: 12.5px; color: #93a8aa; }
.dl-form .dl-btn { margin-top: 8px; }

/* ------------------------------------------------------------------ footer */
.dl-foot { padding: clamp(48px, 6vw, 88px) 0 34px; background: var(--dl-petrol-deep); color: var(--dl-porcelain); --dl-rule: rgba(242, 239, 233, .16); }
.dl-foot__grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(26px, 3.5vw, 60px);
  padding-bottom: clamp(30px, 4vw, 50px); border-bottom: 1px solid var(--dl-rule);
}
.dl-foot__brand p { margin-top: 16px; max-width: 40ch; font-size: 14px; line-height: 1.7; color: #a8bcbe; }
.dl-foot__col h2 { margin-bottom: 16px; font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--dl-gold); font-family: var(--dl-body); }
.dl-foot__hours { margin: 0; padding: 0; }
.dl-foot__hours > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 14px; padding: 7px 0; border-bottom: 1px solid var(--dl-rule); }
.dl-foot__hours dt, .dl-foot__hours dd { margin: 0; font-size: 13px; color: #b6c4c4; }
.dl-foot__hours dd { font-variant-numeric: tabular-nums; color: var(--dl-porcelain); }
.dl-foot address { font-size: 13.5px; line-height: 1.9; color: #b6c4c4; }
.dl-foot__links { margin: 0; padding: 0; list-style: none; }
.dl-foot__links li { padding: 5px 0; }
.dl-foot__links a { font-size: 13px; color: #b6c4c4; transition: color .2s ease; }
.dl-foot__links a:hover { color: var(--dl-gold); }
.dl-note { margin: 26px 0 0; font-size: 12px; line-height: 1.7; color: #8ba0a2; }
.dl-note a { color: var(--dl-gold); border-bottom: 1px solid rgba(200, 162, 106, .4); }

@media (max-width: 980px) { .dl-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .dl-foot__grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ motion */
/* The vertical wipe is painted by a curtain in the band colour that retreats
   downwards — NOT by clip-path on the revealed element itself.
   Chrome clips a target's IntersectionObserver rect by its own clip-path, so
   `clip-path: inset(0 0 100% 0)` reports ratio 0 forever: the observer would
   never fire and the section would stay hidden for good. The curtain keeps the
   element's geometry and hit-testing intact.
   Reveal is opt-in and gated: with reduced motion, no rule hides anything. */
@media (prefers-reduced-motion: no-preference) {
  html.appv-demo [data-reveal] {
    position: relative;
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: var(--dl-d, 0s);
  }
  html.appv-demo [data-reveal]::after {
    content: ""; position: absolute; inset: -1px 0; z-index: 5; pointer-events: none;
    background: var(--dl-curtain);
    transform: scaleY(1); transform-origin: 50% 100%;
    transition: transform .46s cubic-bezier(.22, .82, .26, 1);
    transition-delay: var(--dl-d, 0s);
  }
  html.appv-demo [data-reveal].is-in { opacity: 1; }
  html.appv-demo [data-reveal].is-in::after { transform: scaleY(0); }

  html.appv-demo .dl-costgrid > [data-reveal]:nth-child(2),
  html.appv-demo .dl-teaser > [data-reveal]:nth-child(2) { --dl-d: .03s; }
  html.appv-demo .dl-costgrid > [data-reveal]:nth-child(3),
  html.appv-demo .dl-teaser > [data-reveal]:nth-child(3) { --dl-d: .06s; }
  html.appv-demo .dl-costgrid > [data-reveal]:nth-child(4) { --dl-d: .03s; }
  html.appv-demo .dl-costgrid > [data-reveal]:nth-child(5) { --dl-d: .06s; }
  html.appv-demo .dl-costgrid > [data-reveal]:nth-child(6) { --dl-d: .09s; }
}

/* ------------------------------------------------------------------- print */
@media print {
  .dl-head, .dl-mobile, .dl-burger, .dl-book__nav { display: none !important; }
  .dl-band--dark, .dl-hero { background: #fff !important; color: #000 !important; }
}
