:root {
  --ink: #101015;
  --paper: #fff8ec;
  --cream: #f7ead7;
  --coral: #ef4f3e;
  --teal: #087e86;
  --teal-dark: #00636b;
  --cobalt: #2948d8;
  --lilac: #cbb8ff;
  --gold: #f3b84b;
  --line: rgba(16, 16, 21, 0.16);
  --shadow: 0 22px 70px rgba(16, 16, 21, 0.22);
  --radius-soft: 22px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.auth-locked {
  overflow: hidden;
}

body.auth-locked > :not(.access-gate) {
  visibility: hidden;
  pointer-events: none;
}

body:has(.site-header.is-open) {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 16, 21, 0.12);
  background: rgba(255, 248, 236, 0.76);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: url("assets/atelier-logo-classic.svg?v=18") center / contain no-repeat;
  border-radius: 999px;
  font-size: 0;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  color: #fff8ec;
  background: #101015;
}

.access-gate[hidden] {
  display: none;
}

.access-gate picture,
.access-gate-image,
.access-gate-shade {
  position: absolute;
  inset: 0;
}

.access-gate-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-gate-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 21, 0.88) 0%, rgba(16, 16, 21, 0.67) 42%, rgba(16, 16, 21, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 16, 21, 0.55), rgba(16, 16, 21, 0.08));
}

.access-gate-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  min-height: 100vh;
  align-content: center;
  gap: 36px;
  padding: clamp(28px, 6vw, 74px);
}

.access-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.access-copy {
  max-width: 680px;
}

.access-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff8ec;
  font-size: clamp(3.25rem, 8vw, 7.8rem);
  line-height: 0.9;
}

.access-copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.access-form {
  display: grid;
  width: min(100%, 430px);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  background: rgba(16, 16, 21, 0.5);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  border-radius: 8px;
}

.access-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 248, 236, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.access-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 248, 236, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.92);
  color: var(--ink);
  outline: none;
  padding: 0 14px;
}

.access-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 184, 75, 0.24);
}

.access-error {
  min-height: 1.35em;
  margin: 0;
  color: #ffd0c9;
  font-size: 0.92rem;
}

.nav {
  justify-content: center;
  gap: 22px;
  font-size: 0.94rem;
}

.nav:empty {
  display: block;
}

@media (min-width: 901px) {
  .home-index .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .home-index .brand {
    justify-self: start;
  }

  .home-index .index-header-actions {
    grid-column: 3;
    justify-self: end;
    gap: 14px;
  }
}

.home-index .menu-pill-primary {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--teal);
}

.nav a,
.ghost-link,
.text-link {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav a:hover,
.ghost-link:hover,
.text-link:hover {
  text-decoration-line: underline;
}

.header-actions {
  gap: 12px;
}

.menu-pill {
  display: inline-flex;
  width: 190px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid rgba(16, 16, 21, 0.18);
  background: rgba(255, 248, 236, 0.52);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
  border-radius: var(--radius-small);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 16, 21, 0.36);
  background: rgba(255, 248, 236, 0.88);
}

.header-actions .menu-pill[href="#call"] {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--teal);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff8ec;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 6px 6px 0 var(--coral);
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--coral);
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--teal);
}

.button.small {
  width: 190px;
  min-height: 44px;
  padding: 0 22px;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--coral);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 236, 0.35);
  background: transparent;
  color: inherit;
  border-radius: var(--radius-small);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #15151c;
}

.home-hero {
  min-height: auto;
  padding-top: 176px;
  padding-bottom: 118px;
  align-items: start;
  text-align: center;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  display: contents;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 21, 0.92) 0%, rgba(16, 16, 21, 0.55) 48%, rgba(16, 16, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 16, 21, 0.78), rgba(16, 16, 21, 0.04) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 150px;
  color: #fff8ec;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero h1,
.section h2,
.pricing-section h2,
.payment-band h2 {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 8.2vw, 7.8rem);
}

.hero h1.home-hero-tagline {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.home-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 248, 236, 0.78);
  text-align: center;
  transform: translateY(2.25rem);
}

.home-hero .hero-copy > * {
  margin: 0;
}

.home-hero .eyebrow {
  margin-bottom: 0.35rem;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.06rem, 1.9vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 248, 236, 0.24);
  background: rgba(16, 16, 21, 0.82);
  color: #fff8ec;
}

.signal-strip span {
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 248, 236, 0.2);
  font-weight: 800;
  text-align: center;
}

.section,
.pricing-section,
.payment-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0;
}

.intro {
  text-align: center;
}

.intro h2,
.process h2,
.faq h2 {
  margin-inline: auto;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}

.process h2 {
  margin-inline: 0;
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.96;
}

.intro p {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 1.22rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.price-copy h2,
.payment-band h2 {
  font-size: clamp(2.3rem, 4.8vw, 5rem);
}

.routes-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.routes-heading .eyebrow {
  margin-bottom: 2.1rem;
}

.routes-heading h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 5vw, 5rem);
  white-space: nowrap;
}

.home-index .cards {
  padding-top: 82px;
}

.price-copy h2 {
  margin-bottom: 18px;
}

.section-heading p,
.price-copy p,
.booking-copy p,
.payment-band p {
  margin: 0;
  font-size: 1.08rem;
}

.reviews-page main {
  text-align: center;
}

.reviews-page .section-heading {
  display: block;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.reviews-page #review-system-title {
  max-width: none;
  white-space: nowrap;
}

.reviews-page .section-heading p,
.reviews-page .hero-copy p,
.reviews-page .service-grid p {
  margin-inline: auto;
}

.reviews-page .service-grid article {
  text-align: center;
}

.work-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(239, 79, 62, 0.16), rgba(41, 72, 216, 0.12) 38%, rgba(8, 126, 134, 0.16)),
    linear-gradient(180deg, rgba(203, 184, 255, 0.42), rgba(203, 184, 255, 0)),
    var(--cream);
  border-block: 1px solid var(--line);
}

.value-section {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(8, 126, 134, 0.1), rgba(243, 184, 75, 0.2), rgba(239, 79, 62, 0.1)),
    #fffdf7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-grid article {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  padding: 28px 24px;
  border: 2px solid var(--ink);
  background:
    radial-gradient(ellipse at 92% 18%, rgba(255, 205, 44, 0.95), transparent 24%),
    radial-gradient(ellipse at 18% 92%, rgba(202, 0, 164, 0.82), transparent 36%),
    linear-gradient(135deg, #ffc400 0%, #ff5a1f 36%, #ff165d 62%, #0096a7 100%);
  box-shadow: 12px 12px 0 rgba(8, 126, 134, 0.22);
  border-radius: var(--radius-soft);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.value-grid article:nth-child(2) {
  background:
    radial-gradient(ellipse at 88% 18%, rgba(0, 255, 133, 0.72), transparent 30%),
    radial-gradient(ellipse at 24% 90%, rgba(255, 237, 70, 0.74), transparent 34%),
    linear-gradient(135deg, #0827ff 0%, #006dff 32%, #00a36f 62%, #ffcf33 100%);
  box-shadow: 12px 12px 0 rgba(239, 79, 62, 0.24);
}

.value-grid article:nth-child(3) {
  background:
    radial-gradient(ellipse at 86% 18%, rgba(67, 80, 255, 0.88), transparent 30%),
    radial-gradient(ellipse at 20% 90%, rgba(255, 193, 0, 0.72), transparent 34%),
    linear-gradient(135deg, #ff7a00 0%, #ff321f 34%, #d91b72 62%, #6a20ff 100%);
  box-shadow: 12px 12px 0 rgba(41, 72, 216, 0.22);
}

.value-grid article:nth-child(4) {
  background:
    radial-gradient(ellipse at 88% 18%, rgba(17, 230, 91, 0.9), transparent 28%),
    radial-gradient(ellipse at 24% 88%, rgba(255, 70, 190, 0.78), transparent 34%),
    linear-gradient(135deg, #ff1f96 0%, #d76bff 34%, #5aa7ff 62%, #00d46f 100%);
  color: #fff8ec;
  box-shadow: 12px 12px 0 var(--gold);
}

.value-grid article::before {
  content: "";
  position: absolute;
  inset: auto -24px 32px 24px;
  height: 92px;
  background: rgba(16, 16, 21, 0.42);
  border-radius: 999px;
  transform: rotate(-9deg);
}

.value-grid article::after {
  content: none;
  position: absolute;
  inset: 18px 18px auto auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.34);
  border: 1px solid rgba(255, 248, 236, 0.64);
  color: rgba(16, 16, 21, 0.86);
  font-weight: 950;
  font-size: 1.12rem;
  letter-spacing: 0;
  backdrop-filter: blur(10px) saturate(1.5);
  filter: saturate(1.25) contrast(1.05);
  box-shadow: inset 0 1px 12px rgba(255, 248, 236, 0.24), 6px 6px 0 rgba(16, 16, 21, 0.14);
}

.value-grid span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  color: #fff8ec;
  font-weight: 950;
  font-size: 1.12rem;
  text-shadow: 0 2px 18px rgba(16, 16, 21, 0.3);
}

.value-grid p {
  position: relative;
  z-index: 1;
  width: min(100%, 286px);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 248, 236, 0.46);
  border-radius: 14px;
  background: rgba(255, 248, 236, 0.84);
  color: rgba(16, 16, 21, 0.78);
  backdrop-filter: blur(10px);
}

.value-grid article:nth-child(4) span {
  color: #fff8ec;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-grid article,
.timeline article,
.price-card,
.booking-panel,
.faq details {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(16, 16, 21, 0.12);
  border-radius: var(--radius-soft);
}

.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 24px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  background:
    radial-gradient(circle at 86% 12%, rgba(203, 184, 255, 0.46), transparent 30%),
    linear-gradient(145deg, rgba(8, 126, 134, 0.12), rgba(41, 72, 216, 0.08) 54%, rgba(243, 184, 75, 0.12)),
    #fffdf7;
}

.route-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: 900px;
  margin-inline: auto;
  gap: 24px;
}

.route-spacing-wide .route-grid {
  max-width: 1040px;
  gap: 96px;
}

.route-spacing-wide .routes-heading {
  margin-bottom: 48px;
}

.route-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: auto;
  gap: 0.62rem;
  text-align: center;
}

.service-grid article.route-card {
  padding: 22px 24px;
}

.route-card__label,
.route-card__description,
.route-card__arrow,
.route-card__button,
.route-card__title {
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-grid article.route-card h3 {
  min-height: 2.35rem;
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.25vw, 1.24rem);
  line-height: 1.22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-card__label {
  min-height: 1rem;
}

.route-card__description {
  width: 100%;
  min-height: 2.75rem;
  margin: 0 0 1.25rem;
  text-align: center;
}

.route-card__arrow {
  position: absolute;
  left: 50%;
  top: calc(50% - 54px);
  z-index: 1;
  display: grid;
  width: 92px;
  height: 72px;
  place-items: center;
  margin: 0;
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 18px rgba(243, 184, 75, 0.82), 0 0 38px rgba(243, 184, 75, 0.42);
  transform: translate(-50%, -10px);
}

.route-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.route-card:hover .route-card__label,
.route-card:focus-within .route-card__label,
.route-card:hover .route-card__description,
.route-card:focus-within .route-card__description {
  opacity: 0;
  transform: translateY(-6px);
}

.route-card:hover .route-card__title,
.route-card:focus-within .route-card__title {
  transform: translateY(2px);
}

.route-card:hover .route-card__arrow,
.route-card:focus-within .route-card__arrow {
  opacity: 1;
  transform: translate(-50%, 0);
  animation: route-arrow-glow 1.35s ease-in-out infinite;
}

.route-card:hover .route-card__button,
.route-card:focus-within .route-card__button {
  box-shadow: 9px 9px 0 var(--coral), 0 0 24px rgba(243, 184, 75, 0.3);
}

@keyframes route-arrow-glow {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.82;
  }

  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

.home-index .footer-actions .footer-intro-call {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--teal);
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--teal);
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -28px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(41, 72, 216, 0.12);
}

.service-grid article:nth-child(-n + 5) {
  box-shadow: 8px 8px 0 rgba(8, 126, 134, 0.18);
}

.service-grid article h3,
.service-grid article p {
  position: relative;
  z-index: 1;
}

.service-grid article:hover,
.service-grid article:focus,
.service-grid article.is-active {
  outline: none;
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--cobalt);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.service-grid article h3 {
  color: var(--teal);
}

.service-grid article p {
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-examples {
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-examples span {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 156px;
  overflow: hidden;
  padding: 14px;
  border: 2px solid rgba(16, 16, 21, 0.76);
  border-radius: 18px;
  color: #fff8ec;
  font-weight: 950;
  box-shadow: 6px 6px 0 rgba(16, 16, 21, 0.18);
}

.service-examples span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 248, 236, 0.9) 0 10%, transparent 11%),
    linear-gradient(135deg, #ffb63d, #ff5147 45%, #2757f2 78%, #008d96);
  filter: saturate(1.18);
}

.service-examples span::after {
  content: "";
  position: absolute;
  inset: auto 12px 48px 12px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 248, 236, 0.86);
  box-shadow: 0 -58px 0 rgba(255, 248, 236, 0.28);
}

.service-examples span:nth-child(2)::before {
  background:
    radial-gradient(circle at 76% 20%, rgba(246, 185, 69, 0.9) 0 12%, transparent 13%),
    linear-gradient(135deg, #083d77, #008d96 42%, #bda7ff 70%, #fff8ec);
}

.service-grid article:nth-child(2) .service-examples span::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 81, 71, 0.9) 0 9%, transparent 10%),
    linear-gradient(135deg, #fff8ec, #f6b945 38%, #111116 39% 58%, #008d96);
}

.service-grid article:nth-child(3) .service-examples span::before {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 248, 236, 0.86) 0 10%, transparent 11%),
    linear-gradient(135deg, #ff4aa2, #ff5147 34%, #2757f2 68%, #00b58a);
}

.service-grid article:nth-child(4) .service-examples span::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 248, 236, 0.88) 0 10%, transparent 11%),
    linear-gradient(135deg, #111116, #ff5147 42%, #f6b945 72%, #fff8ec);
}

.service-grid article:nth-child(5) .service-examples span::before {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 248, 236, 0.88) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 62%, rgba(246, 185, 69, 0.9) 0 8%, transparent 9%),
    linear-gradient(135deg, #008d96, #2757f2 50%, #bda7ff 78%, #fff8ec);
}

.service-grid article:hover p,
.service-grid article:focus p,
.service-grid article.is-active p {
  opacity: 0;
  transform: translateY(-8px);
}

.service-grid article:hover .service-examples,
.service-grid article:focus .service-examples,
.service-grid article.is-active .service-examples {
  opacity: 1;
  transform: translateY(0);
}

.service-grid p,
.timeline p,
.faq p,
.price-card li,
.form-note {
  margin: 0;
  color: rgba(16, 16, 21, 0.76);
}

.service-preview {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff8ec;
  box-shadow: 8px 8px 0 var(--coral);
  border-radius: var(--radius-soft);
}

.service-preview strong {
  color: var(--gold);
}

.service-preview p {
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.timeline::before {
  content: none;
}

.timeline::after {
  content: none;
}

.timeline-flow {
  position: absolute;
  inset: -8px 10px auto;
  z-index: 3;
  width: calc(100% - 20px);
  height: 160px;
  overflow: visible;
  pointer-events: none;
}

.timeline-flow-shadow,
.timeline-flow-line {
  fill: none;
  stroke-linecap: round;
}

.timeline-flow-shadow {
  stroke: rgba(255, 248, 236, 0.18);
  stroke-width: 19;
}

.timeline-flow-line {
  stroke: rgba(255, 248, 236, 0.86);
  stroke-width: 7;
  stroke-dasharray: 14 20;
  filter: drop-shadow(0 4px 0 rgba(16, 16, 21, 0.18));
  animation: routeDash 8.4s linear infinite;
}

.timeline-flow-logo image {
  filter: drop-shadow(6px 6px 0 rgba(16, 16, 21, 0.18));
}

.timeline article {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 92px 26px 26px;
  overflow: hidden;
  background:
    conic-gradient(from 210deg at 88% 20%, rgba(203, 184, 255, 0.9), transparent 0.32turn, rgba(239, 79, 62, 0.82) 0.52turn, transparent 0.72turn),
    radial-gradient(ellipse at 16% 72%, rgba(255, 248, 236, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(243, 184, 75, 0.94) 0%, rgba(239, 79, 62, 0.86) 62%, rgba(203, 184, 255, 0.76) 100%),
    linear-gradient(135deg, #f3b84b 0%, #ef4f3e 52%, #cbb8ff 100%);
  color: var(--ink);
}

@keyframes routeDash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -136;
  }
}

@keyframes routePulse {
  0%,
  10% {
    left: 6%;
  }

  33% {
    left: 31%;
  }

  58% {
    left: 56%;
  }

  83%,
  100% {
    left: calc(94% - 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-flow-line {
    animation: none;
  }
}

.timeline article:nth-child(2) {
  --step-accent: var(--cobalt);
  background:
    linear-gradient(28deg, transparent 0 28%, rgba(255, 248, 236, 0.18) 28% 36%, transparent 36% 100%),
    radial-gradient(circle at 78% 70%, rgba(243, 184, 75, 0.64), transparent 28%),
    radial-gradient(ellipse at 18% 18%, rgba(203, 184, 255, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(41, 72, 216, 0.92) 0%, rgba(8, 126, 134, 0.58) 58%, rgba(203, 184, 255, 0.74) 100%);
}

.timeline article:nth-child(3) {
  --step-accent: var(--coral);
  background:
    conic-gradient(from 35deg at 20% 25%, rgba(255, 138, 0, 0.72), transparent 0.22turn, rgba(41, 72, 216, 0.62) 0.42turn, transparent 0.62turn),
    linear-gradient(150deg, transparent 0 46%, rgba(255, 248, 236, 0.2) 46% 54%, transparent 54% 100%),
    radial-gradient(circle at 84% 72%, rgba(125, 47, 211, 0.76), transparent 34%),
    linear-gradient(135deg, rgba(255, 138, 0, 0.88) 0%, rgba(239, 79, 62, 0.76) 50%, rgba(125, 47, 211, 0.82) 100%);
}

.timeline article:nth-child(4) {
  --step-accent: var(--teal);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 201, 87, 0.68), transparent 26%),
    radial-gradient(ellipse at 20% 82%, rgba(240, 36, 134, 0.62), transparent 34%),
    linear-gradient(24deg, transparent 0 36%, rgba(8, 126, 134, 0.68) 36% 62%, transparent 62% 100%),
    linear-gradient(135deg, rgba(240, 36, 134, 0.72) 0%, rgba(203, 184, 255, 0.66) 50%, rgba(24, 201, 87, 0.74) 100%);
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 82px 20px 20px;
  width: auto;
  background: rgba(255, 248, 236, 0.9);
  border: 2px solid rgba(16, 16, 21, 0.9);
  border-radius: 16px;
}

.timeline article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(16, 16, 21, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 236, 0.08), transparent 44%, rgba(255, 248, 236, 0.12));
  background-size: 13px 13px, auto;
  opacity: 0.24;
  pointer-events: none;
}

.timeline article h3,
.timeline article p {
  position: relative;
  z-index: 1;
}

.timeline article h3 {
  color: var(--ink);
}

.timeline article p {
  color: rgba(16, 16, 21, 0.82);
}

.timeline article h3::before {
  content: attr(data-step);
}

.timeline article:nth-child(1) h3::before {
  content: "01";
}

.timeline article:nth-child(2) h3::before {
  content: "02";
}

.timeline article:nth-child(3) h3::before {
  content: "03";
}

.timeline article:nth-child(4) h3::before {
  content: "04";
}

.timeline article h3::before {
  position: absolute;
  left: 0;
  top: -64px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.92);
  box-shadow: 6px 6px 0 rgba(16, 16, 21, 0.18);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(41, 72, 216, 0.09), rgba(239, 79, 62, 0.12) 48%, rgba(243, 184, 75, 0.16)),
    var(--paper);
}

.assurance-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.assurance-grid article {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 8px 8px 0 rgba(16, 16, 21, 0.12);
  border-radius: var(--radius-soft);
}

.assurance-grid article {
  background: rgba(243, 184, 75, 0.34);
  box-shadow: 8px 8px 0 var(--coral);
}

.assurance-grid span {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
  font-size: 1.18rem;
}

.assurance-grid p {
  margin: 0;
  color: rgba(16, 16, 21, 0.76);
}

.price-card {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(243, 184, 75, 0.22), rgba(255, 248, 236, 0) 42%),
    #fffdf7;
}

.price-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-top p {
  margin: 0;
  font-weight: 900;
}

.price-top strong {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
  font-family: Georgia, "Times New Roman", serif;
}

.price-top span {
  font-family: inherit;
  font-size: 1rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border: 2px solid var(--ink);
}

.price-card .text-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(8, 126, 134, 0.15), rgba(203, 184, 255, 0.28), rgba(239, 79, 62, 0.12)),
    var(--cream);
}

.booking h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
}

.booking-copy > p:not(.booking-duration) {
  margin-bottom: 14px;
}

.booking-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.booking-duration,
.slot-help {
  margin: 0;
  color: rgba(16, 16, 21, 0.68);
}

.booking-duration {
  max-width: 440px;
  font-weight: 850;
}

.slot-help {
  font-size: 0.92rem;
  font-weight: 700;
}

label,
legend {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.booking-panel fieldset legend {
  margin-bottom: 8px;
}

input {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  background: #fffdf7;
  border-radius: var(--radius-small);
}

select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 2px solid var(--ink);
  background: #fffdf7;
  border-radius: var(--radius-small);
  font: inherit;
}

select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 124px;
  padding: 14px;
  resize: vertical;
}

.reviewscan-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reviewscan-form__wide,
.reviewscan-form .button,
.reviewscan-form .form-note {
  grid-column: 1 / -1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.slot-grid button {
  position: relative;
  min-height: 38px;
  border: 2px solid var(--ink);
  background: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: var(--radius-small);
}

.slot-grid button:disabled {
  cursor: not-allowed;
}

.slot-grid button.is-occupied {
  color: rgba(255, 248, 236, 0.68);
  background: #34343a;
  border-color: rgba(255, 248, 236, 0.2);
  text-decoration: line-through;
}

.slot-grid button.is-occupied::after {
  content: "bezet";
  position: absolute;
  right: 6px;
  top: 4px;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.slot-grid button.is-selected {
  background: var(--lilac);
  box-shadow: 4px 4px 0 var(--ink);
}

.calendar-widget {
  padding: 18px;
  border: 2px solid var(--ink);
  background: #202025;
  color: #fff8ec;
  box-shadow: 8px 8px 0 rgba(16, 16, 21, 0.12);
  border-radius: var(--radius-soft);
}

.calendar-top {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.calendar-top strong {
  font-size: 1.15rem;
  text-align: center;
  text-transform: lowercase;
}

.calendar-top button,
.calendar-day {
  border: 0;
  cursor: pointer;
}

.calendar-top button {
  width: 42px;
  height: 42px;
  background: #38383f;
  color: #fff8ec;
  font-size: 1.6rem;
  border-radius: var(--radius-small);
}

.calendar-top button:hover {
  background: var(--teal);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-weekdays {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 248, 236, 0.22);
  border-bottom: 1px solid rgba(255, 248, 236, 0.22);
  color: rgba(255, 248, 236, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.calendar-grid {
  margin-top: 12px;
}

.calendar-day {
  position: relative;
  min-height: 46px;
  background: #38383e;
  color: #fff8ec;
  font-weight: 850;
  border-radius: var(--radius-small);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.05);
}

.calendar-day:hover:not(:disabled),
.calendar-day.is-selected {
  background: #fff8ec;
  color: var(--ink);
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.calendar-day.is-window {
  background:
    radial-gradient(circle at 72% 26%, rgba(243, 184, 75, 0.18), transparent 34%),
    #414148;
}

.calendar-day.has-occupied::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
}

.calendar-day.is-selected {
  background: #fff8ec;
  color: var(--ink);
}

.calendar-day:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.calendar-day.is-empty {
  visibility: hidden;
}

.payment-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fff8ec;
}

.payment-band .section-kicker {
  color: var(--lilac);
}

.payment-band p {
  max-width: 760px;
  margin-top: 28px;
}

.payment-benefits {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.payment-benefits li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 248, 236, 0.82);
  font-weight: 800;
  line-height: 1.35;
}

.payment-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border: 2px solid #fff8ec;
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--teal);
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 21, 0.2);
  background: transparent;
  box-shadow: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.faq details.is-hidden {
  display: none;
}

.faq details:hover {
  transform: none;
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--teal);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 0 20px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 72px;
  align-items: start;
}

.faq-main h2 {
  margin: 0 0 44px;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
}

.faq-callout {
  position: sticky;
  top: 160px;
  min-height: 560px;
  margin-top: clamp(230px, 16vw, 315px);
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 34px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 248, 236, 0.9) 0 44px, transparent 45px),
    radial-gradient(circle at 82% 14%, rgba(243, 184, 75, 0.95), transparent 26%),
    linear-gradient(135deg, #f3b84b 0%, #ef4f3e 44%, #cbb8ff 72%, #087e86 100%);
  color: #fff8ec;
  box-shadow: 14px 14px 0 rgba(16, 16, 21, 0.18);
  border-radius: 28px;
}

.faq-callout::before {
  content: "";
  position: absolute;
  inset: auto -80px 120px 40px;
  height: 220px;
  background: rgba(41, 72, 216, 0.38);
  transform: rotate(-10deg);
}

.callout-face,
.faq-callout h3,
.faq-callout p,
.faq-callout a {
  position: relative;
  z-index: 1;
}

.callout-face {
  position: absolute;
  top: 34px;
  left: 34px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  background: url("assets/atelier-logo-classic.svg?v=18") center / contain no-repeat;
  color: var(--ink);
  font-size: 0;
  box-shadow: 8px 8px 0 rgba(16, 16, 21, 0.2);
  border-radius: 999px;
}

.faq-callout h3 {
  margin: 0;
  max-width: 320px;
  color: #fff8ec;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.faq-callout p {
  margin: 0;
  max-width: 330px;
  font-size: 1.08rem;
}

.faq-callout .button {
  border-color: #fff8ec;
  box-shadow: 6px 6px 0 var(--ink);
}

.callout-mail {
  color: #fff8ec;
  font-weight: 900;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
  padding: 36px 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.footer-info,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.footer-info {
  justify-content: flex-start;
}

.footer-actions {
  justify-content: flex-end;
  margin-right: 12px;
}

.footer-info span {
  color: var(--teal);
}

.footer-brand,
.footer-legal-trigger {
  color: var(--teal);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand:hover,
.footer-legal-trigger:hover {
  color: var(--teal-dark);
}

.footer-legal {
  position: relative;
}

.footer-legal-trigger {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-legal-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.85em;
}

.footer-legal-trigger[aria-expanded="true"]::after {
  content: "▴";
}

.footer-legal-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 20;
  width: 292px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(17, 12, 8, 0.14);
}

.footer-legal-menu[hidden] {
  display: none;
}

.footer-legal-menu a,
.footer-legal-menu button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal-menu a:hover,
.footer-legal-menu button:hover {
  background: #f0e7d8;
}

.footer-actions .menu-pill[href="#call"] {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--teal);
}

.legal-page-main {
  padding: 150px 18px 80px;
}

.legal-page {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  gap: 20px;
  margin-bottom: 38px;
}

.legal-hero .section-kicker {
  margin-bottom: 0;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(16, 16, 21, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.legal-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: rgba(255, 248, 236, 0.78);
  box-shadow: 10px 10px 0 rgba(16, 16, 21, 0.08);
}

.legal-card + .legal-card {
  margin-top: 22px;
}

.legal-card h2,
.legal-card h3 {
  margin: 0;
  line-height: 1;
}

.legal-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.legal-card h3 {
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: rgba(16, 16, 21, 0.76);
}

.legal-card p,
.legal-card ul,
.legal-card ol {
  margin: 0;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-note {
  padding: 14px 16px;
  border: 1px solid rgba(8, 126, 134, 0.26);
  border-radius: var(--radius-small);
  background: rgba(8, 126, 134, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.label-list {
  display: grid;
  gap: 10px;
}

.label-list span,
.legal-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background: rgba(16, 16, 21, 0.06);
  font-weight: 900;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-small);
  background: var(--paper);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--teal);
}

.pay-dialog {
  width: min(460px, calc(100% - 32px));
  border: 2px solid var(--ink);
  padding: 30px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--coral);
  border-radius: var(--radius-soft);
}

.pay-dialog::backdrop {
  background: rgba(16, 16, 21, 0.58);
}

.pay-dialog h2 {
  margin: 0 34px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.pay-dialog p {
  margin: 0 0 22px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  background: #fffdf7;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  font-weight: 900;
  transform: translateY(140%);
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .site-header.is-open {
    grid-template-rows: auto auto auto;
  }

  .site-header.is-open .nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 12px;
  }

  .booking,
  .pricing-section,
  .payment-band,
  .section-heading,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header.is-open .nav a,
  .site-header.is-open .ghost-link {
    padding: 12px;
    border: 1px solid rgba(255, 248, 236, 0.22);
  }

  .hero-content {
    padding-top: 130px;
  }

  .signal-strip,
  .section-heading,
  .faq-layout,
  .pricing-section,
  .assurance-grid,
  .booking,
  .payment-band {
    grid-template-columns: 1fr;
  }

  .assurance-grid {
    grid-column: 1;
  }

  .service-grid,
  .value-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before,
  .timeline::after,
  .timeline-flow {
    display: none;
  }

  .payment-band {
    justify-items: start;
  }

  .faq-callout {
    position: relative;
    top: auto;
    min-height: 420px;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    inset: 10px;
    height: auto;
    max-height: none;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 16, 21, 0.58) 0%, rgba(16, 16, 21, 0.5) 46%, rgba(16, 16, 21, 0.66) 100%),
      linear-gradient(90deg, rgba(16, 16, 21, 0.66), rgba(16, 16, 21, 0.18));
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .site-header.is-open {
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .value-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section,
  .pricing-section,
  .booking,
  .payment-band {
    width: min(100% - 28px, 1180px);
    padding-block: 72px;
  }

  .work-band,
  .value-section,
  .pricing-section,
  .booking,
  .payment-band {
    width: 100%;
    padding-inline: 14px;
  }

  .price-top {
    display: block;
  }

  .price-top strong {
    display: block;
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }

  .site-header {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .brand,
  .nav a,
  .button,
  .ghost-link,
  .text-link,
  h1,
  h2,
  h3,
  p {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 6.4rem);
  }

  .section,
  .pricing-section,
  .booking,
  .payment-band {
    padding-block: clamp(70px, 9vw, 96px);
  }

  .button,
  .menu-toggle,
  .slot-grid button,
  .calendar-top button,
  .calendar-day {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 768px) {
  .site-header {
    gap: 12px;
    padding: 8px 10px;
  }

  .hero-content {
    padding-top: 118px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .routes-heading h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .home-hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 118px;
  }

  .home-hero .hero-copy {
    transform: translateY(1.2rem);
  }

  .route-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .service-grid article,
  .value-grid article,
  .timeline article,
  .price-card,
  .booking-copy,
  .booking-panel,
  .assurance-grid article {
    min-width: 0;
    padding: 20px;
  }

  .calendar-widget {
    padding: 14px;
  }

  .booking-panel > *,
  .booking-panel label,
  .booking-panel fieldset,
  .booking-panel .button,
  .booking-panel .form-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .reviewscan-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    flex: 0 0 34px;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-bottom: 88px;
  }

  .hero-copy,
  .intro p,
  .section-heading p,
  .price-copy p,
  .booking-copy p,
  .payment-band p {
    font-size: 1rem;
  }

  .signal-strip span {
    padding: 14px;
  }

  .faq-summary,
  .faq summary {
    min-height: 48px;
  }

  .pay-dialog {
    padding: 24px 18px;
  }

  .calendar-top {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .calendar-top button {
    width: 38px;
    height: 38px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 4px;
  }

  .calendar-day {
    min-width: 0;
    min-height: 38px;
    border-radius: 8px;
    font-size: 0.88rem;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .slot-grid button {
    min-height: 40px;
    padding-inline: 4px;
    font-size: 0.84rem;
  }
}

@media (max-width: 620px) and (orientation: portrait) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section,
  footer {
    max-width: 100%;
  }

  .site-header {
    position: relative;
    inset: auto;
    width: calc(100% - 20px);
    margin: 10px;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    background: rgba(16, 16, 21, 0.9);
    backdrop-filter: none;
  }

  .site-header.is-open {
    position: fixed;
    inset: 10px;
    width: auto;
    margin: 0;
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .brand {
    min-width: 0;
    white-space: nowrap;
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    display: block;
    min-height: auto;
    margin-top: 0;
    padding: 0;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(16, 16, 21, 0.34) 0%, rgba(16, 16, 21, 0.52) 54%, rgba(16, 16, 21, 0.78) 100%),
      linear-gradient(90deg, rgba(16, 16, 21, 0.58), rgba(16, 16, 21, 0.08)),
      url("assets/atelier-hero-mobile-optimized.webp") center top / cover no-repeat,
      var(--ink);
  }

  .hero-image,
  .hero-shade {
    display: none;
  }

  .hero-shade {
    background: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: calc(100% - 28px);
    padding-top: 56px;
    padding-bottom: 48px;
    color: #fff8ec;
  }

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

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 13.2vw, 4.35rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    color: rgba(255, 248, 236, 0.88);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 46px;
  }

  .hero-actions .button.secondary {
    background: #fff8ec;
  }

  .signal-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 248, 236, 0.24);
    background: rgba(16, 16, 21, 0.74);
    color: #fff8ec;
  }

  .signal-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 236, 0.18);
    color: #fff8ec;
  }

  .work-band,
  .value-section,
  .pricing-section,
  .booking,
  .payment-band {
    padding-inline: 16px;
  }

  .section,
  .pricing-section,
  .booking,
  .payment-band {
    padding-block: 54px;
  }

  .section,
  .pricing-section,
  .booking,
  .payment-band,
  .faq-callout {
    content-visibility: auto;
    contain-intrinsic-size: 1px 820px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .process h2,
  .price-copy h2,
  .payment-band h2 {
    font-size: clamp(2.15rem, 10.4vw, 3.45rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .section-heading p,
  .price-copy p,
  .booking-copy p,
  .payment-band p {
    font-size: 0.98rem;
  }

  .service-grid {
    gap: 12px;
  }

  .service-grid article {
    min-height: 224px;
    padding: 18px 18px 18px 24px;
    border-radius: 18px;
  }

  .service-examples {
    inset: 12px;
    gap: 8px;
  }

  .service-examples span {
    min-height: 142px;
    padding: 10px;
    font-size: 0.86rem;
  }

  .service-grid article::after {
    width: 72px;
    height: 72px;
    right: -18px;
    top: -20px;
  }

  .service-grid h3 {
    font-size: 1.08rem;
  }

  .service-grid p {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .timeline {
    gap: 14px;
    margin-top: 30px;
  }

  .timeline article {
    min-height: auto;
    padding: 86px 22px 26px;
    overflow: hidden;
    border-radius: 22px;
  }

  .timeline article::before {
    inset: 76px 14px 14px;
    border-radius: 16px;
  }

  .timeline article h3 {
    font-size: 1.22rem;
    line-height: 1.16;
    margin-bottom: 12px;
  }

  .timeline article p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .timeline article h3::before {
    top: -62px;
    width: 54px;
    height: 54px;
    font-size: 0.8rem;
  }

  .price-copy h2 {
    margin-bottom: 16px;
  }

  .price-card {
    overflow: hidden;
  }

  .price-top strong {
    font-size: clamp(2.65rem, 15vw, 4rem);
    line-height: 0.95;
  }

  .check-list {
    gap: 11px;
    margin-block: 20px 22px;
  }

  .booking-panel {
    gap: 14px;
  }

  .calendar-widget {
    overflow: hidden;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 3px;
  }

  .calendar-day {
    min-height: 36px;
    font-size: 0.84rem;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .slot-grid button {
    min-height: 39px;
    padding-inline: 3px;
    font-size: 0.8rem;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 10px 14px;
    padding-block: 28px;
    font-size: 0.92rem;
    text-align: center;
  }

  .footer-info,
  .footer-actions {
    justify-content: center;
  }

  .footer-legal {
    width: 100%;
  }

  .footer-legal-trigger {
    width: 100%;
    justify-content: center;
  }

  .footer-legal-menu {
    position: static;
    width: min(360px, 100%);
    margin: 8px auto 0;
  }

  .footer-actions {
    margin-right: 0;
  }

  .footer-actions .menu-pill,
  .footer-actions .button.small {
    min-height: 42px;
    padding-inline: 16px;
  }

  .faq-callout {
    min-height: 360px;
  }

.price-card,
.booking-copy,
.booking-panel {
    border-radius: 22px;
  }
}

.work-dossier {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
  color: #fff8ec;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 184, 75, 0.12), transparent 30%),
    linear-gradient(135deg, #101725 0%, #15111c 48%, #0c1f26 100%);
  border-block: 0;
}

.work-dossier .work-dossier-heading {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 0;
}

.work-dossier .section-kicker {
  color: var(--gold);
}

.work-dossier #work-title {
  max-width: 560px;
  color: #fff8ec;
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  line-height: 0.96;
}

.work-dossier .work-dossier-heading p {
  max-width: 560px;
  margin-top: clamp(34px, 4.2vw, 64px);
  color: rgba(255, 248, 236, 0.74);
  font-size: 1.08rem;
  line-height: 1.62;
}

.work-dossier .dossier-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 248, 236, 0.2);
}

.work-dossier .dossier-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(320px, 0.66fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  min-height: 0;
  padding: clamp(24px, 3.2vw, 38px) 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
  transition: background 180ms ease, padding-inline 180ms ease;
}

.work-dossier .dossier-list article::before,
.work-dossier .dossier-list article::after {
  content: none;
}

.work-dossier .dossier-list article:hover,
.work-dossier .dossier-list article:focus,
.work-dossier .dossier-list article.is-active {
  outline: none;
  transform: none;
  box-shadow: none;
  background: rgba(255, 248, 236, 0.045);
  padding-inline: 18px;
}

.work-dossier .dossier-list article h3 {
  margin: 0;
  color: #fff8ec;
  font-family: inherit;
  font-size: 1.24rem;
  line-height: 1.15;
}

.work-dossier .dossier-list article p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 248, 236, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
  opacity: 1;
  transform: none;
  transition: none;
}

.work-dossier .service-examples {
  display: none;
}

@media (max-width: 900px) {
  .work-dossier {
    grid-template-columns: 1fr;
    gap: clamp(36px, 7vw, 58px);
  }

  .work-dossier .work-dossier-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-dossier .work-dossier-heading p {
    margin-top: 24px;
  }

  .work-dossier .dossier-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 26px;
  }
}

@media (max-width: 620px) {
  .access-gate-content {
    min-height: 100svh;
    gap: 24px;
    padding: 24px 18px;
  }

  .access-gate-shade {
    background:
      linear-gradient(0deg, rgba(16, 16, 21, 0.9) 0%, rgba(16, 16, 21, 0.7) 54%, rgba(16, 16, 21, 0.34) 100%),
      linear-gradient(90deg, rgba(16, 16, 21, 0.42), rgba(16, 16, 21, 0.2));
  }

  .access-copy h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .access-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .access-form {
    padding: 14px;
  }
}

/* Taak 04 AD Realisme - startgarantie zachte outline */
.assurance-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 30px;
  border: 1px dashed rgba(16, 16, 21, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 12%, rgba(243, 184, 75, 0.18), transparent 24%),
    linear-gradient(120deg, rgba(255, 248, 236, 0.74), rgba(247, 234, 215, 0.48));
  box-shadow: 0 20px 50px rgba(16, 16, 21, 0.06);
}

.assurance-grid article::before {
  content: "✓";
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.assurance-grid span {
  grid-column: 2;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.24rem;
}

.assurance-grid p {
  grid-column: 2;
  max-width: 920px;
  color: rgba(16, 16, 21, 0.76);
  font-size: 1.05rem;
  line-height: 1.58;
}

@media (max-width: 620px) {
  .assurance-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .assurance-grid span,
  .assurance-grid p {
    grid-column: 1;
  }
}
