/*
  STUDIO MARLÈNE — concept demo stylesheet.
  Design language: beauty editorial. Bone canvas, one warm clay accent, an
  oversized Instrument Serif display over Jost, images that step out of the
  grid and overlap each other, a slow marquee band, round portraits and a price
  index set like a magazine table. Corners stay square (0–2px), only portraits
  are round.
*/

.sm {
  --bone: #f4ece7;
  --bone-2: #eaddd5;
  --bone-3: #fbf6f3;
  --ink: #231b1a;
  --ink-2: #574845;
  /* ink-3 carries the smallest grades (labels, captions, unselected price
     columns) and has to clear 4.5:1 on the darkest surface it ever sits on —
     that is --bone-2, not --bone. #715f5a gives 5.16:1 on bone, 4.53:1 on
     bone-2. */
  --ink-3: #715f5a;
  /* The clay accent carries every kicker at .68rem. It also appears on the
     bone-2 panels and on the ton-soft tint, so it is set for the darkest of
     those: 5.1:1 on bone, 4.5:1 on bone-2. */
  --ton: #9c4b44;
  /* Same accent for the dark bands — on --ink the bone-side variant is needed
     to reach 5.6:1 (the clay tone itself would land at 3.2:1). */
  --ton-light: #c9827a;
  --ton-soft: rgba(156, 75, 68, .09);
  --line: rgba(35, 27, 26, .2);
  --line-soft: rgba(35, 27, 26, .09);
  --display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --wrap: 1360px;
  --gut: clamp(18px, 4.5vw, 64px);

  margin: var(--appv-bar-h) 0 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.sm *, .sm *::before, .sm *::after { box-sizing: border-box; }
:where(.sm) img { display: block; max-width: 100%; height: auto; }
/* :where() keeps the reset at zero specificity so button and link classes can
   still set their own colour. */
:where(.sm) a { color: inherit; text-decoration: none; }
:where(.sm) p { margin: 0 0 1.05em; }
.sm h1, .sm h2, .sm h3 { margin: 0; font-weight: 400; }
:where(.sm) address { font-style: normal; line-height: 1.85; }
.sm :focus-visible { outline: 2px solid var(--ton); outline-offset: 3px; }

.sm .skip {
  position: fixed; left: 12px; top: -90px; z-index: 200; padding: 12px 18px;
  border-radius: 2px; color: var(--bone); background: var(--ink); transition: top .2s ease;
}
.sm .skip:focus { top: calc(var(--appv-bar-h) + 10px); }

.sm-wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }

/* ------------------------------------------------------------- typography */

.sm-display {
  font-family: var(--display); font-weight: 400; line-height: .9;
  letter-spacing: -.03em; margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}
.sm-display--page { font-size: clamp(2.9rem, 8.4vw, 7rem); }
.sm-display--page span { display: block; }
.sm-display--page span + span { color: var(--ton); padding-left: .07em; }
.sm .sm-display.sm-display--sm { font-size: clamp(1.75rem, 3.1vw, 2.7rem); }

.sm-kicker {
  margin: 0 0 18px; font-size: .68rem; font-weight: 400; letter-spacing: .34em;
  text-transform: uppercase; color: var(--ton);
}
.sm-kicker--light { color: rgba(244, 236, 231, .72); }
.sm-lede {
  margin: 0; font-family: var(--display); font-size: clamp(1.6rem, 3.3vw, 2.9rem);
  line-height: 1.14; letter-spacing: -.02em;
}
.sm-hint { margin: 0 0 18px; font-size: .84rem; line-height: 1.6; color: var(--ink-3); }

/* ---------------------------------------------------------------- buttons */

.sm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px; border: 1px solid var(--ink); border-radius: 2px;
  color: var(--bone); background: var(--ink); cursor: pointer;
  font-family: var(--sans); font-size: .73rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; text-align: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.sm-btn:hover { color: #fff; background: var(--ton); border-color: var(--ton); }
.sm-btn--lg { min-height: 56px; padding: 16px 32px; }
.sm-btn--quiet { color: var(--ink); background: transparent; border-color: var(--line); }
.sm-btn--quiet:hover { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.sm-btn--light { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.sm-btn--light:hover { color: #fff; background: var(--ton); border-color: var(--ton); }
.sm-btn--block { display: flex; width: 100%; }

.sm-link {
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px;
  border-bottom: 1px solid var(--line); color: var(--ink);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  transition: color .22s ease, border-color .22s ease;
}
.sm-link:hover { color: var(--ton); border-color: var(--ton); }
.sm-link i { font-style: normal; transition: transform .22s ease; }
.sm-link:hover i { transform: translateX(6px); }
.sm-link--lg { margin-top: clamp(30px, 4vw, 56px); }

/* ----------------------------------------------------------------- header */

.sm-head {
  position: sticky; top: var(--appv-bar-h); z-index: 90;
  background: rgba(244, 236, 231, .94); border-bottom: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.sm-head__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 36px); min-height: 74px; }
.sm-mark { flex: 0 0 auto; display: flex; flex-direction: column; line-height: 1; }
.sm-mark__name { font-family: var(--display); font-size: 1.9rem; letter-spacing: -.02em; }
.sm-mark__sub { margin-top: 5px; font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-3); }
.sm-nav { display: flex; gap: clamp(16px, 2.2vw, 30px); margin-inline-start: auto; }
.sm-nav a {
  position: relative; padding: 4px 0; font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-2); transition: color .2s ease;
}
.sm-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--ton); transition: right .3s ease;
}
.sm-nav a:hover { color: var(--ink); }
.sm-nav a:hover::after, .sm-nav a[aria-current]::after { right: 0; }
.sm-nav a[aria-current] { color: var(--ton); }
.sm-head__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }

.sm-burger {
  display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line);
  border-radius: 2px; background: none; cursor: pointer;
}
.sm-burger span { display: block; width: 18px; height: 1px; margin: 4px auto; background: var(--ink); transition: transform .24s ease, opacity .24s ease; }
.sm-burger[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
.sm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sm-burger[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }
.sm-mobile { display: none; }

@media (max-width: 980px) {
  .sm-nav { display: none; }
  .sm-burger { display: block; }
  .sm-head__actions { margin-inline-start: auto; }
  .sm-mobile {
    display: none; flex-direction: column; gap: 4px;
    padding: 10px var(--gut) 24px; border-top: 1px solid var(--line-soft); background: var(--bone);
  }
  .sm-mobile.is-open { display: flex; }
  .sm-mobile a {
    padding: 13px 0; border-bottom: 1px solid var(--line-soft);
    font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  }
  .sm-mobile a[aria-current] { color: var(--ton); }
  .sm-mobile .sm-btn { margin-top: 16px; border-bottom: 0; }
}
@media (max-width: 560px) {
  .sm-head__cta { display: none; }
  .sm-mark__name { font-size: 1.6rem; }
  .sm-head__inner { min-height: 64px; }
}

/* ------------------------------------------------------------------- hero */

.sm-hero { padding: clamp(34px, 5.5vw, 88px) 0 clamp(50px, 7vw, 110px); }
.sm-hero__grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  column-gap: clamp(14px, 2vw, 34px); row-gap: clamp(24px, 4vw, 46px); align-items: start;
}
.sm-hero__type { grid-column: 1 / 8; grid-row: 1; position: relative; z-index: 2; }
.sm-hero__title { font-size: clamp(3.4rem, 12vw, 10.5rem); }
.sm-hero__title span { display: block; }
.sm-hero__title span + span { color: var(--ton); padding-left: .09em; }
.sm-hero__media { grid-column: 6 / 13; grid-row: 1 / 3; position: relative; margin: clamp(24px, 5vw, 82px) 0 0; }
.sm-hero__cap {
  position: absolute; left: -36px; bottom: 30px; margin: 0; padding: 10px 18px;
  background: var(--ink); color: var(--bone);
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
}
.sm-hero__meta { grid-column: 1 / 6; grid-row: 2; position: relative; z-index: 2; }
.sm-hero__lead { max-width: 42ch; margin: 0 0 28px; font-size: 1.05rem; color: var(--ink-2); }
.sm-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }

@media (max-width: 900px) {
  .sm-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .sm-hero__type, .sm-hero__media, .sm-hero__meta { grid-column: 1 / -1; grid-row: auto; }
  .sm-hero__media { margin-top: 0; }
  .sm-hero__cap { left: 14px; bottom: 14px; }
}

/* ---------------------------------------------------------------- marquee */

.sm-marquee {
  overflow: hidden; padding: 15px 0; color: var(--bone); background: var(--ink);
}
.sm-marquee__track {
  display: flex; width: max-content;
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; white-space: nowrap;
}
.sm-marquee__track span { display: block; padding-right: 0; }
.sm-marquee__track i { font-style: normal; color: var(--ton-light); padding: 0 .45em; }
@media (prefers-reduced-motion: no-preference) {
  .sm-marquee__track { animation: sm-marquee 46s linear infinite; }
  @keyframes sm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
}

/* --------------------------------------------------------------- sections */

.sm-section { padding: clamp(56px, 7.5vw, 126px) 0; }
/* Deep links land under the Appvolution demo bar plus this demo's own sticky
   header (75px) — every jump target keeps that much clearance. */
.sm-section[id], .sm-tr { scroll-margin-top: calc(var(--appv-bar-h) + 110px); }
.sm-section--tight { padding: clamp(26px, 3vw, 44px) 0 clamp(56px, 7.5vw, 110px); }
.sm-secthead { margin-bottom: clamp(32px, 4vw, 60px); }
.sm-secthead--split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  gap: clamp(16px, 3vw, 50px); align-items: end;
}
.sm-secthead--split p { margin: 0; color: var(--ink-2); }
@media (max-width: 820px) { .sm-secthead--split { grid-template-columns: minmax(0, 1fr); } }

.sm-pagehead { padding: clamp(42px, 5.5vw, 96px) 0 clamp(26px, 3vw, 48px); }
/* A page head already carries its own bottom air — the first section below it
   must not stack a second full section padding on top. */
.sm-pagehead + .sm-section { padding-top: clamp(14px, 2vw, 34px); }
.sm-pagehead__lead { max-width: 56ch; margin: 26px 0 0; font-size: 1.05rem; color: var(--ink-2); }

/* ------------------------------------------------------------------ intro */

.sm-intro__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 80px); align-items: start;
}
.sm-intro__side { padding-top: clamp(10px, 2.5vw, 40px); border-top: 1px solid var(--line); }
.sm-intro__side p { color: var(--ink-2); }
@media (max-width: 820px) { .sm-intro__grid { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------- editorial index */

.sm-indexlist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.sm-indexlist li { border-bottom: 1px solid var(--line); }
.sm-indexlist a {
  display: grid; grid-template-columns: 3.2rem minmax(0, 1fr) 8rem 6rem 7rem;
  align-items: baseline; gap: 14px; padding: 20px 12px; margin-inline: -12px;
  transition: background .3s ease;
}
.sm-indexlist a:hover { background: var(--bone-2); }
.sm-indexlist a:hover .sm-indexlist__name { color: var(--ton); }
.sm-indexlist__no { font-family: var(--display); font-size: 1.15rem; color: var(--ton); }
.sm-indexlist__name { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.35rem); line-height: 1; letter-spacing: -.02em; transition: color .25s ease; }
.sm-indexlist__fam, .sm-indexlist__dur { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-indexlist__price { text-align: right; font-size: .92rem; color: var(--ink-2); white-space: nowrap; }

@media (max-width: 780px) {
  .sm-indexlist a { grid-template-columns: 2.4rem minmax(0, 1fr) auto; gap: 4px 14px; }
  .sm-indexlist__no { grid-column: 1; grid-row: 1 / 3; }
  .sm-indexlist__name { grid-column: 2; grid-row: 1; }
  .sm-indexlist__price { grid-column: 3; grid-row: 1; }
  .sm-indexlist__fam { grid-column: 2; grid-row: 2; }
  .sm-indexlist__dur { grid-column: 3; grid-row: 2; text-align: right; }
}

/* ---------------------------------------------------------------- gallery */

.sm-works__row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 38px); align-items: start;
}
.sm-works__row .sm-shot:nth-child(2) { margin-top: clamp(20px, 5vw, 88px); }
.sm-works__row .sm-shot:nth-child(3) { margin-top: clamp(8px, 2.2vw, 36px); }
@media (max-width: 820px) {
  .sm-works__row { grid-template-columns: minmax(0, 1fr); }
  .sm-works__row .sm-shot { margin-top: 0; }
}

.sm-shot { margin: 0; }
.sm-shot__btn {
  display: block; width: 100%; padding: 0; border: 0; border-radius: 0;
  background: var(--bone-2); cursor: pointer; position: relative; overflow: hidden;
}
.sm-shot__btn img { width: 100%; height: auto; transition: transform .9s cubic-bezier(.2, .7, .3, 1); }
.sm-shot__btn:hover img { transform: scale(1.045); }
.sm-shot__zoom {
  position: absolute; left: 14px; bottom: 14px; padding: 8px 15px;
  background: var(--bone); color: var(--ink);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.sm-shot__btn:hover .sm-shot__zoom, .sm-shot__btn:focus-visible .sm-shot__zoom { opacity: 1; transform: none; }
.sm-shot figcaption { margin-top: 12px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

/* Multi-column flow instead of a grid: portrait and landscape shots keep their
   own height and stack like a picture spread instead of leaving holes. */
.sm-galerie__grid { columns: 3; column-gap: clamp(16px, 2.4vw, 36px); }
.sm-galerie__grid .sm-shot { break-inside: avoid; margin: 0 0 clamp(16px, 2.4vw, 36px); }
.sm-galerie__grid .sm-shot:first-child { margin-top: clamp(18px, 4vw, 56px); }
@media (max-width: 760px) { .sm-galerie__grid { columns: 2; } }
@media (max-width: 460px) {
  .sm-galerie__grid { columns: 1; }
  .sm-galerie__grid .sm-shot:first-child { margin-top: 0; }
}

/* ------------------------------------------------------------- lightbox */

.sm-lb {
  position: fixed; inset: var(--appv-bar-h) 0 0; z-index: 2147482000;
  display: grid; place-items: center; padding: clamp(46px, 6vw, 70px) clamp(16px, 4vw, 56px);
  background: rgba(35, 27, 26, .95);
}
.sm-lb__fig { margin: 0; max-width: min(1080px, 100%); }
.sm-lb__fig img { width: 100%; height: auto; max-height: 74vh; object-fit: contain; }
.sm-lb__fig figcaption {
  margin-top: 16px; text-align: center; color: rgba(244, 236, 231, .78);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
}
.sm-lb__close {
  position: absolute; top: clamp(12px, 2vw, 24px); right: clamp(12px, 2vw, 24px);
  padding: 11px 18px; border: 1px solid rgba(244, 236, 231, .4); border-radius: 2px;
  background: none; color: var(--bone); cursor: pointer;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.sm-lb__close:hover { background: var(--ton); border-color: var(--ton); color: #fff; }

/* ------------------------------------------------------- overlapping band */

.sm-studioband__grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 2vw, 32px); row-gap: clamp(20px, 3vw, 40px);
}
.sm-studioband__wide { grid-column: 1 / 9; grid-row: 1; margin: 0; }
.sm-studioband__copy { grid-column: 9 / 13; grid-row: 1 / 3; align-self: center; }
.sm-studioband__copy p { color: var(--ink-2); }
.sm-studioband__small {
  grid-column: 3 / 7; grid-row: 2; position: relative; z-index: 2;
  margin: clamp(-140px, -9vw, -50px) 0 0;
}
.sm-studioband__small img { box-shadow: 0 0 0 clamp(8px, 1vw, 14px) var(--bone); }

@media (max-width: 900px) {
  .sm-studioband__grid { grid-template-columns: minmax(0, 1fr); }
  .sm-studioband__wide, .sm-studioband__copy, .sm-studioband__small { grid-column: 1 / -1; grid-row: auto; }
  .sm-studioband__small { width: 62%; margin: -34px 0 0 auto; }
}

.sm-facts { list-style: none; margin: 24px 0 26px; padding: 0; }
.sm-facts li {
  display: grid; grid-template-columns: 7.4rem minmax(0, 1fr); gap: 4px 16px;
  padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: .92rem; color: var(--ink-2);
}
.sm-facts b { font-size: .64rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--ton); }
@media (max-width: 560px) { .sm-facts li { grid-template-columns: minmax(0, 1fr); } }

/* ----------------------------------------------------------- team teaser */

.sm-people {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 40px);
}
.sm-person { display: flex; flex-direction: column; text-align: center; }
.sm-person:nth-child(even) { margin-top: clamp(16px, 3vw, 54px); }
.sm-person__photo { display: block; aspect-ratio: 1; margin-bottom: 16px; border-radius: 50%; overflow: hidden; background: var(--bone-2); }
.sm-person__photo picture { display: block; width: 100%; height: 100%; }
.sm-person__photo img { width: 100%; height: 100%; object-fit: cover; }
.sm-person__name { font-family: var(--display); font-size: 1.45rem; line-height: 1.1; letter-spacing: -.01em; }
.sm-person__role { margin-top: 5px; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-person__field { margin-top: 9px; font-size: .9rem; color: var(--ton); }
@media (max-width: 700px) { .sm-people { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* -------------------------------------------------------------- dark cta */

.sm-cta { padding: clamp(64px, 8vw, 136px) 0; color: var(--bone); background: var(--ink); }
.sm-cta__inner { max-width: 48rem; }
.sm-cta .sm-display { color: var(--bone); }
.sm-cta p { max-width: 42ch; margin: 26px 0 32px; color: rgba(244, 236, 231, .74); }

/* -------------------------------------------------------------- treatments */

.sm-trlist__filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 3.5vw, 52px); }
.sm-chip {
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 2px; background: none;
  color: var(--ink-2); cursor: pointer;
  font-family: var(--sans); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sm-chip:hover { border-color: var(--ton); color: var(--ton); }
.sm-chip.is-active { color: var(--bone); background: var(--ink); border-color: var(--ink); }

.sm-tr { border-top: 1px solid var(--line); }
.sm-tr:last-of-type { border-bottom: 1px solid var(--line); }
.sm-tr.is-hidden { display: none; }
.sm-tr__head {
  display: grid; grid-template-columns: 3.4rem minmax(0, 1.45fr) minmax(0, 1.05fr) auto;
  gap: clamp(12px, 2vw, 30px); align-items: start; padding: clamp(20px, 2.6vw, 34px) 0;
}
.sm-tr__no { font-family: var(--display); font-size: 1.35rem; line-height: 1.4; color: var(--ton); }
.sm-tr__title h2 { font-family: var(--display); font-size: clamp(1.6rem, 2.9vw, 2.5rem); line-height: 1; letter-spacing: -.02em; }
.sm-tr__claim { margin: 10px 0 0; font-size: .96rem; color: var(--ink-2); }
.sm-tr__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; }
.sm-tr__meta dt { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-tr__meta dd { margin: 5px 0 0; font-size: .88rem; }
.sm-tr__toggle {
  align-self: center; display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px; border: 1px solid var(--line); border-radius: 2px; background: none;
  color: var(--ink); cursor: pointer; white-space: nowrap;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sm-tr__toggle i {
  width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .25s ease;
}
.sm-tr__toggle[aria-expanded="true"] { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.sm-tr__toggle[aria-expanded="true"] i { transform: translateY(1px) rotate(-135deg); }

.sm-tr__panel {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .9fr);
  column-gap: clamp(20px, 3vw, 52px); row-gap: 18px;
  padding: 0 0 clamp(26px, 3vw, 44px);
}
.sm-tr__text { grid-column: 1; grid-row: 1; margin: 0; max-width: 54ch; color: var(--ink-2); }
.sm-tr__steps { grid-column: 1; grid-row: 2 / 5; list-style: none; margin: 0; padding: 0; }
.sm-tr__steps li {
  display: grid; grid-template-columns: 2.2rem minmax(0, 1fr) auto; gap: 12px;
  align-items: baseline; padding: 10px 0; border-top: 1px solid var(--line-soft);
}
.sm-tr__steps-no { font-family: var(--display); color: var(--ton); }
.sm-tr__steps-name { font-size: .95rem; }
.sm-tr__steps-dur { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.sm-tr__prices { grid-column: 2; grid-row: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.sm-tr__prices span { display: flex; flex-direction: column; gap: 6px; padding: 14px 12px; background: var(--bone-2); }
.sm-tr__prices i { font-style: normal; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-tr__prices b { font-family: var(--display); font-size: 1.4rem; font-weight: 400; }
.sm-tr__staff { grid-column: 2; grid-row: 2; margin: 0; font-size: .88rem; color: var(--ink-3); }
.sm-tr__panel .sm-btn { grid-column: 2; grid-row: 3; justify-self: start; align-self: start; }

.sm-trlist__empty { margin-top: 26px; padding: 16px 18px; border-left: 2px solid var(--ton); background: var(--bone-2); }

@media (max-width: 960px) {
  .sm-tr__head { grid-template-columns: 2.6rem minmax(0, 1fr); }
  .sm-tr__meta { grid-column: 2; }
  .sm-tr__toggle { grid-column: 2; justify-self: start; align-self: start; }
  .sm-tr__panel { grid-template-columns: minmax(0, 1fr); }
  .sm-tr__text, .sm-tr__steps, .sm-tr__prices, .sm-tr__staff, .sm-tr__panel .sm-btn { grid-column: 1; grid-row: auto; }
}
@media (max-width: 520px) {
  .sm-tr__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm-tr__prices { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .sm-tr__prices span { padding: 11px 8px; }
  .sm-tr__prices b { font-size: 1.15rem; }
}

.sm-sidenote__grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px); align-items: center;
}
.sm-sidenote__media { margin: 0; }
.sm-sidenote__copy p { color: var(--ink-2); max-width: 52ch; }
.sm-sidenote__copy .sm-display { margin-bottom: 22px; }
@media (max-width: 860px) { .sm-sidenote__grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------ price index */

.sm-ptable__head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-bottom: 22px; }
.sm-ptable__switch { display: inline-flex; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.sm-lenbtn {
  padding: 12px 22px; border: 0; border-right: 1px solid var(--line); background: none;
  color: var(--ink-2); cursor: pointer;
  font-family: var(--sans); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.sm-lenbtn:last-child { border-right: 0; }
.sm-lenbtn:hover { color: var(--ton); }
.sm-lenbtn[aria-pressed="true"] { color: var(--bone); background: var(--ink); }
.sm-ptable__note { margin: 0; font-size: .84rem; color: var(--ink-3); }

.sm-ptable__scroll { overflow-x: auto; }
.sm-ptable { --ptable-gap: 14px; width: 100%; border-collapse: collapse; text-align: left; }
.sm-ptable thead th {
  padding: 0 var(--ptable-gap) 12px 0; border-bottom: 1px solid var(--line);
  font-size: .62rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
}
.sm-ptable tbody th, .sm-ptable tbody td { padding: 16px var(--ptable-gap) 16px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.sm-ptable tbody th { font-weight: 400; }
.sm-ptable tbody th b { font-family: var(--display); font-weight: 400; color: var(--ton); margin-right: 10px; }
.sm-ptable tbody th i { display: block; margin-top: 4px; font-style: normal; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
/* Right-aligned numbers would otherwise touch the accent rule that marks the
   left edge of the selected length column, so every number column keeps a gap
   on its right — only the last one stays flush with the table edge. The type
   selector makes these rules outrank ".sm-ptable tbody td" without !important. */
.sm-ptable th.sm-ptable__num, .sm-ptable td.sm-ptable__num {
  padding-left: var(--ptable-gap); padding-right: var(--ptable-gap);
  text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.sm-ptable th.sm-ptable__num:last-child, .sm-ptable td.sm-ptable__num:last-child { padding-right: 0; }
.sm-ptable td[data-len] { color: var(--ink-3); }
.sm-ptable.is-kurz th[data-len="kurz"], .sm-ptable.is-mittel th[data-len="mittel"], .sm-ptable.is-lang th[data-len="lang"] { color: var(--ton); }
.sm-ptable.is-kurz td[data-len="kurz"], .sm-ptable.is-mittel td[data-len="mittel"], .sm-ptable.is-lang td[data-len="lang"] {
  color: var(--ink); background: var(--ton-soft); font-weight: 400; box-shadow: inset 2px 0 0 var(--ton);
}

@media (max-width: 760px) {
  .sm-ptable.is-kurz [data-len="mittel"], .sm-ptable.is-kurz [data-len="lang"],
  .sm-ptable.is-mittel [data-len="kurz"], .sm-ptable.is-mittel [data-len="lang"],
  .sm-ptable.is-lang [data-len="kurz"], .sm-ptable.is-lang [data-len="mittel"] { display: none; }
  /* Only the chosen length column is left, so it is the visually last one and
     goes back to being flush with the table edge. */
  .sm-ptable th.sm-ptable__num[data-len], .sm-ptable td.sm-ptable__num[data-len] { padding-right: 0; }
  .sm-ptable__switch { width: 100%; }
  .sm-lenbtn { flex: 1 1 0; padding: 12px 8px; }
}

/* Three columns have to survive on a 320px phone without a scrollbar: the
   column gaps shrink and the two supporting columns step down a size, so the
   table's min-content width stays below the content well. */
@media (max-width: 520px) {
  .sm-ptable { --ptable-gap: 10px; }
  .sm-ptable tbody th { font-size: .92rem; }
  .sm-ptable tbody th b { margin-right: 6px; }
  .sm-ptable tbody .sm-ptable__num:not([data-len]) { font-size: .74rem; letter-spacing: .04em; color: var(--ink-3); }
}

.sm-prices__legend { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 20px; font-size: .8rem; color: var(--ink-3); }
.sm-prices__legend b { font-weight: 400; color: var(--ink); }

.sm-prices__extras { margin-top: clamp(44px, 6vw, 88px); }
.sm-prices__extras ul { list-style: none; margin: 26px 0 20px; padding: 0; border-top: 1px solid var(--line); }
.sm-prices__extras li {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) 8rem 7rem;
  gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.sm-prices__extra-name { font-family: var(--display); font-size: 1.3rem; }
.sm-prices__extra-text { font-size: .9rem; color: var(--ink-2); }
.sm-prices__extra-meta { text-align: right; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.sm-prices__extra-price { text-align: right; font-size: 1rem; white-space: nowrap; }
@media (max-width: 780px) {
  .sm-prices__extras li { grid-template-columns: minmax(0, 1fr) auto; gap: 5px 14px; }
  .sm-prices__extra-name { grid-column: 1; grid-row: 1; }
  .sm-prices__extra-price { grid-column: 2; grid-row: 1; }
  .sm-prices__extra-text { grid-column: 1; grid-row: 2; }
  .sm-prices__extra-meta { grid-column: 2; grid-row: 2; }
}

.sm-quote__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(24px, 4vw, 70px); align-items: center; }
.sm-quote__media { margin: 0; }
.sm-quote__form p { color: var(--ink-2); max-width: 46ch; }
.sm-quote__form .sm-display { margin-bottom: 18px; }
@media (max-width: 900px) { .sm-quote__grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ forms */

.sm-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px; margin-top: 26px; }
.sm-form > h2, .sm-form > p, .sm-form > button, .sm-form .sm-field--wide { grid-column: 1 / -1; }
.sm-form > button { justify-self: start; }
.sm-form--card { align-self: start; margin-top: 0; padding: clamp(22px, 3vw, 40px); background: var(--bone-2); }
.sm-form--card .sm-display { margin-bottom: 4px; }

.sm-field { display: flex; flex-direction: column; gap: 8px; }
.sm-field > span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-field input, .sm-field select, .sm-field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 2px;
  color: var(--ink); background: var(--bone-3);
  font-family: var(--sans); font-size: .95rem; font-weight: 300;
}
.sm-field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.sm-field input:focus-visible, .sm-field select:focus-visible, .sm-field textarea:focus-visible { outline: 2px solid var(--ton); outline-offset: 2px; }
@media (max-width: 700px) { .sm-form { grid-template-columns: minmax(0, 1fr); } }

/* ---------------------------------------------------------------- booking */

.sm-book { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 24rem); gap: clamp(24px, 3.5vw, 58px); align-items: start; }
@media (max-width: 1040px) { .sm-book { grid-template-columns: minmax(0, 1fr); } }

.sm-steps { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 0 0 clamp(26px, 3.5vw, 44px); padding: 0; }
.sm-steps li { display: flex; align-items: baseline; gap: 10px; padding-top: 14px; border-top: 2px solid var(--line); color: var(--ink-3); }
.sm-steps li b { font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.sm-steps li span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.sm-steps li.is-done { color: var(--ink); border-color: var(--ink); }
.sm-steps li.is-active { color: var(--ton); border-color: var(--ton); }
@media (max-width: 640px) { .sm-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.sm-step { display: none; margin: 0; padding: 0; border: 0; min-width: 0; }
.sm-step.is-active { display: block; }
.sm-step legend {
  display: block; float: none; width: 100%; margin: 0 0 24px; padding: 0;
  font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1;
  letter-spacing: -.02em; color: var(--ink);
}

.sm-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 640px) { .sm-choices { grid-template-columns: minmax(0, 1fr); } }
.sm-choice { position: relative; display: block; cursor: pointer; }
.sm-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.sm-choice__body {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 2px 12px;
  height: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--bone-3); transition: border-color .2s ease, background .2s ease;
}
.sm-choice:hover .sm-choice__body { border-color: var(--ton); }
.sm-choice__no { grid-column: 1; grid-row: 1 / 4; font-family: var(--display); font-size: 1.25rem; font-weight: 400; color: var(--ton); }
.sm-choice__title { grid-column: 2; font-family: var(--display); font-size: 1.3rem; font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
.sm-choice__meta { grid-column: 2; font-style: normal; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.sm-choice__price { grid-column: 2; margin-top: 7px; font-style: normal; font-size: .88rem; color: var(--ink-2); }
.sm-choice input:checked + .sm-choice__body { border-color: var(--ton); background: var(--ton-soft); box-shadow: inset 0 0 0 1px var(--ton); }
.sm-choice input:focus-visible + .sm-choice__body { outline: 2px solid var(--ton); outline-offset: 3px; }

.sm-choice--staff .sm-choice__body { grid-template-columns: 72px minmax(0, 1fr); align-items: center; }
.sm-choice__avatar { grid-column: 1; grid-row: 1 / 4; display: block; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--bone-2); }
.sm-choice__avatar picture { display: block; width: 100%; height: 100%; }
.sm-choice__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sm-choice--staff.is-hidden { display: none; }

.sm-subfield { margin-top: 28px; }
.sm-subfield__label { display: block; margin-bottom: 12px; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.sm-pill { position: relative; display: block; cursor: pointer; }
.sm-pill input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.sm-pill > span {
  display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 12px 18px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--bone-3);
  font-size: .88rem; transition: border-color .2s ease, background .2s ease;
}
.sm-pill i { font-style: normal; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.sm-pill:hover > span { border-color: var(--ton); }
.sm-pill input:checked + span { border-color: var(--ton); background: var(--ton-soft); box-shadow: inset 0 0 0 1px var(--ton); }
.sm-pill input:focus-visible + span { outline: 2px solid var(--ton); outline-offset: 3px; }
.sm-pills--wide .sm-pill { flex: 1 1 220px; }

.sm-days { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.sm-daybtn {
  padding: 12px 20px; border: 1px solid var(--line); border-radius: 2px; background: none;
  color: var(--ink-2); cursor: pointer;
  font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sm-daybtn[aria-pressed="true"] { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.sm-daybtn[disabled] { opacity: .4; cursor: not-allowed; }
.sm-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 10px; }
.sm-slot { position: relative; display: block; cursor: pointer; }
.sm-slot input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.sm-slot > span {
  display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 14px 8px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--bone-3);
  font-family: var(--display); font-size: 1.3rem; line-height: 1.1;
  transition: border-color .2s ease, background .2s ease;
}
.sm-slot i { font-family: var(--sans); font-style: normal; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.sm-slot:hover > span { border-color: var(--ton); }
.sm-slot input:checked + span { border-color: var(--ton); background: var(--ton-soft); box-shadow: inset 0 0 0 1px var(--ton); }
.sm-slot input:focus-visible + span { outline: 2px solid var(--ton); outline-offset: 3px; }
.sm-slots__empty { margin: 18px 0 0; padding: 16px 18px; border-left: 2px solid var(--ton); background: var(--bone-2); font-size: .9rem; }

.sm-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px; }
.sm-fields .sm-field--wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .sm-fields { grid-template-columns: minmax(0, 1fr); } }

.sm-book__nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3.5vw, 42px); padding-top: 24px; border-top: 1px solid var(--line); }

.sm-book__side { position: sticky; top: calc(var(--appv-bar-h) + 98px); padding: clamp(22px, 2.6vw, 34px); border-top: 2px solid var(--ton); background: var(--bone-2); }
@media (max-width: 1040px) { .sm-book__side { position: static; } }
.sm-recap { margin: 18px 0 0; }
.sm-recap > div { display: grid; grid-template-columns: 7.2rem minmax(0, 1fr); gap: 12px; padding: 10px 0; border-top: 1px solid var(--line-soft); }
.sm-recap dt { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-recap dd { margin: 0; font-size: .9rem; }
.sm-total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 16px; border-top: 2px solid var(--ink); }
.sm-total > span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-total b { font-family: var(--display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 400; line-height: 1; color: var(--ton); white-space: nowrap; }
.sm-total__note { margin: 12px 0 0; font-size: .78rem; color: var(--ink-3); }
.sm-book__media { margin: 24px 0 0; }

/* --------------------------------------------------------- studio & team */

.sm-story__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(14px, 2vw, 30px); row-gap: clamp(20px, 3vw, 44px); }
.sm-story__wide { grid-column: 1 / 9; grid-row: 1; margin: 0; }
.sm-story__text { grid-column: 9 / 13; grid-row: 1 / 3; align-self: center; }
.sm-story__text p { color: var(--ink-2); }
.sm-story__text .sm-display { margin: 26px 0 12px; }
.sm-story__text .sm-display:first-child { margin-top: 0; }
.sm-story__tall { grid-column: 4 / 9; grid-row: 2; position: relative; z-index: 2; margin: clamp(-96px, -6vw, -30px) 0 0; }
.sm-story__tall img { box-shadow: 0 0 0 clamp(8px, 1vw, 14px) var(--bone); }
.sm-story figcaption { margin-top: 12px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
/* The tall image is pulled up into the wide figure's caption row and covers it
   from grid column 4 onwards. The caption therefore stays inside the three
   columns that remain free to its left: the wide figure spans 8 columns
   (8c + 7g), three of them are 37.5% of that width minus .625 of a gap. */
.sm-story__wide figcaption { max-width: calc(37.5% - .625 * clamp(14px, 2vw, 30px)); }
@media (max-width: 900px) {
  .sm-story__grid { grid-template-columns: minmax(0, 1fr); }
  .sm-story__wide, .sm-story__text, .sm-story__tall { grid-column: 1 / -1; grid-row: auto; margin-top: 0; }
  .sm-story__tall { width: 70%; margin-left: auto; }
  .sm-story__wide figcaption { max-width: none; }
}

.sm-team__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 62px) clamp(24px, 3vw, 54px); }
.sm-member { display: grid; grid-template-columns: 146px minmax(0, 1fr); gap: 0 26px; align-items: start; }
.sm-member__photo { grid-column: 1; grid-row: 1 / 8; display: block; width: 146px; height: 146px; border-radius: 50%; overflow: hidden; background: var(--bone-2); }
.sm-member__photo picture { display: block; width: 100%; height: 100%; }
.sm-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.sm-member h3 { font-family: var(--display); font-size: 1.65rem; line-height: 1.05; letter-spacing: -.02em; }
.sm-member__role { margin: 4px 0 0; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.sm-member__field { margin: 14px 0 0; font-size: .9rem; }
.sm-member__field b { display: block; margin-bottom: 3px; font-size: .6rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--ton); }
.sm-member__text { margin: 12px 0 0; font-size: .92rem; color: var(--ink-2); }
.sm-member__does { margin: 10px 0 0; font-size: .78rem; color: var(--ink-3); }
.sm-member .sm-link { margin-top: 16px; justify-self: start; }
@media (max-width: 900px) { .sm-team__grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 560px) {
  .sm-member { grid-template-columns: minmax(0, 1fr); gap: 14px 0; }
  .sm-member__photo { grid-row: auto; width: 118px; height: 118px; }
}

.sm-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 70px); align-items: start; }
@media (max-width: 900px) { .sm-contact__grid { grid-template-columns: minmax(0, 1fr); } }
.sm-contact__info address { margin: 18px 0 14px; }
.sm-contact__sub { margin: 32px 0 12px; font-family: var(--sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ton); }
.sm-hours > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: .92rem; }
.sm-hours dd { margin: 0; color: var(--ink-2); }

/* ----------------------------------------------------------------- footer */

.sm-foot { padding: clamp(50px, 6vw, 88px) 0 40px; color: rgba(244, 236, 231, .78); background: var(--ink); }
.sm-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: clamp(24px, 3vw, 50px); }
.sm-foot h2 { margin: 0 0 14px; font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ton-light); }
.sm-foot .sm-mark__name { display: block; font-size: 2.1rem; color: var(--bone); }
.sm-foot__brand p { margin: 16px 0 0; font-size: .92rem; max-width: 32ch; }
.sm-foot__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .9rem; }
.sm-foot__links a:hover { color: var(--bone); }
.sm-foot__hours > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 5px 0; font-size: .86rem; }
.sm-foot__hours dd { margin: 0; }
.sm-foot address { font-size: .88rem; }
@media (max-width: 900px) { .sm-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sm-foot__grid { grid-template-columns: minmax(0, 1fr); } }

.sm-note {
  margin: clamp(38px, 5vw, 68px) 0 0; padding-top: 22px;
  border-top: 1px solid rgba(244, 236, 231, .16);
  font-size: .78rem; line-height: 1.7; color: rgba(244, 236, 231, .55);
}
.sm-note a { color: rgba(244, 236, 231, .85); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------------------------------------------- motion */

@media (prefers-reduced-motion: no-preference) {
  html.appv-demo [data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.2, .7, .3, 1), transform .9s cubic-bezier(.2, .7, .3, 1);
  }
  html.appv-demo [data-reveal].is-in { opacity: 1; transform: none; }
}
