:root {
  --ink: #101015;
  --paper: #fff8ec;
  --cream: #f7ead7;
  --coral: #ef4f3e;
  --teal: #087e86;
  --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: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(255, 248, 236, 0.28);
  background: rgba(16, 16, 21, 0.72);
  color: #fff8ec;
  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: var(--gold);
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.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;
}

.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;
  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 {
  min-height: 38px;
  padding: 0 14px;
  border-color: #fff8ec;
  box-shadow: 4px 4px 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;
}

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

.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: 0.94;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.3rem, 9vw, 8.6rem);
}

.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);
}

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

.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: 230px;
  padding: 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);
}

.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 -30px 42px 32px;
  height: 112px;
  background: rgba(16, 16, 21, 0.42);
  border-radius: 999px;
  transform: rotate(-9deg);
}

.value-grid article::after {
  content: "AD";
  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: 44px;
  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;
  margin: 0;
  padding: 14px;
  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;
}

.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:nth-child(6) {
  background:
    radial-gradient(circle at 82% 16%, rgba(243, 184, 75, 0.66), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(239, 79, 62, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(16, 16, 21, 0.96), rgba(41, 72, 216, 0.76) 54%, rgba(8, 126, 134, 0.86));
  color: #fff8ec;
  box-shadow: 8px 8px 0 var(--coral);
}

.service-grid article:nth-child(6)::before {
  background: var(--gold);
}

.service-grid article:nth-child(6)::after {
  background: rgba(255, 248, 236, 0.16);
  border: 1px solid rgba(255, 248, 236, 0.3);
}

.service-grid article h3,
.service-grid article p,
.service-grid article span {
  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);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 900;
}

.service-grid article:nth-child(6) span,
.service-grid article:nth-child(6) p {
  color: rgba(255, 248, 236, 0.84);
}

.service-grid article:nth-child(6) h3 {
  color: #fff8ec;
}

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

.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 rect:first-child {
  fill: rgba(16, 16, 21, 0.2);
}

.timeline-flow-logo rect:nth-child(2) {
  fill: var(--gold);
  stroke: var(--ink);
  stroke-width: 2;
}

.timeline-flow-logo text {
  fill: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.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: center;
  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: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: -28px;
}

.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:first-child {
  background: rgba(203, 184, 255, 0.58);
  box-shadow: 8px 8px 0 var(--teal);
}

.assurance-grid article:last-child {
  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 {
  font-size: clamp(2.4rem, 5vw, 5.3rem);
}

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

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

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

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

.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: #171719;
  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: #27272b;
  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.12);
  border-bottom: 1px solid rgba(255, 248, 236, 0.12);
  color: rgba(255, 248, 236, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

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

.calendar-day {
  min-height: 46px;
  background: #2d2d31;
  color: #fff8ec;
  font-weight: 850;
  border-radius: var(--radius-small);
}

.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:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

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

.payment-band {
  display: grid;
  grid-template-columns: 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;
}

.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: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
  font-size: 1.3rem;
  box-shadow: 8px 8px 0 rgba(16, 16, 21, 0.24);
  border-radius: var(--radius-small);
}

.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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 36px 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.footer span {
  color: 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;
  }

  .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;
  }

  .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;
  }

  .brand {
    white-space: normal;
  }

  .hero {
    min-height: 92vh;
  }

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

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

  .signal-strip,
  .service-grid,
  .value-grid,
  .timeline,
  .slot-grid {
    grid-template-columns: 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;
  }
}
