/* Thisdomaindontexist123 — adaptive kineticism layout */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: #e2e8f0;
  background: #0f172a;
  overflow-x: hidden;
}

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

a {
  color: #facc15;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fde047;
}

:focus-visible {
  outline: 2px solid #facc15;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.85rem 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  margin: 0;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #e2e8f0;
}

.site-nav--desktop {
  display: none;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.site-nav__list a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav__list a:hover {
  color: #facc15;
}

.burger {
  order: 999;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: linear-gradient(145deg, #1e293b, #0f172a);
  cursor: pointer;
  border-radius: 2px;
}

.burger__line {
  display: block;
  height: 2px;
  width: 55%;
  margin: 0 auto;
  background: #facc15;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  background: rgba(15, 23, 42, 0.97);
  padding: 5rem 4% 2rem;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 22rem;
  margin-left: auto;
}

.mobile-drawer__list a {
  display: block;
  padding: 0.85rem 0;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.mobile-drawer__list a:hover {
  color: #facc15;
}

/* Burger menu: visible at viewport width 1023px and below (V5.4) */
@media (max-width: 1023px) {
  .site-nav--desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-drawer {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .site-nav--desktop {
    display: block;
    flex: 1;
    margin-left: 2rem;
  }

  .mobile-drawer {
    display: none;
  }
}

.banner {
  position: relative;
  width: 100%;
  min-height: clamp(22rem, 55vh, 36rem);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.banner--hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(26rem, 70vh, 42rem);
}

.banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.35) 100%
  );
  pointer-events: none;
}

.banner__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: 2rem 4% 2.5rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.banner--hero .banner__content {
  max-width: 52rem;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f8fafc;
}

.hero__lead {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #cbd5e1;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #facc15;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
}

.section {
  padding: 3rem 4% 3.5rem;
  max-width: 75rem;
  margin: 0 auto;
  scroll-margin-top: 5rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f1f5f9;
}

.section__text {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.98rem;
}

.banner--section {
  min-height: clamp(16rem, 38vh, 26rem);
  margin-bottom: 2rem;
  border-radius: 3px;
  border: 1px solid rgba(226, 232, 240, 0.1);
}

.banner--section .banner__content {
  text-align: center;
  margin-bottom: 1.25rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--products {
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}

@media (min-width: 40rem) {
  .grid--products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 60rem) {
  .grid--products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--split {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 48rem) {
  .grid--split {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.card {
  position: relative;
  padding: 1.35rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 2px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.card__desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.card__price {
  margin: 0;
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #facc15;
}

.split-card {
  padding: 1.5rem 1.35rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 2px;
  max-width: 36rem;
  margin: 0 auto;
}

.split-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f1f5f9;
}

.split-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 0.5rem;
}

@media (min-width: 52rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: start;
  }
}

.contact-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.contact-card__text {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 2px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: 2px;
  background: rgba(15, 23, 42, 0.8);
  color: #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.field--checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.field--checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn--accent {
  background: #1e293b;
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.btn--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #facc15;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn--accent:hover::before,
.btn--accent:focus-visible::before {
  transform: scaleX(1);
}

.btn--accent span {
  position: relative;
  z-index: 1;
}

.btn--accent:hover span,
.btn--accent:focus-visible span {
  color: #0f172a;
}

.btn--ghost {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(226, 232, 240, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 4%;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(250, 204, 21, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

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

.cookie-banner__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}

.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 2.5rem 4% 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  background: #0c1222;
}

.site-footer__inner {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer .site-nav__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.site-footer .site-nav__list a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer .site-nav__list a:hover {
  color: #facc15;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.site-footer__legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer__legal a:hover {
  color: #facc15;
}

.site-footer__meta {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.site-footer__domain {
  margin: 0 0 0.5rem;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.8rem;
  color: #64748b;
}

.site-footer__year,
.date {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
}

.legal-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 4% 3rem;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
}

.legal-page p,
.legal-page li {
  color: #cbd5e1;
  font-size: 0.95rem;
}

@media (max-width: 1023px) {
  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-header__brand {
    flex: 0 1 auto;
    min-width: 0;
  }
}

@media (min-width: 20rem) and (max-width: 1023px) {
  html {
    scroll-padding-top: 4.5rem;
  }
}

/* Thank you page */
.page-thank-you {
  padding: 5rem 4% 3rem;
  max-width: 52rem;
  margin: 0 auto;
}

.page-thank-you__banner {
  margin-bottom: 2rem;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.1);
}

.page-thank-you__banner.banner--section {
  min-height: clamp(16rem, 38vh, 22rem);
}

.page-thank-you__content {
  text-align: center;
  padding: 2rem 0 1rem;
}

.page-thank-you__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #f1f5f9;
}

.page-thank-you__text {
  margin: 0 0 1.5rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.page-thank-you__gallery {
  margin-top: 2.5rem;
}

.page-thank-you__gallery h2 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 1rem;
}

.page-thank-you__note {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
  gap: 0.65rem;
  max-width: 48rem;
  margin: 0 auto;
}

.gallery-strip__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(226, 232, 240, 0.1);
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
