/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0D0618;
  color: #E8D5F5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #F5E6FF; }
em { font-style: italic; color: #D4A017; }

/* ── SECTION TAGS ───────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #B89ED4;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #0D0618;
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #E8B828, #FFD960);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, .35);
}
.btn-outline {
  background: transparent;
  color: #F5E6FF;
  border-color: rgba(212, 160, 23, .5);
}
.btn-outline:hover {
  border-color: #D4A017;
  background: rgba(212, 160, 23, .1);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #F5E6FF;
  border-color: rgba(245, 230, 255, .3);
}
.btn-outline-light:hover {
  border-color: #F5E6FF;
  background: rgba(245, 230, 255, .08);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 24px; font-size: .85rem; }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  background: rgba(13, 6, 24, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #F5E6FF;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D4A017, #F5C842);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0D0618;
  font-weight: 700;
}
.nav-logo-text { transition: color .3s; }
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-link {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: #B89ED4;
  transition: all .3s;
}
.nav-link:hover, .nav-link.active {
  color: #F5E6FF;
  background: rgba(212, 160, 23, .15);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #F5E6FF;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(120, 40, 140, .6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(180, 100, 20, .35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(100, 20, 120, .4) 0%, transparent 60%),
    linear-gradient(160deg, #1A0A2E 0%, #2D1B4E 40%, #1A0A2E 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-title em {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #B89ED4;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}
.hero-scroll span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(184, 158, 212, .5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #D4A017, transparent);
  animation: scrollPulse 2s infinite;
}

/* ── ABOUT ──────────────────────────────────────── */
.about {
  padding: 120px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(212, 160, 23, .3);
  border-radius: 20px;
  z-index: -1;
}
.about-text { padding: 16px 0; }
.about-p {
  color: #B89ED4;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: #E8D5F5;
}
.about-features svg {
  width: 22px;
  height: 22px;
  color: #D4A017;
  flex-shrink: 0;
}

/* ── PRODUCTS ───────────────────────────────────── */
.products {
  padding: 120px 0;
  position: relative;
}
.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 40, 140, .15) 0%, transparent 70%);
  pointer-events: none;
}
.products .container { position: relative; z-index: 1; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212, 160, 23, .1);
  transition: all .4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, .4);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(212, 160, 23, .2);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 6, 24, .7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-tag {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #0D0618;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-card-body {
  padding: 24px;
}
.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #F5E6FF;
}
.product-card-body p {
  font-size: .9rem;
  color: #B89ED4;
  line-height: 1.6;
}

/* ── VALUES ─────────────────────────────────────── */
.values {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(45, 27, 78, .4) 0%, transparent 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(212, 160, 23, .08);
  transition: all .3s;
}
.value-item:hover {
  border-color: rgba(212, 160, 23, .3);
  background: rgba(212, 160, 23, .04);
  transform: translateY(-4px);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 160, 23, .2), rgba(245, 200, 66, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
}
.value-icon svg { width: 28px; height: 28px; }
.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #F5E6FF;
}
.value-item p {
  font-size: .9rem;
  color: #B89ED4;
  line-height: 1.6;
}

/* ── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(180, 100, 20, .2) 0%, transparent 70%),
    linear-gradient(160deg, #2D1B4E 0%, #1A0A2E 100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}
.cta-title em {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc {
  font-size: 1.1rem;
  color: #B89ED4;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ────────────────────────────────────── */
.contact {
  padding: 120px 0;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  color: #B89ED4;
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-details li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-details svg {
  width: 24px;
  height: 24px;
  color: #D4A017;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 4px;
}
.contact-details span, .contact-details a {
  color: #E8D5F5;
  font-size: .95rem;
  line-height: 1.6;
}
.contact-details a:hover { color: #D4A017; }

/* ── FORM ───────────────────────────────────────── */
.contact-form-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212, 160, 23, .15);
  border-radius: 24px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #F5E6FF;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: #B89ED4;
  margin-bottom: 8px;
}
.form-group .optional {
  font-weight: 400;
  color: rgba(184, 158, 212, .5);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, .2);
  background: rgba(255,255,255,.04);
  color: #E8D5F5;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  transition: all .3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #D4A017;
  background: rgba(212, 160, 23, .05);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 158, 212, .4);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: .8rem;
  color: rgba(184, 158, 212, .4);
  margin-top: 16px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: #D4A017;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.form-success p {
  color: #B89ED4;
  margin-bottom: 28px;
}

/* ── MAP ────────────────────────────────────────── */
.map-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.6);
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.map-card {
  background: rgba(13, 6, 24, .85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, .25);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
}
.map-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.map-card p {
  color: #B89ED4;
  margin-bottom: 24px;
  font-size: .95rem;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 80px 0 0;
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(212, 160, 23, .1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: #B89ED4;
  font-size: .9rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a,
.footer-contact li {
  color: #B89ED4;
  font-size: .9rem;
  transition: color .3s;
}
.footer-links a:hover,
.footer-contact a:hover { color: #D4A017; }
.footer-bottom {
  border-top: 1px solid rgba(212, 160, 23, .08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(184, 158, 212, .4);
}

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.6); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 6, 24, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(212, 160, 23, .15);
    transform: translateY(-120%);
    transition: transform .4s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 18px; border-radius: 12px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; max-width: 400px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 28px; }
  .map-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 100px 20px 60px; }
  .section-title { font-size: 1.8rem; }
}
