@font-face {
  font-family: Thunderstorm;
  src: url("thunderstorm.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #e0b35a;
  --gold-hover: #d4a44a;
  --ink: #1c1f24;
  --muted: #6b7280;
  --white: #ffffff;
  --spx-red: #e10600;
  --shadow: 0 18px 50px rgba(28, 25, 23, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  overflow: hidden;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: #000;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-color: #c9a06a;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transform: none;
  filter: none;
  transition: opacity 1.4s ease, transform 1.4s ease, filter 1.4s ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: none;
  filter: none;
}

.slide.is-leaving {
  z-index: 1;
  opacity: 0;
}

.slide.from-fade {
  transform: none;
  filter: none;
}

.slide.from-sand {
  transform: scale(1.1);
  filter: sepia(0.45) contrast(1.08) saturate(1.2);
}

.slide.from-water {
  transform: scale(1.08) translateY(24px);
  filter: blur(16px) saturate(1.45) hue-rotate(12deg);
}

.slide-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.slide-fx.is-on {
  opacity: 1;
}

.slide-fx.fx-sand {
  background: rgba(196, 154, 92, 0.22);
  animation: sand-blow 1.4s ease forwards;
}

.slide-fx.fx-sand::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: #c4a574;
  filter: url("#sandGrain");
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: sand-grain 1.4s ease forwards;
}

.slide-fx.fx-water {
  background:
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(120, 190, 220, 0.4), transparent 70%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0 2px,
      transparent 2px 18px
    );
  background-size: 100% 100%, 100% 36px;
  mix-blend-mode: soft-light;
  animation: water-wash 1.4s ease forwards;
}

.slide-fx.fx-fade {
  opacity: 0;
}

.fx-svg {
  position: absolute;
  width: 0;
  height: 0;
}

@keyframes sand-blow {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes sand-grain {
  0% { transform: translate3d(-8%, 4%, 0); opacity: 0.2; }
  40% { opacity: 0.6; }
  100% { transform: translate3d(10%, -6%, 0); opacity: 0; }
}

@keyframes water-wash {
  0% {
    opacity: 0;
    background-position: 50% 130%, 0 0;
  }
  35% { opacity: 1; }
  100% {
    opacity: 0;
    background-position: 50% 40%, 0 80px;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.28) 0%, rgba(20, 16, 12, 0.08) 42%, rgba(20, 16, 12, 0.22) 100%);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 22px 48px 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 54px;
  width: auto;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: block;
  line-height: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.social-links img {
  width: 40px;
  height: 40px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.nav svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  place-items: center;
  justify-self: start;
  z-index: 40;
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--spx-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(12, 10, 8, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.offcanvas {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100%;
  height: 100vh;
  padding: 28px 24px 32px;
  border-radius: 0;
  border: 0;
  background: rgba(20, 16, 12, 0.42);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-bottom: 28px;
}

.menu-close svg {
  width: 18px;
  height: 18px;
}

.offcanvas-nav {
  display: grid;
  gap: 6px;
}

.offcanvas-nav span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  font-size: 22px;
  font-weight: 500;
  color: #111;
}

.offcanvas-nav svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #111;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .offcanvas:not(.cart-drawer) {
  transform: translateX(0);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  transform: translateX(100%);
  padding: 20px 20px 16px;
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer .drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.cart-drawer .drawer-head h2 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.cart-drawer .menu-close {
  background: transparent;
  color: #111;
  margin: 0;
}

.cart-items {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cart-items::-webkit-scrollbar {
  display: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid #111;
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-body {
  display: grid;
  gap: 4px;
  padding: 0;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.cart-item p {
  font-size: 14px;
  color: #111;
  margin: 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.qty button,
.remove {
  width: 24px;
  height: 24px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
}

.cart-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #111;
  flex-shrink: 0;
  background: #fff;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #111;
}

.cart-total strong {
  color: #111;
}

.checkout {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--spx-red);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  cursor: pointer;
}

.hero-copy {
  position: relative;
  z-index: 4;
  flex: 1;
  min-height: 0;
  text-align: center;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
}

.hero-copy h1 {
  font-family: Thunderstorm, Outfit, sans-serif;
  font-size: clamp(52px, 7.2vw, 88px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-copy h1 span {
  display: inline;
  margin: 0 0.18em 0 0;
}

.hero-copy h1 span:last-child {
  margin-right: 0;
}

.t-red {
  color: var(--spx-red);
  -webkit-text-stroke: 0;
  mix-blend-mode: normal;
}

.t-white {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}


.hero-copy-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-copy .tagline {
  margin: 0;
  font-family: Thunderstorm, Outfit, sans-serif;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
  transition: color 0.35s ease;
}

.hero-copy .hero-notice {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  max-width: 560px;
  margin: 0;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.form-status {
  margin: 14px auto 0;
  max-width: 560px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  color: #fff;
  background: rgba(16, 120, 48, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-status.is-pending {
  color: #fff;
  background: rgba(180, 120, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-status.is-error {
  color: #fff;
  background: rgba(160, 32, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-toggle {
  display: none;
}

.lead-form {
  margin: 0 auto;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(28, 25, 23, 0.12);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  overflow: hidden;
  padding: 8px;
  gap: 0;
}

.lead-form label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-height: 58px;
  padding: 18px 18px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.lead-form label span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  pointer-events: none;
  transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease;
}

.lead-form input {
  width: 100%;
  height: 24px;
  border: 0;
  outline: 0;
  padding: 0;
  font: inherit;
  font-size: 15px;
  background: transparent;
  color: #fff;
}

.lead-form input::placeholder {
  color: transparent;
}

.lead-form input:focus + span,
.lead-form input:not(:placeholder-shown) + span {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form button[type="submit"],
.lead-form .wa-form-btn {
  height: auto;
  min-width: 112px;
  margin: 4px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--spx-red);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lead-form button[type="submit"] svg,
.lead-form .wa-form-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lead-form .wa-form-btn {
  display: none;
  background: #25d366;
}

.lead-form .wa-form-btn:hover {
  background: #1ebe5d;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
}

.phone-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.phone-fab svg {
  width: 26px;
  height: 26px;
}

.icon-dock {
  display: none;
}

.icon-dock svg {
  width: 22px;
  height: 22px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
}

.nav-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.nav-arrow.prev {
  left: 36px;
}

.nav-arrow.next {
  right: 36px;
  display: grid;
}

.bottom-skyline {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 220px;
  pointer-events: none;
  background: url("images/dubai_sillhoutte-1.webp") center bottom / contain no-repeat;
}

@media (min-width: 1101px) {
  .cart-drawer {
    display: none !important;
  }

  .hero-copy {
    max-width: 1280px;
  }

  .hero-copy h1 {
    font-size: 128px;
    letter-spacing: 0.02em;
  }

  .hero-notice {
    font-size: 20px;
    max-width: 620px;
  }

  .hero-copy-text {
    animation: text-flow 7s ease-in-out infinite;
  }

  .hero-copy h1,
  .hero-notice {
    animation: text-in 1.1s ease both;
  }

  .hero-notice {
    animation-delay: 0.18s;
  }
}

@keyframes text-flow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes text-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 16px 16px 0;
  }

  .brand-block {
    gap: 12px;
  }

  .social-links {
    gap: 14px;
  }

  .hero-copy {
    padding: 16px 16px 20px;
  }

  .hero-copy h1 {
    white-space: normal;
    font-size: 64px;
    line-height: 0.9;
  }

  .hero-notice {
    font-size: 17px;
    padding: 0 8px;
  }

  .nav-arrow {
    display: none !important;
  }

  .slider {
    overflow: hidden;
    touch-action: pan-y;
  }

  .slide {
    opacity: 1;
    transition: none;
  }

  .lead-form {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 6px;
    padding-top: 44px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
  }

  .form-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    color: #fff;
    cursor: pointer;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  }

  .form-toggle svg {
    width: 18px;
    height: 18px;
  }

  .lead-form button[type="submit"],
  .lead-form .wa-form-btn {
    min-height: 52px;
    width: calc(100% - 8px);
    margin: 4px;
    border-radius: 14px;
  }

  .icon-dock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .icon-dock a,
  .icon-dock button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
  }

  .icon-dock svg {
    width: 28px;
    height: 28px;
  }

  .dock-wa {
    background: transparent;
    color: #25d366;
  }

  body.form-open {
    overflow: auto;
  }

  body.form-open .hero {
    height: auto;
    max-height: none;
    min-height: 100dvh;
    overflow: visible;
  }

  body.form-open .lead-form {
    display: grid;
  }

  body.form-open .icon-dock {
    display: none;
  }

  .phone-fab {
    display: none;
  }

  .lead-form label {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px 14px;
  }

  .lead-form label:last-of-type {
    border-bottom: 0;
  }

  .lead-form .wa-form-btn {
    display: inline-flex;
    background: #25d366;
  }

  .whatsapp {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 16px 16px 0;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-notice {
    font-size: 16px;
  }

  .bottom-skyline {
    height: 120px;
  }
}

.thank-you-page {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}

.thank-you-page .thank-you {
  position: relative;
  z-index: 4;
  width: min(520px, 100%);
  padding: 40px 32px 36px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.thank-you-logo {
  height: 54px;
  width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.thank-you h1 {
  margin: 0 0 12px;
  font-family: Thunderstorm, Outfit, sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.thank-you p {
  margin: 0 0 28px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.thank-you-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--spx-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.thank-you-home:hover {
  background: #c80500;
}
