:root {
  --bg: #031d1f;
  --bg-deep: #021416;
  --teal: #0d6f73;
  --teal-soft: #16a4a7;
  --teal-light: #61e0db;
  --pink: #ff4db8;
  --white: #f6fffe;
  --muted: rgba(230, 255, 252, 0.75);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(16, 120, 120, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 77, 184, 0.08), transparent 25%),
    linear-gradient(135deg, var(--bg) 0%, #052729 50%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body.is-loading {
  overflow: hidden;
}

body.fade-out {
  opacity: 0;
  transform: scale(0.995);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.page-transition {
  animation: pageFadeIn 0.7s ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(18, 155, 157, 0.12), transparent 35%),
    linear-gradient(135deg, #021012 0%, #042224 50%, #010a0b 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  width: min(420px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.loader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.loader-logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.28));
}

.loader-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-shadow: 0 0 24px rgba(97, 224, 219, 0.18);
}

.loader-line {
  width: 100%;
  max-width: 320px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  margin-inline: auto;
}

.loader-line span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(97,224,219,0),
    rgba(97,224,219,1),
    rgba(255,77,184,1),
    rgba(255,77,184,0)
  );
  animation: loadingBar 1.7s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(255,77,184,0.45);
}

.loader-text {
  margin-top: 14px;
  letter-spacing: 0.3em;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

@keyframes loadingBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

/* cursor glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle, rgba(97,224,219,0.12) 0%, rgba(255,77,184,0.10) 35%, rgba(97,224,219,0.04) 55%, transparent 75%);
  transform: translate(-50%, -50%);
  filter: blur(16px);
  opacity: 0.9;
  transition: transform 0.08s linear;
}

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.neon {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.neon-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(22,164,167,0.55) 0%, rgba(22,164,167,0.12) 45%, transparent 75%);
  top: 8%;
  left: -10%;
  animation: floatNeonA 16s linear infinite;
}

.neon-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,77,184,0.52) 0%, rgba(255,77,184,0.14) 45%, transparent 75%);
  top: 50%;
  right: -8%;
  animation: floatNeonB 18s linear infinite;
}

.neon-3 {
  width: 520px;
  height: 180px;
  background: linear-gradient(90deg, rgba(22,164,167,0), rgba(22,164,167,0.28), rgba(255,77,184,0.24), rgba(255,77,184,0));
  bottom: 8%;
  left: -15%;
  transform: rotate(-12deg);
  filter: blur(28px);
  animation: floatNeonC 14s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.5;
}

@keyframes floatNeonA {
  0%   { transform: translateX(0) translateY(0) scale(1); }
  50%  { transform: translateX(45vw) translateY(10vh) scale(1.15); }
  100% { transform: translateX(90vw) translateY(0) scale(1); }
}

@keyframes floatNeonB {
  0%   { transform: translateX(0) translateY(0) scale(1); }
  50%  { transform: translateX(-50vw) translateY(-10vh) scale(1.12); }
  100% { transform: translateX(-95vw) translateY(0) scale(1); }
}

@keyframes floatNeonC {
  0%,100% { transform: translateX(0) rotate(-12deg); }
  50%     { transform: translateX(55vw) rotate(-8deg); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 16, 18, 0.42);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 110px;
}

.brand-area {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.24));
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--white);
}

.brand-sub {
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  transition: 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-light), var(--pink), transparent);
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.35s ease;
  min-width: 180px;
  justify-content: flex-start;
}

.music-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 224, 219, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 16px 36px rgba(0,0,0,0.34), 0 0 24px rgba(255,77,184,0.14);
}

.music-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 0 rgba(97,224,219,0);
  transition: 0.3s ease;
}

.music-toggle.playing .music-dot {
  background: var(--teal-light);
  box-shadow: 0 0 16px rgba(97,224,219,0.8);
}

.music-text {
  font-size: 0.9rem;
}

.hero,
.page-hero {
  padding: 90px 0 40px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--teal-light);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 12px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-desc,
.page-desc,
p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-desc {
  max-width: 640px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.35s ease;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.2) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: 0.8s ease;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn-primary {
  color: #011314;
  background: linear-gradient(135deg, var(--teal-light), #dffffd);
  box-shadow: 0 12px 30px rgba(97,224,219,0.28), inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(97,224,219,0.35), 0 0 24px rgba(255,77,184,0.18);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.btn-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(255,255,255,0.04), var(--shadow);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(145deg, transparent 45%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.hero-card {
  min-height: 340px;
  display: flex;
  align-items: end;
  padding: 32px;
}

.hero-card-inner {
  max-width: 420px;
}

.mini-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}

.section {
  padding: 56px 0 86px;
  position: relative;
  z-index: 1;
}

.section-tight {
  padding-top: 8px;
}

.section-head {
  margin-bottom: 28px;
}

.cards-3,
.collection-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.contact-card {
  padding: 28px;
  min-height: 220px;
}

.feature-card h3,
.contact-card h3 {
  margin-bottom: 10px;
}

.promo-banner {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.collection-grid {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-image {
  position: relative;
  height: 290px;
  background:
    radial-gradient(circle at 20% 20%, rgba(97,224,219,0.25), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255,77,184,0.18), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.product-image.alt {
  background:
    radial-gradient(circle at 70% 20%, rgba(97,224,219,0.28), transparent 28%),
    radial-gradient(circle at 25% 70%, rgba(255,77,184,0.2), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
}

.product-image.third {
  background:
    radial-gradient(circle at 40% 25%, rgba(97,224,219,0.28), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(255,77,184,0.2), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
}

.image-overlay-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 0.9s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
  filter: saturate(1.12) brightness(1.06);
}

.product-card:hover .image-overlay-shine {
  transform: translateX(120%) rotate(8deg);
}

.product-content {
  padding: 24px;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-block {
  padding: 28px;
  min-height: 250px;
}

.contact-card {
  display: block;
  transition: 0.35s ease;
}

.luxury-hover {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.contact-card:hover,
.product-card:hover,
.feature-card:hover,
.story-block:hover,
.hero-card:hover,
.luxury-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(97,224,219,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 26px 60px rgba(0,0,0,0.36),
    0 0 28px rgba(97,224,219,0.08),
    0 0 40px rgba(255,77,184,0.05);
}

.contact-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer {
  padding: 28px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(1, 12, 13, 0.22);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li + li {
  margin-top: 10px;
}

.footer a {
  color: var(--muted);
  transition: 0.25s ease;
}

.footer a:hover {
  color: var(--white);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-width: 150px;
  height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #61e0db, #ffffff);
  color: #011314;
  font-weight: 700;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 24px rgba(97,224,219,0.22);
  transition: 0.35s ease;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.32),
    0 0 30px rgba(255,77,184,0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.magnetic {
  will-change: transform;
}

@media (max-width: 1180px) {
  .brand-mark {
    font-size: 2.3rem;
  }

  .brand-sub {
    font-size: 0.8rem;
    letter-spacing: 0.24em;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-3,
  .collection-grid,
  .story-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: auto;
  }

  .brand-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
  }

  .brand-mark {
    font-size: 2rem;
  }

  .brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .nav-area {
    width: 100%;
    align-items: center;
  }

  .nav {
    justify-content: center;
  }

  .music-toggle {
    min-width: 220px;
    justify-content: center;
  }

  .hero,
  .page-hero {
    padding-top: 64px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    font-size: 1.5rem;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .loader-logo-img {
    width: 68px;
    height: 68px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .btn,
  .music-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-card,
  .contact-card,
  .story-block,
  .hero-card {
    padding: 22px;
  }

  .product-image {
    height: 220px;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    min-width: 132px;
    height: 52px;
  }
}