:root {
  --background: oklch(0.14 0.012 60);
  --panel: oklch(0.18 0.014 55);
  --panel-soft: oklab(0.18 0.008 0.011 / 0.36);
  --text: oklch(0.94 0.018 80);
  --muted: oklch(0.7 0.025 80);
  --line: oklch(0.28 0.018 65 / 0.6);
  --gold: oklch(0.76 0.135 75);
  --black: oklch(0.12 0.01 60);
  --max: 1264px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 82px 82px;
  mix-blend-mode: overlay;
}

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

img {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 65px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  background: oklab(0.14 0.006 0.010 / 0.6);
  border-bottom: 1px solid oklab(0.28 0.008 0.016 / 0.36);
  backdrop-filter: blur(16px);
}

.brand,
.site-header nav,
.header-cta,
.button-gold,
.button-line,
.marquee,
.kicker,
.stats span,
.facts dt,
.menu-list small,
.contact-list span {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1;
}

.site-header nav {
  display: flex;
  gap: 36px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.header-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid oklab(0.76 0.035 0.13 / 0.6);
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.language-select select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: oklab(0.14 0.006 0.01 / 0.9);
  color: var(--text);
  font: inherit;
  letter-spacing: 0.08em;
  padding: 0 9px;
}

.hero {
  position: relative;
  min-height: 1050px;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0.7;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 47%, rgba(229, 170, 81, 0.22) 0 18%, transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, 0.54) 88%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.62));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 145px 32px 0;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(76px, 15vw, 192px);
  line-height: 0.85;
  letter-spacing: 0.01em;
}

h1 span,
h2 span {
  display: block;
}

h1 span:first-child {
  color: var(--text);
}

h1 span:last-child {
  color: var(--gold);
}

.hero-copy {
  width: min(580px, 100%);
  margin: 42px 0 0;
  color: oklab(0.94 0.003 0.018 / 0.8);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.button-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.button-line {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid oklab(0.94 0.003 0.018 / 0.3);
  color: oklab(0.94 0.003 0.018 / 0.8);
  font-size: 14px;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid oklab(0.94 0.003 0.018 / 0.14);
  margin-top: 42px;
  padding-top: 28px;
}

.stats strong {
  display: block;
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  color: var(--text);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: oklab(0.14 0.006 0.01 / 0.86);
  color: var(--text);
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-size: 30px;
  letter-spacing: 0.18em;
}

.marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 24px 0;
  animation: move 32s linear infinite;
}

.marquee i {
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
}

@keyframes move {
  to {
    transform: translateX(-50%);
  }
}

.section-grid,
.process,
.visit-wrap,
.gallery-heading,
.menu-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: 32px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.story {
  padding-block: 160px;
}

h2 {
  color: var(--text);
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.story > div:first-child,
.services .section-grid > div:first-child {
  grid-column: span 5;
}

.story-copy,
.section-lead {
  grid-column: 7 / -1;
}

.story-copy p,
.section-lead,
.gallery-heading p,
.process p,
.contact-list p,
.note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.story-copy p {
  margin: 0 0 24px;
}

.story-copy em {
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.facts div {
  padding-top: 22px;
}

.facts dt {
  color: var(--muted);
  font-size: 11px;
}

.facts dd {
  margin: 9px 0 0;
  color: var(--text);
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-size: 34px;
}

.services,
.visit {
  padding-block: 144px;
  background: var(--panel-soft);
  border-block: 1px solid var(--line);
}

.section-lead {
  margin: 34px 0 0;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 78px;
  gap: 0;
}

.menu-list article {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  grid-template-areas:
    "num title price"
    "num desc time";
  column-gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.menu-list article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.menu-list article:nth-child(odd) {
  padding-right: 34px;
}

.menu-list article:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.menu-list span,
.process-grid span {
  grid-area: num;
  color: var(--gold);
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.menu-list h3 {
  grid-area: title;
  color: var(--text);
  font-size: 32px;
  line-height: 1;
}

.menu-list p {
  grid-area: desc;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-list small {
  grid-area: time;
  align-self: end;
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
}

.menu-list strong {
  grid-area: price;
  justify-self: end;
  color: var(--gold);
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 400;
}

.note {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  padding-inline: 32px;
  font-size: 14px;
}

.process {
  padding-block: 144px;
}

.process h2 {
  max-width: 800px;
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.process-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
}

.process-grid article + article {
  border-left: 0;
}

.process-grid h3 {
  margin-top: 72px;
  font-size: 42px;
}

.process-grid p {
  margin: 14px 0 0;
}

.gallery {
  padding-bottom: 104px;
}

.gallery-heading {
  padding-top: 0;
  padding-bottom: 58px;
}

.gallery-heading h2 {
  margin-bottom: 18px;
}

.gallery-heading p {
  max-width: 470px;
  margin: 0;
}

.gallery-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: 32px;
  display: grid;
  grid-template-columns: 1.45fr 1.15fr 0.85fr;
  grid-template-rows: 520px 77px 487px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.02);
}

.gallery-grid img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-grid img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-grid img:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-grid img:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.gallery-grid img:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.visit {
  border-bottom: 0;
}

.visit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

.booking-map {
  display: grid;
  gap: 24px;
}

.booking-form {
  border: 1px solid oklab(0.76 0.035 0.13 / 0.45);
  background:
    radial-gradient(circle at 18% 0%, oklab(0.76 0.035 0.13 / 0.18), transparent 36%),
    linear-gradient(145deg, oklab(0.25 0.022 0.045 / 0.88), oklab(0.14 0.006 0.01 / 0.92) 52%, oklab(0.1 0.004 0.006 / 0.96));
  box-shadow:
    inset 0 1px 0 oklab(0.94 0.003 0.018 / 0.08),
    0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 28px;
}

.booking-form h3 {
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid oklab(0.76 0.035 0.13 / 0.28);
  border-radius: 0;
  background: oklab(0.19 0.011 0.02 / 0.86);
  color: var(--text);
  font: 400 15px/1.4 Inter, system-ui, sans-serif;
  letter-spacing: 0;
  padding: 13px 14px;
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: oklab(0.94 0.003 0.018 / 0.45);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.language-select select:focus {
  border-color: var(--gold);
  background: oklab(0.22 0.017 0.032 / 0.92);
  box-shadow: 0 0 0 3px oklab(0.76 0.035 0.13 / 0.14);
}

.booking-form textarea {
  margin-top: 16px;
  resize: vertical;
}

.time-selects {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 10px;
}

.form-help {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.booking-submit {
  border: 0;
  margin-top: 22px;
  cursor: pointer;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.contact-list span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 10px;
}

.contact-list p {
  margin: 0;
}

.visit-button {
  margin-top: 48px;
}

iframe {
  width: 100%;
  min-height: 575px;
  border: 1px solid var(--line);
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.56);
}

footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px 32px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

footer strong {
  color: var(--text);
  font-family: "Bebas Neue", Oswald, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

footer p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 14px;
}

.floating-action {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid oklab(0.76 0.035 0.13 / 0.62);
  background: oklab(0.14 0.006 0.01 / 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.floating-action:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: oklab(0.18 0.008 0.011 / 0.9);
}

.floating-whatsapp {
  border-radius: 999px;
  background: #25d366;
  border-color: #25d366;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.floating-mindzlabz {
  border-radius: 999px;
}

.floating-mindzlabz img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

  .site-header nav {
    display: none;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .header-tools {
    gap: 8px;
  }

  .language-select span {
    display: none;
  }

  .language-select select {
    min-height: 34px;
    max-width: 92px;
    font-size: 11px;
    padding-inline: 7px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: 785px;
  }

  .hero-content {
    padding: 300px 20px 0;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    font-size: clamp(70px, 19vw, 84px);
    line-height: 0.85;
  }

  .hero-copy {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 38px;
  }

  .button-gold {
    width: min(100%, 335px);
  }

  .stats {
    display: none;
  }

  .marquee {
    font-size: 26px;
  }

  .marquee div {
    padding-block: 24px;
    gap: 34px;
  }

  .section-grid,
  .visit-wrap,
  .process-grid,
  .menu-list,
  footer {
    display: block;
  }

  .section-grid,
  .process,
  .visit-wrap,
  .gallery-heading,
  .menu-list,
  .note,
  .gallery-grid {
    padding-inline: 20px;
  }

  .story,
  .services,
  .process,
  .visit {
    padding-block: 112px;
  }

  h2 {
    font-size: 56px;
    line-height: 0.92;
  }

  .story-copy,
  .section-lead {
    margin-top: 42px;
  }

  .story-copy p,
  .section-lead,
  .gallery-heading p,
  .process p,
  .contact-list p {
    font-size: 16px;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .menu-list article,
  .menu-list article:nth-child(odd),
  .menu-list article:nth-child(even) {
    grid-template-columns: 60px 1fr auto;
    padding: 28px 0;
    border-left: 0;
  }

  .menu-list article:nth-last-child(2) {
    border-bottom: 0;
  }

  .menu-list h3 {
    font-size: 30px;
  }

  .menu-list p {
    padding-right: 10px;
  }

  .process h2 {
    margin-bottom: 46px;
  }

  .process-grid article {
    min-height: 236px;
  }

  .process-grid article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(5) {
    min-height: auto;
    height: auto;
    aspect-ratio: 1 / 1.08;
    margin-bottom: 16px;
  }

  .visit-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .booking-form {
    padding: 22px;
  }

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

  iframe {
    min-height: 420px;
  }

  footer strong {
    display: block;
    margin-bottom: 12px;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-action {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }

  .floating-mindzlabz img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero {
    min-height: 790px;
  }

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

  .menu-list article,
  .menu-list article:nth-child(odd),
  .menu-list article:nth-child(even) {
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "num title"
      "num desc"
      "num price"
      "num time";
  }

  .menu-list strong,
  .menu-list small {
    justify-self: start;
    margin-top: 12px;
  }
}
