:root {
  --ink: #090909;
  --paper: #f4f1e8;
  --acid: #dfff3f;
  --muted: #a7a79f;
  --line: rgba(244, 241, 232, 0.22);
  --container: 1440px;
  --gutter: clamp(22px, 3.2vw, 52px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  transition: transform 1s var(--ease) 0.85s;
}

.intro__word {
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.intro__word span {
  display: block;
  animation: intro-word 1.25s var(--ease) both;
}

.intro__line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--ink);
  transform-origin: left;
  animation: intro-line 1.25s var(--ease) both;
}

.is-loaded .intro {
  transform: translateY(-100%);
  pointer-events: none;
}

@keyframes intro-word {
  0% { transform: translateY(110%); }
  55%, 75% { transform: translateY(0); }
  100% { transform: translateY(-110%); }
}

@keyframes intro-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background 0.35s, opacity 0.2s;
}

.cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
  transform: translate(-50%, -50%);
}

.cursor.is-visible { opacity: 1; }
.cursor.is-hovering {
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  background: rgba(223, 255, 63, 0.08);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - (2 * var(--gutter)), var(--container));
  min-height: 108px;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.brand__name {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand__sub {
  margin-top: 7px;
  padding-left: 2px;
  font-size: 11px;
  letter-spacing: 0.42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3vw, 58px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 16px;
  color: rgba(244, 241, 232, 0.86);
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 29px;
  overflow: hidden;
  border: 1px solid var(--acid);
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.2s;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--paper);
  transform: translateY(102%);
  transition: transform 0.45s var(--ease);
}

.button:hover::before { transform: translateY(0); }
.button > * { position: relative; z-index: 1; }
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button--small {
  justify-self: end;
  min-height: 48px;
  padding: 0 24px;
  gap: 13px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(860px, 100svh);
  padding: 158px max(var(--gutter), calc((100vw - var(--container)) / 2)) 70px;
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 80%;
}

.hero__title {
  margin: 0;
  max-width: 1120px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(60px, 7.4vw, 118px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.14em 0.07em 0.24em;
  margin: -0.14em -0.07em -0.24em;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}

.is-loaded .title-line > span { transform: translateY(0); }
.is-loaded .title-line:nth-child(2) > span { transition-delay: 0.12s; }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 880px;
  margin-top: 55px;
}

.hero__bottom p {
  margin: 0;
  color: rgba(244, 241, 232, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 35px;
}

.text-link {
  position: relative;
  padding: 12px 0 7px;
  white-space: nowrap;
  font-size: 16px;
}

.text-link::after {
  bottom: 2px;
  transform: scaleX(1);
  transform-origin: left;
}

.text-link:hover::after { transform: scaleX(0); transform-origin: right; }

.hero__lines {
  position: absolute;
  z-index: 0;
  top: 29%;
  right: -2%;
  display: grid;
  gap: 58px;
  width: 51%;
}

.hero__lines i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--acid), rgba(223, 255, 63, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease) 1.4s;
}

.hero__lines i:nth-child(2) { margin-left: 11%; transition-delay: 1.5s; }
.hero__lines i:nth-child(3) { margin-left: 21%; transition-delay: 1.6s; }
.is-loaded .hero__lines i { transform: scaleX(1); }

.orbit {
  position: absolute;
  z-index: 1;
  top: 22%;
  right: 4.5%;
  width: clamp(255px, 28vw, 430px);
  aspect-ratio: 1;
}

.orbit__outer,
.orbit__inner {
  position: absolute;
  border: 1px solid rgba(223, 255, 63, 0.55);
  border-radius: 50%;
}

.orbit__outer { inset: 0; animation: orbit-spin 17s linear infinite; }
.orbit__outer span,
.mini-orbit span,
.footer-year span {
  position: absolute;
  top: 12%;
  right: 11%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
}

.orbit__inner {
  inset: 19%;
  border-style: dashed;
  animation: orbit-spin 13s linear infinite reverse;
}

.orbit__arrow {
  position: absolute;
  right: 19%;
  bottom: 18%;
  width: 38px;
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1;
  filter: drop-shadow(0 0 1px var(--paper));
  animation: cursor-float 4s var(--ease) infinite;
}

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes cursor-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(13px, -10px, 0) rotate(3deg); }
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 43px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.scroll-cue svg {
  width: 16px;
  height: 25px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.5;
  animation: scroll-arrow 1.8s var(--ease) infinite;
}

@keyframes scroll-arrow {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(4px); }
}

.section-pad {
  padding: 120px max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.work {
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 75px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0 7% 5px 0;
  color: var(--muted);
  line-height: 1.5;
}

.project {
  display: grid;
  grid-template-columns: 1fr 3.2fr;
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  max-width: 1240px;
}

.project--two {
  grid-template-columns: 3fr 1fr;
  max-width: 1140px;
  margin: 105px 0 0 auto;
}

.project__meta span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project__meta span::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--acid);
}

.project__meta h3 {
  margin: 13px 0 0 48px;
  font-size: 18px;
  font-weight: 400;
}

.project__meta--right span { flex-direction: row-reverse; justify-content: flex-end; }
.project__meta--right h3 { margin-left: 0; }

.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.7);
  border-radius: 18px;
  background: #101613;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.4s ease;
}

.project:hover .browser-frame { box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62); }

.browser-frame__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.25);
  background: #090a09;
}

.browser-frame__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
}

.browser-frame__bar--light { background: #f3f0e7; border-color: #dedbd2; }
.browser-frame__bar--light > span:nth-child(2) { opacity: 0.65; }
.browser-frame__bar--light > span:nth-child(3) { opacity: 0.35; }

.browser-frame__url {
  position: absolute;
  left: 50%;
  color: #75766f;
  font-size: 9px;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}

.project-preview {
  position: relative;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.project:hover .project-preview img { transform: scale(1.045); }

.preview-copy {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  padding: 8%;
}

.preview-copy span {
  margin-bottom: 15px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.preview-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.preview-copy i {
  width: 50px;
  height: 4px;
  margin-top: 25px;
  background: var(--acid);
}

.project-preview--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 11, 0.92) 0%, rgba(5, 15, 11, 0.64) 34%, transparent 64%);
}

.project-preview--dark .preview-copy { z-index: 1; }

.project-preview--light .preview-copy {
  right: 0;
  left: auto;
  width: 50%;
  color: #12120f;
}

.project-preview--light .preview-copy i { background: #12120f; }

.work__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(35px, 7vw, 120px);
  margin-bottom: clamp(58px, 6vw, 92px);
}

.work__heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 7.8vw, 118px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.work__heading p {
  max-width: 500px;
  margin: 0 0 0.4em;
  color: rgba(244, 241, 232, 0.7);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(210px, 0.27fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 5.5vw, 88px);
}

.showcase__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 20px 0 8px;
}

.showcase__projects {
  position: relative;
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(244, 241, 232, 0.28);
}

.showcase-project {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
  padding: 25px 10px 25px 45px;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 232, 0.42);
  text-align: left;
  cursor: pointer;
  transition: color 0.45s var(--ease), transform 0.45s var(--ease);
}

.showcase-project::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -7px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(244, 241, 232, 0.62);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--ink);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.showcase-project:hover { color: rgba(244, 241, 232, 0.78); }

.showcase-project.is-active {
  color: var(--paper);
  transform: translateX(4px);
}

.showcase-project.is-active::before {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0 5px var(--ink), 0 0 0 6px var(--acid);
}

.showcase-project > span {
  margin-bottom: 15px;
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.showcase-project.is-active > span { color: var(--acid); }

.showcase-project strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.showcase-project small {
  max-width: 210px;
  margin-top: 11px;
  color: inherit;
  font-size: 14px;
  line-height: 1.45;
}

.showcase__capabilities {
  padding-top: 38px;
}

.showcase__capabilities span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.showcase__capabilities p {
  margin: 0;
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.showcase__main { min-width: 0; }

.showcase-browser {
  border-color: rgba(244, 241, 232, 0.72);
  border-radius: 16px;
  background: #0b0c0b;
}

.showcase-browser .browser-frame__bar {
  height: 42px;
  padding: 0 16px;
}

.showcase-browser .browser-frame__bar > span { width: 8px; height: 8px; }

.browser-frame__status {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 241, 232, 0.54);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.browser-frame__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(223, 255, 63, 0.12);
}

.showcase-browser__viewport {
  position: relative;
  min-height: clamp(510px, 46vw, 650px);
  overflow: hidden;
  background: #0b0c0b;
}

.demo-project,
.demo-screen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-project {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.demo-project.is-active {
  z-index: 1;
  opacity: 1;
}

.demo-screen {
  overflow: hidden;
  opacity: 0;
  transform: translate3d(34px, 0, 0) scale(0.99);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}

.demo-project.is-active .demo-screen.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.demo-screen__image,
.success-background,
.booking-visual > img,
.mesa-booking-copy > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-nav {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 clamp(18px, 2.3vw, 36px);
  border-bottom: 1px solid rgba(244, 241, 232, 0.22);
  color: #fff;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
}

.demo-nav > strong {
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: 0.26em;
}

.demo-nav > div {
  display: flex;
  gap: clamp(18px, 2.3vw, 36px);
  font-size: 10px;
}

.demo-nav > button {
  justify-self: end;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 10px;
  cursor: pointer;
}

.demo-nav--light {
  color: #16110d;
  border-color: rgba(22, 17, 13, 0.2);
  background: rgba(244, 239, 228, 0.82);
}

.demo-hero-copy {
  position: absolute;
  z-index: 1;
  top: 25%;
  left: clamp(24px, 5vw, 75px);
  max-width: 430px;
  color: #fff;
}

.demo-hero-copy > span,
.booking-visual div span,
.mesa-booking-copy div span {
  display: block;
  margin-bottom: 15px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.demo-hero-copy h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5.1vw, 78px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.demo-hero-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.demo-hero-copy > button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border: 0;
  background: #f2eee3;
  color: #15120e;
  font-size: 11px;
  cursor: pointer;
}

.demo-hero-copy > button b { font-size: 17px; font-weight: 400; }

.demo-hero-copy--right {
  right: clamp(25px, 5vw, 75px);
  left: auto;
  color: #f9f3e8;
}

.demo-hero-copy--right > button { background: #241911; color: #f9f3e8; }

.demo-quick-booking {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 44px);
  bottom: 28px;
  left: clamp(18px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 52px;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 8, 7, 0.82);
  backdrop-filter: blur(12px);
}

.demo-quick-booking label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-quick-booking label span { color: rgba(255, 255, 255, 0.55); font-size: 9px; }
.demo-quick-booking label strong { color: #fff; font-size: 12px; font-weight: 500; }

.demo-quick-booking button {
  border: 0;
  background: var(--acid);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.demo-screen--booking,
.demo-screen--mesa-booking {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.82fr);
  background: #171512;
}

.booking-visual,
.mesa-booking-copy {
  position: relative;
  overflow: hidden;
}

.booking-visual::after,
.mesa-booking-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 6, 0.8), transparent 56%);
}

.booking-visual div,
.mesa-booking-copy div {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(22px, 3vw, 48px);
  left: clamp(22px, 3vw, 48px);
}

.booking-visual div strong {
  max-width: 440px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.booking-panel,
.mesa-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 52px);
  color: #f4f1e8;
  background: #0c0d0c;
}

.booking-panel__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.18);
  color: rgba(244, 241, 232, 0.58);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-panel__head em { color: var(--acid); font-style: normal; }

.booking-panel h3,
.mesa-form h3 {
  margin: 22px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.booking-dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.booking-dates button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(244, 241, 232, 0.2);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.booking-dates button span { color: var(--muted); font-size: 8px; }
.booking-dates button strong { font-size: 15px; font-weight: 500; }
.booking-dates button.is-selected { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.booking-dates button.is-selected span { color: rgba(9, 9, 9, 0.58); }

.booking-fields,
.mesa-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.booking-fields label,
.mesa-form label {
  color: rgba(244, 241, 232, 0.58);
  font-size: 9px;
}

.booking-fields select,
.mesa-form input,
.mesa-form select {
  width: 100%;
  min-height: 38px;
  margin-top: 6px;
  padding: 0 11px;
  border: 1px solid rgba(244, 241, 232, 0.2);
  border-radius: 0;
  outline: none;
  background: #121311;
  color: var(--paper);
  font-size: 10px;
}

.booking-label {
  margin: 17px 0 8px;
  color: rgba(244, 241, 232, 0.58);
  font-size: 9px;
}

.room-options { display: grid; gap: 7px; }

.room-options button {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 11px;
  border: 1px solid rgba(244, 241, 232, 0.2);
  background: transparent;
  color: var(--paper);
  font-size: 10px;
  cursor: pointer;
}

.room-options button strong { color: var(--muted); font-weight: 400; }
.room-options button.is-selected { border-color: var(--acid); }
.room-options button.is-selected::before { content: "●"; color: var(--acid); }

.demo-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 43px;
  margin-top: 15px;
  padding: 0 15px;
  border: 0;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.demo-primary span { font-size: 18px; font-weight: 400; }

.demo-screen--success { display: grid; place-items: center; }

.success-background {
  position: absolute;
  inset: 0;
  filter: brightness(0.42);
  transform: scale(1.03);
}

.success-card {
  position: relative;
  z-index: 1;
  width: min(86%, 520px);
  padding: clamp(30px, 5vw, 68px);
  border: 1px solid rgba(244, 241, 232, 0.44);
  background: rgba(8, 9, 8, 0.88);
  text-align: center;
  backdrop-filter: blur(12px);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
}

.success-mark svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.success-card small { color: var(--acid); text-transform: uppercase; letter-spacing: 0.14em; }

.success-card h3 {
  margin: 17px 0 25px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.success-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
  border-bottom: 1px solid rgba(244, 241, 232, 0.2);
  color: rgba(244, 241, 232, 0.7);
  font-size: 10px;
}

.success-card > button {
  display: inline-flex;
  gap: 24px;
  margin-top: 24px;
  padding: 12px 18px;
  border: 0;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  cursor: pointer;
}

.demo-screen--menu {
  padding: clamp(28px, 4vw, 58px);
  color: #17140f;
  background: #f0ecdf;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(23, 20, 15, 0.26);
}

.menu-head > div:first-child > span,
.mesa-form > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.menu-head h3 {
  margin: 7px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.menu-filters { display: flex; gap: 5px; }

.menu-filters button {
  padding: 8px 10px;
  border: 1px solid rgba(23, 20, 15, 0.24);
  background: transparent;
  color: #17140f;
  font-size: 9px;
  cursor: pointer;
}

.menu-filters button.is-selected { border-color: #17140f; background: #17140f; color: #f0ecdf; }

.menu-list { margin-top: 10px; }

.menu-list article {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid rgba(23, 20, 15, 0.2);
  transition: opacity 0.25s, transform 0.25s;
}

.menu-list article.is-filtered { display: none; }
.menu-list article > span { color: #7f786d; font-size: 9px; }
.menu-list article div { display: flex; flex-direction: column; gap: 4px; }
.menu-list article strong { font-family: "Manrope", sans-serif; font-size: clamp(17px, 1.7vw, 23px); font-weight: 500; }
.menu-list article small { color: #777064; font-size: 9px; }
.menu-list article em { font-style: normal; font-size: 12px; }

.menu-reserve {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 240px);
  min-height: 43px;
  margin: 22px 0 0 auto;
  padding: 0 15px;
  border: 0;
  background: #17140f;
  color: #f0ecdf;
  font-size: 10px;
  cursor: pointer;
}

.menu-reserve span { font-size: 18px; }

.mesa-booking-copy div h3 {
  max-width: 450px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 0.96;
}

.mesa-form { background: #f0ecdf; color: #17140f; }
.mesa-form h3 { margin-bottom: 18px; }
.mesa-form label { color: #716a60; }
.mesa-form input,
.mesa-form select { border-color: rgba(23, 20, 15, 0.24); background: #f7f3e8; color: #17140f; }

.time-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 14px 0;
}

.time-options button {
  min-height: 39px;
  border: 1px solid rgba(23, 20, 15, 0.24);
  background: transparent;
  color: #17140f;
  font-size: 10px;
  cursor: pointer;
}

.time-options button.is-selected { border-color: #17140f; background: #17140f; color: #f0ecdf; }
.mesa-form .demo-primary { background: #17140f; color: #f0ecdf; }
.mesa-form > small { margin-top: 9px; color: #817b70; font-size: 8px; text-align: center; }

.showcase__controls {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.showcase__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 22px;
}

.showcase__steps > button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 0 20px 17px 0;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 232, 0.5);
  text-align: left;
  cursor: pointer;
  transition: color 0.35s;
}

.showcase__steps > button strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
}

.showcase__steps > button span { font-size: 11px; }
.showcase__steps > button.is-active { color: var(--paper); }
.showcase__steps > button.is-active strong { color: var(--acid); }

.showcase__progress {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  background: rgba(244, 241, 232, 0.28);
}

.showcase__progress span {
  display: block;
  width: 33.333%;
  height: 2px;
  background: var(--acid);
  transform-origin: left;
  transition: width 0.55s var(--ease);
}

.showcase__arrows {
  display: flex;
  gap: 12px;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.showcase__arrows button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(244, 241, 232, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: color 0.35s, background 0.35s, transform 0.35s var(--ease);
}

.showcase__arrows button:hover { transform: scale(1.05); }
.showcase__arrows .showcase__next { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.showcase__arrows svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.2; }

.showcase__hint {
  margin: 4px 0 0;
  color: rgba(244, 241, 232, 0.48);
  font-size: 11px;
}

.services {
  border-top: 1px solid var(--line);
}

.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 65px;
}

.services__head h2 {
  margin: 0;
  max-width: 960px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.mini-orbit {
  position: relative;
  width: clamp(120px, 14vw, 190px);
  aspect-ratio: 1;
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: orbit-spin 14s linear infinite;
}

.service-list { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 150px 1.2fr 1fr 42px;
  align-items: center;
  min-height: 145px;
  border-bottom: 1px solid var(--line);
  transition: background 0.45s var(--ease), padding 0.45s var(--ease);
}

.service-row:hover {
  padding: 0 18px;
  background: rgba(244, 241, 232, 0.035);
}

.service-row__number {
  color: var(--acid);
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.service-row h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-row p {
  margin: 0;
  color: rgba(244, 241, 232, 0.72);
  font-size: 16px;
}

.service-row > svg {
  width: 42px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.7;
  transition: transform 0.45s var(--ease);
}

.service-row:hover > svg { transform: translateX(7px); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  min-height: 800px;
  padding: 100px max(var(--gutter), calc((100vw - var(--container)) / 2));
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.contact::before {
  content: "W";
  position: absolute;
  right: -0.055em;
  bottom: -0.32em;
  color: rgba(9, 9, 9, 0.055);
  font-family: "Manrope", sans-serif;
  font-size: clamp(450px, 57vw, 900px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.13em;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  height: 1px;
  background: rgba(9, 9, 9, 0.22);
}

.contact__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact__copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 6.2vw, 100px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.contact__copy h2 > span {
  display: block;
  overflow: hidden;
  padding: 0.14em 0 0.22em;
  margin: -0.14em 0 -0.22em;
}

.contact__copy h2 i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}

.contact__copy.is-inview h2 i { transform: translateY(0); }
.contact__copy.is-inview h2 > span:nth-child(2) i { transition-delay: 0.08s; }
.contact__copy.is-inview h2 > span:nth-child(3) i { transition-delay: 0.16s; }

.contact__copy > p {
  max-width: 360px;
  margin: 38px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.contact-orbit {
  --orbit-x: 0px;
  --orbit-y: 0px;
  position: relative;
  display: grid;
  place-items: center;
  width: 142px;
  aspect-ratio: 1;
  margin-top: 54px;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 0);
  transition: transform 0.6s var(--ease);
}

.contact-orbit svg {
  position: relative;
  z-index: 2;
  width: 32px;
  fill: var(--ink);
  animation: cursor-float 4s var(--ease) infinite;
}

.contact-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: orbit-spin 15s linear infinite;
}

.contact-orbit__ring::after {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(9, 9, 9, 0.34);
  border-radius: 50%;
}

.contact-orbit__dot {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 11%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.contact__signature {
  position: absolute;
  right: 2%;
  bottom: 3px;
  left: 38%;
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(9, 9, 9, 0.24);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.contact-form {
  align-self: center;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(244, 241, 232, 0.08);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 34px 90px rgba(61, 69, 0, 0.25);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 31%;
  height: 2px;
  background: var(--paper);
  transform-origin: left;
  transition: width 0.7s var(--ease);
}

.contact-form:focus-within::before { width: calc(100% + 2px); }

.contact-form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.19);
  color: rgba(244, 241, 232, 0.48);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
  margin-bottom: 27px;
  border-bottom: 1px solid #484844;
  transition: border-color 0.3s;
}

.field::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.field:focus-within::after {
  transform: scaleX(1);
  transform-origin: left;
}

.field label {
  display: block;
  margin-bottom: 3px;
  color: rgba(244, 241, 232, 0.48);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.3s;
}

.field:focus-within label { color: var(--acid); }

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.field input { height: 50px; padding: 0; }
.field textarea { min-height: 104px; padding: 15px 0; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #696965; }

.button--form {
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  margin-top: 3px;
  border: 0;
}

.button--form svg { transition: transform 0.45s var(--ease); }
.button--form:hover svg { transform: translateX(7px); }

.form-success {
  display: none;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(223, 255, 63, 0.22);
  border-radius: 5px;
  background: rgba(223, 255, 63, 0.08);
}

.form-success.is-visible { display: flex; animation: success-in 0.55s var(--ease) both; }
.form-success svg { width: 26px; flex: 0 0 auto; fill: none; stroke: var(--acid); stroke-width: 1.5; }
.form-success p { margin: 0; color: rgba(244, 241, 232, 0.78); font-size: 12px; line-height: 1.5; }
.form-success strong { color: var(--paper); font-weight: 500; }

@keyframes success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.6fr;
  align-items: center;
  gap: 50px;
  min-height: 210px;
  padding: 45px max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.brand--footer .brand__name { font-size: 28px; }
.site-footer p { margin: 15px 0 0; color: var(--muted); }

.footer-links {
  display: grid;
  gap: 16px;
  padding-left: 50px;
  border-left: 1px solid var(--line);
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 220px;
  color: rgba(244, 241, 232, 0.82);
}

.footer-links svg { width: 22px; fill: none; stroke: var(--acid); stroke-width: 1.5; transition: transform 0.35s var(--ease); }
.footer-links a:hover svg { transform: translateX(6px); }

.footer-year {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 120px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 241, 232, 0.55);
  border-radius: 50%;
  font-size: 14px;
}

.footer-year span { width: 10px; height: 10px; background: var(--paper); }

.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero__copy { width: 90%; }
  .orbit { right: -8%; opacity: 0.52; }
  .hero__lines { width: 60%; }
  .hero__bottom { align-items: flex-start; flex-direction: column; gap: 30px; }
  .hero__actions { margin-left: 0; }
  .work__heading { grid-template-columns: 1fr; gap: 25px; }
  .work__heading p { max-width: 620px; }
  .showcase { grid-template-columns: 1fr; gap: 44px; }
  .showcase__sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.4fr);
    align-items: end;
    gap: 38px;
    padding: 0;
  }
  .showcase__projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(244, 241, 232, 0.28);
    border-left: 0;
  }
  .showcase-project { min-height: 145px; padding: 30px 20px 12px 0; }
  .showcase-project::before { top: -7px; left: 0; }
  .showcase-project.is-active { transform: translateY(4px); }
  .showcase__capabilities { padding: 0 0 10px; }
  .showcase-browser__viewport { min-height: clamp(520px, 62vw, 650px); }
  .project { grid-template-columns: 1fr; }
  .project--two { grid-template-columns: 1fr; }
  .project--two .browser-frame { order: 2; }
  .project--two .project__meta { order: 1; }
  .project__meta h3 { margin-left: 48px; }
  .project__meta--right span { flex-direction: row; justify-content: flex-start; }
  .project__meta { margin-bottom: 22px; }
  .service-row { grid-template-columns: 110px 1.25fr 1fr 42px; }
  .contact { grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr); gap: 45px; }
  .contact__signature { display: none; }
}

@media (max-width: 780px) {
  .cursor { display: none; }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }
  .brand__name { font-size: 23px; }
  .brand__sub { margin-top: 5px; font-size: 8px; }
  .desktop-nav,
  .desktop-cta { display: none; }
  .menu-toggle {
    z-index: 52;
    display: grid;
    gap: 7px;
    width: 44px;
    padding: 12px 5px;
    border: 0;
    background: none;
    color: var(--paper);
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 100px var(--gutter) 50px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 14vw, 68px);
    letter-spacing: -0.06em;
  }
  .mobile-menu a span { align-self: flex-start; padding-top: 8px; color: var(--acid); font-family: "DM Sans", sans-serif; font-size: 11px; letter-spacing: 0.1em; }
  .hero {
    display: block;
    min-height: 760px;
    padding-top: 155px;
  }
  .hero__copy { width: 100%; }
  .hero__title { font-size: clamp(52px, 14.5vw, 90px); line-height: 0.94; }
  .hero__bottom { margin-top: 40px; }
  .hero__bottom p { font-size: 15px; }
  .hero__bottom p br { display: none; }
  .hero__actions { width: 100%; gap: 25px; }
  .hero__actions .button { padding: 0 22px; min-height: 54px; gap: 15px; }
  .orbit { top: 51%; right: -30%; width: 275px; opacity: 0.35; }
  .hero__lines { top: 54%; width: 85%; }
  .scroll-cue { display: none; }
  .section-pad { padding-top: 85px; padding-bottom: 85px; }
  .work__heading { margin-bottom: 50px; }
  .work__heading h2 { font-size: clamp(54px, 15vw, 88px); }
  .showcase__sidebar { grid-template-columns: 1fr; gap: 28px; }
  .showcase__capabilities { padding: 0; }
  .showcase-project { min-height: 135px; }
  .showcase-project small { font-size: 12px; }
  .showcase-browser { border-radius: 12px; }
  .browser-frame__status { display: none; }
  .showcase-browser__viewport { min-height: 690px; }
  .demo-nav {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 0 18px;
  }
  .demo-nav > div { display: none; }
  .demo-nav > strong { font-size: 18px; }
  .demo-hero-copy { top: 19%; left: 25px; }
  .demo-hero-copy--right { right: 25px; left: auto; }
  .demo-hero-copy h3 { font-size: clamp(43px, 10.5vw, 68px); }
  .demo-quick-booking { right: 16px; bottom: 17px; left: 16px; }
  .demo-screen--booking,
  .demo-screen--mesa-booking { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .booking-panel,
  .mesa-form { padding: 25px; }
  .booking-panel h3,
  .mesa-form h3 { margin: 15px 0; }
  .booking-visual div strong { font-size: 34px; }
  .demo-screen--menu { padding: 28px 24px; }
  .menu-head { align-items: flex-start; flex-direction: column; gap: 16px; padding-bottom: 18px; }
  .menu-list article { min-height: 72px; }
  .showcase__controls { gap: 18px; margin-top: 22px; }
  .showcase__steps > button { padding-right: 10px; }
  .showcase__arrows { gap: 8px; padding-left: 18px; }
  .showcase__arrows button { width: 48px; height: 48px; }
  .showcase__hint { margin-top: 9px; line-height: 1.5; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; margin-bottom: 50px; }
  .section-heading p { margin: 0; }
  .project--two { margin-top: 70px; }
  .project__meta h3 { margin-top: 8px; font-size: 15px; }
  .browser-frame { border-radius: 12px; }
  .browser-frame__bar { height: 31px; }
  .browser-frame__bar > span { width: 6px; height: 6px; }
  .browser-frame__url { display: none; }
  .preview-copy { width: 58%; }
  .preview-copy span { font-size: 7px; }
  .preview-copy strong { font-size: clamp(23px, 7vw, 40px); }
  .project-preview--light .preview-copy { width: 52%; }
  .services__head { margin-bottom: 45px; }
  .services__head h2 { font-size: clamp(50px, 14vw, 82px); }
  .mini-orbit { display: none; }
  .service-row {
    grid-template-columns: 75px 1fr 28px;
    min-height: 120px;
  }
  .service-row__number { font-size: 48px; }
  .service-row h3 { font-size: clamp(25px, 7vw, 37px); }
  .service-row p { grid-column: 2 / 3; margin-top: -26px; padding-bottom: 22px; font-size: 13px; }
  .service-row > svg { grid-column: 3; grid-row: 1 / 3; width: 28px; }
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .contact::before { right: -0.1em; bottom: -0.18em; font-size: 115vw; }
  .contact__copy h2 { font-size: clamp(52px, 13.5vw, 84px); }
  .contact__copy > p { margin-top: 27px; font-size: 15px; }
  .contact-orbit { position: absolute; right: 0; bottom: -10px; width: 104px; opacity: 0.62; }
  .contact-form { padding: 27px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form__head { margin-bottom: 30px; }
  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 45px 25px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-links { grid-row: 2; padding-left: 0; border-left: 0; }
  .footer-year { grid-column: 2; grid-row: 1 / 3; width: 92px; }
}

@media (max-width: 440px) {
  .hero { min-height: 700px; }
  .hero__title { font-size: 13.2vw; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .text-link { margin-left: 4px; }
  .work__heading p { font-size: 14px; }
  .showcase-project { min-height: 124px; padding: 24px 10px 10px 0; }
  .showcase-project > span { margin-bottom: 9px; font-size: 9px; }
  .showcase-project strong { font-size: 28px; }
  .showcase-project small { max-width: 150px; font-size: 10px; }
  .showcase__capabilities p { font-size: 19px; }
  .showcase-browser__viewport { min-height: 620px; }
  .demo-nav > button { padding: 0 10px; }
  .demo-hero-copy { right: 24px; top: 18%; }
  .demo-hero-copy h3 { font-size: 13vw; }
  .demo-hero-copy p { font-size: 11px; }
  .demo-hero-copy > button { gap: 12px; padding: 0 12px; font-size: 9px; }
  .demo-quick-booking { grid-template-columns: repeat(2, 1fr) 46px; }
  .demo-quick-booking label:nth-child(2) { display: none; }
  .demo-quick-booking label { padding: 0 12px; }
  .demo-screen--booking,
  .demo-screen--mesa-booking { grid-template-rows: 0 1fr; }
  .booking-visual,
  .mesa-booking-copy { visibility: hidden; }
  .booking-panel,
  .mesa-form { padding: 22px 18px; }
  .booking-panel h3,
  .mesa-form h3 { font-size: 25px; }
  .booking-dates button { min-height: 54px; }
  .room-options button { padding: 10px 8px; font-size: 9px; }
  .success-card { width: calc(100% - 30px); padding: 30px 20px; }
  .success-card h3 { font-size: 40px; }
  .demo-screen--menu { padding: 22px 16px; }
  .menu-head h3 { font-size: 34px; }
  .menu-filters { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; }
  .menu-list article { grid-template-columns: 30px 1fr auto; min-height: 75px; }
  .menu-list article strong { font-size: 16px; }
  .menu-list article small { font-size: 8px; }
  .menu-reserve { margin-top: 15px; }
  .showcase__controls { grid-template-columns: 1fr; }
  .showcase__arrows { justify-content: flex-end; padding-top: 14px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .showcase__hint { display: none; }
  .project-preview { aspect-ratio: 1.1; }
  .project-preview img { object-position: 61% center; }
  .project-preview--light img { object-position: 46% center; }
  .project-preview--light .preview-copy { right: 0; width: 55%; padding: 6%; }
  .service-row { grid-template-columns: 60px 1fr 24px; }
  .service-row__number { font-size: 39px; }
  .service-row p { margin-top: -18px; }
  .contact-form { margin: 0 -5px; padding: 22px 18px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-year { grid-column: 1; grid-row: auto; justify-self: start; }
}

/* Six-project interactive portfolio */
.showcase {
  --showcase-color: #11cbd1;
  display: block;
}

.showcase__projects {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid rgba(244, 241, 232, 0.27);
  border-bottom: 1px solid rgba(244, 241, 232, 0.27);
}

.showcase-project {
  min-width: 0;
  min-height: 104px;
  padding: 17px 16px 15px;
  border: 0;
  border-right: 1px solid rgba(244, 241, 232, 0.19);
  color: rgba(244, 241, 232, 0.52);
  transform: none;
}

.showcase-project:last-child { border-right: 0; }
.showcase-project::before { display: none; }

.showcase-project::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 3px;
  background: var(--acid);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.showcase-project:hover { color: var(--paper); }

.showcase-project.is-active {
  color: var(--paper);
  outline: 1px solid var(--acid);
  outline-offset: -1px;
  transform: none;
}

.showcase-project.is-active::after { opacity: 1; transform: scaleX(1); }

.showcase-project > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.showcase-project > span i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--project-color);
}

.showcase-project.is-active > span { color: var(--paper); }

.showcase-project strong {
  overflow: hidden;
  width: 100%;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-project small {
  overflow: hidden;
  width: 100%;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase__main { margin-top: 25px; }
.showcase-browser__viewport { min-height: clamp(560px, 46vw, 650px); }
.browser-frame__status i { background: var(--showcase-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--showcase-color) 18%, transparent); }
.showcase__steps > button.is-active strong { color: var(--showcase-color); }
.showcase__progress span { background: var(--showcase-color); }
.showcase__arrows .showcase__next { border-color: var(--showcase-color); background: var(--showcase-color); }

.showcase__footer-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  margin-top: 8px;
}

.showcase__capabilities { padding-top: 18px; }
.showcase__capabilities span { margin-bottom: 7px; }
.showcase__capabilities p { max-width: 820px; font-size: clamp(18px, 1.75vw, 25px); }
.showcase__hint { max-width: 310px; text-align: right; }

.demo-project--marevia { --demo-accent: #0db9c4; --demo-accent-2: #ff5b4a; --demo-deep: #082153; --demo-soft: #effcff; --demo-ink: #071f3b; }
.demo-project--sijaj { --demo-accent: #ff4fa3; --demo-accent-2: #2e57d5; --demo-deep: #50113c; --demo-soft: #fff1e8; --demo-ink: #32122b; }
.demo-project--bloom { --demo-accent: #8b5cf6; --demo-accent-2: #ff6b73; --demo-deep: #392064; --demo-soft: #fff4c6; --demo-ink: #23113c; }
.demo-project--pulse { --demo-accent: #2f7bff; --demo-accent-2: #ff641f; --demo-deep: #081c50; --demo-soft: #eef3ff; --demo-ink: #071943; }

.color-demo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 31%, rgba(255, 255, 255, 0) 62%);
}

.demo-screen--sijaj-hero::after { background: linear-gradient(90deg, rgba(46, 17, 40, 0.92), rgba(46, 17, 40, 0.44) 40%, transparent 67%); }
.demo-screen--bloom-hero::after { background: linear-gradient(90deg, rgba(255, 248, 220, 0.92), rgba(255, 248, 220, 0.54) 36%, transparent 61%); }
.demo-screen--pulse-hero::after { background: linear-gradient(90deg, rgba(5, 20, 64, 0.95), rgba(5, 20, 64, 0.55) 42%, transparent 72%); }

.demo-nav--brand {
  color: var(--demo-ink);
  border-color: rgba(5, 29, 57, 0.16);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
}

.demo-nav--brand > strong {
  color: var(--demo-accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.demo-nav--brand > button {
  border-color: var(--demo-accent);
  background: var(--demo-accent);
  color: #fff;
}

.demo-nav--brand > button b { display: inline-grid; min-width: 15px; place-items: center; }
.demo-nav--brand-dark { color: #fff; border-color: rgba(255, 255, 255, 0.2); background: rgba(5, 18, 55, 0.9); }

.demo-brand-copy {
  position: absolute;
  z-index: 2;
  top: 23%;
  left: clamp(24px, 4.5vw, 70px);
  max-width: 520px;
  color: var(--demo-ink);
}

.demo-brand-copy h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.7vw, 84px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.demo-brand-copy h3 span { color: var(--demo-accent); }
.demo-brand-copy h3 em { color: var(--demo-accent-2); font-style: normal; }
.demo-brand-copy p { max-width: 350px; margin: 18px 0 0; font-size: 13px; line-height: 1.45; }

.demo-brand-copy > button {
  display: inline-flex;
  align-items: center;
  gap: 23px;
  min-height: 43px;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  background: var(--demo-accent-2);
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.demo-brand-copy > button b { font-size: 17px; font-weight: 400; }
.demo-brand-copy--soft, .demo-brand-copy--light { color: #fff; }
.demo-brand-copy--ink { color: var(--demo-ink); }

.brand-quick-actions {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 42px);
  bottom: 24px;
  left: clamp(18px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(160px, 0.75fr);
  min-height: 69px;
  border: 1px solid rgba(5, 29, 57, 0.15);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 13px 30px rgba(6, 31, 63, 0.14);
  backdrop-filter: blur(15px);
}

.brand-quick-actions label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border-right: 1px solid rgba(5, 29, 57, 0.12);
  color: var(--demo-ink);
}

.brand-quick-actions label span { color: rgba(5, 29, 57, 0.55); font-size: 8px; }
.brand-quick-actions label strong { font-size: 11px; font-weight: 650; }
.brand-quick-actions > button { margin: 9px; border: 0; background: var(--demo-accent-2); color: #fff; font-size: 10px; font-weight: 650; cursor: pointer; }
.brand-quick-actions > button b { margin-left: 14px; font-size: 16px; font-weight: 400; }

.brand-note,
.pulse-stat {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  display: grid;
  min-width: 255px;
  padding: 18px 20px;
  background: var(--demo-accent);
  color: #fff;
}

.brand-note span, .pulse-stat span { font-size: 8px; text-transform: uppercase; letter-spacing: 0.12em; }
.brand-note strong, .pulse-stat strong { margin-top: 7px; font-family: "Manrope", sans-serif; font-size: 22px; }
.brand-note button { margin-top: 14px; padding: 10px 0 0; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.38); background: transparent; color: #fff; font-size: 9px; text-align: left; cursor: pointer; }
.pulse-stat { background: var(--demo-accent-2); }
.pulse-stat small { margin-top: 5px; font-size: 9px; }

.demo-workflow,
.demo-checkout,
.demo-appointment,
.demo-cart,
.demo-pulse-signup {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.82fr);
  color: var(--demo-ink);
  background: var(--demo-soft);
}

.workflow-media,
.cart-art,
.pulse-signup-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.workflow-media::after,
.cart-art::after,
.pulse-signup-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--demo-deep) 88%, transparent), transparent 58%);
}

.workflow-media img,
.cart-art img,
.pulse-signup-art img { width: 100%; height: 100%; object-fit: cover; }

.workflow-media > div,
.pulse-signup-art > div {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  color: #fff;
}

.workflow-media > div span,
.pulse-signup-art > div span { display: block; margin-bottom: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
.workflow-media > div strong { display: block; max-width: 500px; font-family: "Manrope", sans-serif; font-size: clamp(34px, 3.8vw, 58px); font-weight: 650; line-height: 0.95; letter-spacing: -0.06em; }
.pulse-signup-art > div strong { font-size: clamp(25px, 3vw, 40px); }

.workflow-panel,
.checkout-form,
.appointment-form,
.cart-panel,
.pulse-signup-form {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.2vw, 48px);
}

.workflow-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.workflow-kicker em { color: var(--demo-accent); font-style: normal; }
.workflow-panel h3, .checkout-form h3, .appointment-form h3, .cart-panel h3, .pulse-signup-form h3 { margin: 18px 0; font-family: "Manrope", sans-serif; font-size: clamp(27px, 2.7vw, 40px); font-weight: 650; line-height: 1; letter-spacing: -0.055em; }

.choice-stack { display: grid; gap: 7px; }
.choice-stack button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--demo-ink) 19%, transparent);
  background: rgba(255, 255, 255, 0.48);
  color: var(--demo-ink);
  text-align: left;
  cursor: pointer;
}

.choice-stack button > span { display: flex; flex-direction: column; gap: 5px; font-size: 11px; font-weight: 650; }
.choice-stack button small { color: color-mix(in srgb, var(--demo-ink) 56%, transparent); font-size: 8px; font-weight: 400; }
.choice-stack button > strong { font-size: 10px; font-weight: 600; white-space: nowrap; }
.choice-stack button.is-selected { border-color: var(--demo-accent); background: color-mix(in srgb, var(--demo-accent) 13%, white); box-shadow: inset 3px 0 0 var(--demo-accent); }

.workflow-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 13px; }
.workflow-fields label, .checkout-form label, .appointment-form label, .pulse-signup-form label { color: color-mix(in srgb, var(--demo-ink) 58%, transparent); font-size: 8px; }
.workflow-fields input, .workflow-fields select, .checkout-form input, .appointment-form input, .pulse-signup-form input, .pulse-signup-form select {
  width: 100%;
  min-height: 38px;
  margin-top: 5px;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.66);
  color: var(--demo-ink);
  font-size: 10px;
}

.brand-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 43px;
  margin-top: 14px;
  padding: 0 15px;
  border: 0;
  background: var(--demo-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
}

.brand-primary:hover { transform: translateY(-2px); }
.brand-primary.is-confirmed { background: #159b61; }
.brand-primary span { font-size: 18px; font-weight: 400; }

.stylist-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 12px; }
.stylist-row button { display: flex; align-items: center; gap: 7px; min-height: 42px; padding: 6px; border: 1px solid color-mix(in srgb, var(--demo-ink) 17%, transparent); background: rgba(255, 255, 255, 0.48); color: var(--demo-ink); font-size: 9px; cursor: pointer; }
.stylist-row i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--demo-accent-2); color: #fff; font-size: 8px; font-style: normal; }
.stylist-row button.is-selected { border-color: var(--demo-accent); background: color-mix(in srgb, var(--demo-accent) 12%, white); }

.checkout-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(35px, 5vw, 78px);
  background: linear-gradient(145deg, var(--demo-deep), color-mix(in srgb, var(--demo-accent) 50%, var(--demo-deep)));
  color: #fff;
}

.checkout-summary > span, .checkout-form > span, .appointment-form > span, .cart-panel > span, .pulse-signup-form > span { font-size: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
.checkout-summary h3 { margin: 10px 0 32px; font-family: "Manrope", sans-serif; font-size: clamp(54px, 6vw, 88px); line-height: 0.9; letter-spacing: -0.075em; }
.checkout-summary dl { margin: 0; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.checkout-summary dl div { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.checkout-summary dt { color: rgba(255, 255, 255, 0.62); font-size: 9px; }
.checkout-summary dd { margin: 0; font-size: 11px; }
.checkout-form { background: var(--demo-soft); }
.checkout-form label + label, .pulse-signup-form label + label { margin-top: 11px; }
.checkout-form > small, .cart-panel > small { margin-top: 9px; color: color-mix(in srgb, var(--demo-ink) 53%, transparent); font-size: 8px; text-align: center; }

.choice-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.choice-chips button { min-height: 38px; border: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent); background: transparent; color: var(--demo-ink); font-size: 9px; cursor: pointer; }
.choice-chips button.is-selected { border-color: var(--demo-accent); background: var(--demo-accent); color: #fff; }

.demo-appointment { grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr); background: var(--demo-soft); }
.appointment-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(35px, 5vw, 72px); background: linear-gradient(145deg, var(--demo-accent-2), var(--demo-deep)); color: #fff; }
.appointment-copy > span { font-size: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
.appointment-copy h3 { margin: 13px 0; font-family: "Manrope", sans-serif; font-size: clamp(48px, 5.5vw, 80px); line-height: 0.91; letter-spacing: -0.075em; }
.appointment-copy p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 11px; }
.date-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 5px 0 12px; }
.date-strip button { display: flex; min-height: 57px; flex-direction: column; justify-content: center; gap: 4px; border: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent); background: transparent; color: var(--demo-ink); cursor: pointer; }
.date-strip button small { font-size: 7px; }
.date-strip button strong { font-size: 15px; }
.date-strip button.is-selected { border-color: var(--demo-accent); background: var(--demo-accent); color: #fff; }

.demo-catalog, .demo-schedule { padding: clamp(27px, 3.7vw, 52px); color: var(--demo-ink); background: var(--demo-soft); }
.catalog-head, .schedule-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent); }
.catalog-head > div > span, .schedule-head > span { font-size: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
.catalog-head h3, .schedule-head h3 { margin: 6px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(28px, 3.2vw, 46px); font-weight: 650; letter-spacing: -0.06em; }
.catalog-filters { display: flex; gap: 6px; }
.catalog-filters button { min-height: 32px; padding: 0 12px; border: 1px solid color-mix(in srgb, var(--demo-ink) 18%, transparent); background: transparent; color: var(--demo-ink); font-size: 8px; cursor: pointer; }
.catalog-filters button.is-selected { border-color: var(--demo-accent); background: var(--demo-accent); color: #fff; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 17px; }
.catalog-grid article { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; min-width: 0; }
.catalog-grid article.is-filtered, .schedule-list button.is-filtered { display: none; }
.product-image { grid-column: 1 / -1; height: clamp(180px, 21vw, 300px); overflow: hidden; background: #fff; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.7); }
.product-image--lamp img { object-position: 12% center; }
.product-image--tote img { object-position: 75% 45%; }
.product-image--care img { object-position: 94% 64%; }
.catalog-grid article > span { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.catalog-grid article > span strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.catalog-grid article > span small { font-size: 9px; }
.catalog-grid article > button { align-self: stretch; padding: 0 10px; border: 1px solid var(--demo-accent); background: transparent; color: var(--demo-accent); font-size: 8px; cursor: pointer; }
.catalog-grid article > button.is-added { background: var(--demo-accent); color: #fff; }
.catalog-cart, .schedule-next { display: flex; justify-content: space-between; align-items: center; width: 100%; min-height: 42px; margin-top: 18px; padding: 0 14px; border: 0; background: var(--demo-ink); color: #fff; font-size: 9px; cursor: pointer; }
.catalog-cart b { display: inline-grid; width: 19px; height: 19px; margin-right: 4px; place-items: center; border-radius: 50%; background: var(--demo-accent); color: #fff; font-size: 8px; }

.demo-cart { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr); }
.cart-art > span { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; color: #fff; font-family: "Manrope", sans-serif; font-size: clamp(35px, 4vw, 60px); font-weight: 650; line-height: 0.95; letter-spacing: -0.06em; }
.cart-empty { margin-bottom: 15px; padding: 13px; border: 1px dashed color-mix(in srgb, var(--demo-ink) 25%, transparent); color: color-mix(in srgb, var(--demo-ink) 62%, transparent); font-size: 9px; line-height: 1.45; }
.cart-empty.has-items { border-style: solid; border-color: var(--demo-accent); color: var(--demo-ink); }
.cart-line, .cart-total { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--demo-ink) 17%, transparent); font-size: 10px; }
.cart-line strong { font-weight: 600; }
.cart-total { margin-top: 3px; font-size: 14px; font-weight: 700; }

.demo-schedule { background: var(--demo-soft); }
.schedule-head { align-items: center; }
.schedule-head h3 { flex: 1; margin: 0; }
.schedule-list { margin-top: 10px; }
.schedule-list > button { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; width: 100%; min-height: 78px; padding: 0 14px; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--demo-ink) 17%, transparent); background: transparent; color: var(--demo-ink); text-align: left; cursor: pointer; }
.schedule-list > button time { color: var(--demo-accent); font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; }
.schedule-list > button span { display: flex; flex-direction: column; gap: 5px; }
.schedule-list > button strong { font-size: 13px; }
.schedule-list > button small { color: color-mix(in srgb, var(--demo-ink) 55%, transparent); font-size: 8px; }
.schedule-list > button em { padding: 8px 10px; border: 1px solid var(--demo-accent); color: var(--demo-accent); font-size: 8px; font-style: normal; }
.schedule-list > button.is-selected { background: color-mix(in srgb, var(--demo-accent) 10%, white); }
.schedule-list > button.is-selected em { background: var(--demo-accent); color: #fff; }
.schedule-next { width: min(100%, 290px); margin-left: auto; background: var(--demo-accent-2); }

.pulse-signup-art > div { background: var(--demo-accent-2); padding: 20px; }
.pulse-signup-form { background: var(--demo-soft); }

@media (max-width: 1050px) {
  .showcase { display: block; }
  .showcase__projects { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-project { min-height: 92px; padding: 14px 14px 13px; border-bottom: 1px solid rgba(244, 241, 232, 0.19); }
  .showcase-project:nth-child(3n) { border-right: 0; }
  .showcase-project:nth-child(n + 4) { border-bottom: 0; }
  .showcase-project.is-active { transform: none; }
  .showcase__main { margin-top: 23px; }
  .showcase-browser__viewport { min-height: clamp(560px, 63vw, 650px); }
}

@media (max-width: 780px) {
  .showcase__projects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-project { min-height: 84px; padding: 12px; }
  .showcase-project:nth-child(3n) { border-right: 1px solid rgba(244, 241, 232, 0.19); }
  .showcase-project:nth-child(2n) { border-right: 0; }
  .showcase-project:nth-child(n + 4) { border-bottom: 1px solid rgba(244, 241, 232, 0.19); }
  .showcase-project:nth-child(n + 5) { border-bottom: 0; }
  .showcase-project strong { font-size: 19px; }
  .showcase-project small { font-size: 9px; }
  .showcase-browser__viewport { min-height: 690px; }
  .demo-brand-copy { top: 18%; right: 24px; left: 24px; }
  .demo-brand-copy h3 { font-size: clamp(46px, 10.7vw, 76px); }
  .color-demo-hero::after { background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58) 55%, transparent 90%); }
  .demo-screen--sijaj-hero::after { background: linear-gradient(90deg, rgba(46, 17, 40, 0.92), rgba(46, 17, 40, 0.52) 62%, transparent 95%); }
  .demo-screen--bloom-hero::after { background: linear-gradient(90deg, rgba(255, 248, 220, 0.93), rgba(255, 248, 220, 0.6) 59%, transparent 92%); }
  .demo-screen--pulse-hero::after { background: linear-gradient(90deg, rgba(5, 20, 64, 0.95), rgba(5, 20, 64, 0.62) 62%, transparent 95%); }
  .brand-quick-actions { grid-template-columns: repeat(2, 1fr); }
  .brand-quick-actions label:nth-child(3) { display: none; }
  .brand-quick-actions > button { min-height: 50px; }
  .brand-note, .pulse-stat { right: 17px; bottom: 17px; min-width: 220px; }
  .demo-workflow, .demo-checkout, .demo-appointment, .demo-cart, .demo-pulse-signup { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .workflow-panel, .checkout-form, .appointment-form, .cart-panel, .pulse-signup-form { padding: 24px; }
  .checkout-summary, .appointment-copy { padding: 26px; }
  .checkout-summary h3, .appointment-copy h3 { margin-bottom: 18px; font-size: 44px; }
  .checkout-summary dl { display: grid; grid-template-columns: repeat(3, 1fr); }
  .checkout-summary dl div { flex-direction: column; gap: 4px; padding: 9px; border-right: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 0; }
  .demo-catalog, .demo-schedule { padding: 24px; }
  .product-image { height: 235px; }
  .catalog-head, .schedule-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .schedule-head h3 { order: 2; }
  .schedule-head .catalog-filters { order: 3; }
  .schedule-list > button { min-height: 72px; }
  .showcase__footer-copy { grid-template-columns: 1fr; gap: 8px; }
  .showcase__hint { max-width: none; text-align: left; }
}

@media (max-width: 440px) {
  .showcase-project { min-height: 78px; padding: 10px; }
  .showcase-project > span { margin-bottom: 6px; font-size: 8px; }
  .showcase-project strong { font-size: 17px; }
  .showcase-project small { max-width: none; font-size: 8px; }
  .showcase__capabilities p { font-size: 17px; }
  .showcase-browser__viewport { min-height: 650px; }
  .demo-brand-copy { top: 16%; }
  .demo-brand-copy h3 { font-size: 12vw; }
  .demo-brand-copy p { font-size: 10px; }
  .demo-brand-copy > button { gap: 12px; padding: 0 12px; }
  .brand-quick-actions { right: 10px; bottom: 10px; left: 10px; }
  .brand-quick-actions label { padding: 0 10px; }
  .brand-quick-actions > button { margin: 7px; }
  .brand-note, .pulse-stat { right: 10px; bottom: 10px; left: 10px; min-width: 0; }
  .demo-workflow, .demo-checkout, .demo-appointment, .demo-cart, .demo-pulse-signup { grid-template-rows: 0 1fr; }
  .workflow-media, .cart-art, .pulse-signup-art, .checkout-summary, .appointment-copy { visibility: hidden; }
  .workflow-panel, .checkout-form, .appointment-form, .cart-panel, .pulse-signup-form { padding: 21px 17px; }
  .workflow-panel h3, .checkout-form h3, .appointment-form h3, .cart-panel h3, .pulse-signup-form h3 { font-size: 25px; }
  .choice-stack button { min-height: 55px; padding: 8px; }
  .workflow-fields { grid-template-columns: 1fr; }
  .demo-catalog, .demo-schedule { padding: 18px 14px; }
  .catalog-head h3, .schedule-head h3 { font-size: 29px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 8px; }
  .catalog-grid article { grid-template-columns: 82px 1fr auto; min-height: 82px; }
  .product-image { grid-column: auto; grid-row: 1; height: 82px; }
  .catalog-grid article > span { grid-column: 2; }
  .catalog-grid article > button { grid-column: 3; padding: 0 8px; }
  .catalog-cart { margin-top: 10px; }
  .schedule-list > button { grid-template-columns: 56px 1fr; min-height: 73px; padding: 0 8px; }
  .schedule-list > button time { font-size: 15px; }
  .schedule-list > button em { display: none; }
  .schedule-next { margin-top: 11px; }
  .date-strip button { min-height: 52px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .intro { display: none; }
  .title-line > span,
  .hero__lines i { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
