:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #c73e54;
  --gold: #d4a574;
  --gold-light: #e8c9a0;

  --white: #ffffff;
  --off-white: #f8f9fa;

  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --radius: 12px;
  --radius-lg: 20px;
}


/* ============================================
   RESET
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}


/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 9999;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--gray-200);

  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 80px;

  gap: 20px;
}


/* ============================================
   LOGO
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;

  object-fit: contain;
  object-position: center;

  display: block;
  flex-shrink: 0;

  border-radius: var(--radius);

  background: white;
}

.logo-text {
  font-family: 'Playfair Display', serif;

  font-size: 24px;
  font-weight: 700;

  color: var(--primary);

  white-space: nowrap;
}

.logo-text span {
  color: var(--accent);
}


/* ============================================
   TOP NAVIGATION MENU
   ============================================ */

.nav {
  display: flex;
  align-items: center;

  justify-content: flex-end;

  gap: 8px;

  position: relative;

  z-index: 10000;
}

.nav-link {
  display: block;

  padding: 10px 18px;

  font-size: 14px;
  font-weight: 500;

  color: var(--gray-700);

  border-radius: 8px;

  position: relative;

  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent);

  background: var(--gray-100);
}

.nav-link.active {
  color: var(--accent);

  background: rgba(233, 69, 96, 0.08);
}


/* UNDERLINE */

.nav-link::after {
  content: '';

  position: absolute;

  bottom: 4px;
  left: 50%;

  transform: translateX(-50%) scaleX(0);

  width: 20px;
  height: 2px;

  background: var(--accent);

  border-radius: 2px;

  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}


/* ============================================
   PRODUCTS DROPDOWN
   ============================================ */

.dropdown {
  position: relative;

  z-index: 10001;
}

.dropdown-menu {
  position: absolute;

  top: calc(100% + 8px);
  left: 0;

  background: white;

  border-radius: var(--radius);

  box-shadow: var(--shadow-lg);

  padding: 8px 0;

  min-width: 220px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-10px);

  transition: var(--transition);

  border: 1px solid var(--gray-200);

  z-index: 10002;
}


/* SHOW MENU */

.dropdown:hover .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}


/* DROPDOWN ITEMS */

.dropdown-item {
  display: block;

  padding: 12px 20px;

  font-size: 14px;

  color: var(--gray-700);

  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--gray-100);

  color: var(--accent);

  padding-left: 24px;
}


/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-light) 50%,
      #0f3460 100%
    );

  overflow: hidden;

  padding-top: 80px;

  flex: 1;
}

.hero::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23ffffff' fill-opacity='0.05'%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");

  opacity: 0.05;
}

.hero-particles {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  overflow: hidden;
}

.particle {
  position: absolute;

  width: 4px;
  height: 4px;

  background: rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  animation: float 15s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 800px;

  margin: 0 auto;
}

.hero-badge {
  display: inline-block;

  background: rgba(212, 165, 116, 0.1);

  border: 1px solid var(--gold);

  color: var(--gold);

  padding: 8px 16px;

  border-radius: 24px;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);

  font-size: 64px;

  font-weight: 900;

  margin-bottom: 16px;

  line-height: 1.1;
}


/* ============================================

   HERO LOGO

   ============================================ */

.hero-logo {

  max-width: 400px;

  height: auto;

  margin: 0 auto 20px;

  border: 10px solid black;

  border-radius: 12px;

  box-sizing: border-box;

  display: block;

}

.hero-subtitle {

  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;

  margin-bottom: 32px;

  line-height: 1.8;

}

.hero-buttons {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 48px;

}

.btn {

  padding: 14px 32px;

  font-size: 15px;

  font-weight: 600;

  border-radius: var(--radius);

  transition: var(--transition);

  border: none;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  gap: 8px;

}

.btn-primary {

  background:

    linear-gradient(

      135deg,

      var(--accent),

      #c73e54

    );

  color: white;

  box-shadow:

    0 10px 30px rgba(233, 69, 96, 0.3);

}

.btn-primary:hover {

  transform: translateY(-2px);

  box-shadow:

    0 15px 40px rgba(233, 69, 96, 0.4);

}

.btn-outline {

  border: 2px solid rgba(255, 255, 255, 0.3);

  color: white;

  background: transparent;

}

.btn-outline:hover {

  background: rgba(255, 255, 255, 0.1);

  border-color: white;

}

.hero-stats {

  display: grid;

  grid-template-columns:

    repeat(

      auto-fit,

      minmax(140px, 1fr)

    );

  gap: 24px;

}

.stat-item {

  text-align: center;

  padding: 16px;

}

.stat-number {

  font-size: 32px;

  font-weight: 900;

  color: var(--gold);

  margin-bottom: 4px;

}

.stat-label {

  font-size: 13px;

  color: rgba(255, 255, 255, 0.8);

  text-transform: uppercase;

  letter-spacing: 0.5px;

  font-weight: 500;

}


/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  position: relative;

  z-index: 1;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-light)
    );

  color: white;

  padding: 120px 0 80px;

  text-align: center;

  margin-top: 80px;
}

.page-header h1 {
  font-size: 48px;

  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;

  opacity: 0.95;
}


/* ============================================
   SECTIONS
   ============================================ */

.content-section {
  position: relative;

  z-index: 1;

  padding: 80px 0;

  background: var(--white);
}

.content-section.alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;

  margin-bottom: 60px;
}

.section-label {
  display: inline-block;

  background: rgba(233, 69, 96, 0.1);

  color: var(--accent);

  padding: 6px 16px;

  border-radius: 20px;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;

  margin-bottom: 16px;

  color: var(--primary);
}

.section-desc {
  font-size: 16px;

  color: var(--gray-600);

  max-width: 600px;

  margin: 0 auto;
}

.content-text {
  max-width: 900px;

  margin: 0 auto;

  line-height: 1.8;

  color: var(--gray-700);
}

.content-text p {
  margin-bottom: 20px;

  font-size: 15px;
}


/* ============================================
   CARDS
   ============================================ */

.cards-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(280px, 1fr)
    );

  gap: 32px;

  margin-top: 40px;
}

.card {
  background: white;

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  display: flex;

  flex-direction: column;

  height: 100%;

  cursor: pointer;
}

.card:hover {
  box-shadow: var(--shadow-lg);

  transform: translateY(-8px);
}


/* ============================================
   FULL PRODUCT PICTURES
   ============================================ */

.card-image {
  width: 100%;

  height: 300px;

  overflow: hidden;

  background: white;

  display: flex;

  align-items: center;

  justify-content: center;
}

.card-image img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: center;

  padding: 10px;

  background: white;

  display: block;
}


/* ============================================
   CARD CONTENT
   ============================================ */

.card-content {
  padding: 24px;

  flex-grow: 1;

  display: flex;

  flex-direction: column;
}

.card-title {
  font-size: 18px;

  font-weight: 700;

  margin-bottom: 8px;

  color: var(--primary);
}

.card-desc {
  font-size: 14px;

  color: var(--gray-600);

  line-height: 1.6;

  flex-grow: 1;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary);

  color: white;

  padding: 60px 0 20px;

  margin-top: auto;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(250px, 1fr)
    );

  gap: 40px;

  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;

  line-height: 1.8;

  opacity: 0.8;

  margin-top: 12px;
}

.footer-social {
  display: flex;

  gap: 12px;

  margin-top: 16px;
}

.social-link {
  width: 40px;

  height: 40px;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
}

.footer-column h4 {
  font-size: 16px;

  margin-bottom: 16px;

  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;

  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);

  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, 0.1);

  padding-top: 24px;

  text-align: center;

  font-size: 13px;

  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;

  justify-content: center;

  gap: 24px;

  margin-top: 12px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);

  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}


/* ============================================
   FORM STYLES
   ============================================ */

.form-row {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(200px, 1fr)
    );

  gap: 20px;

  margin-bottom: 24px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-label {
  font-size: 14px;

  font-weight: 600;

  margin-bottom: 8px;

  color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;

  border:
    1px solid var(--gray-300);

  border-radius: var(--radius);

  font-size: 14px;

  font-family: inherit;

  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;

  border-color: var(--accent);

  box-shadow:
    0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-textarea {
  resize: vertical;

  min-height: 120px;
}


/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1100px) {

  .header-inner {
    flex-wrap: wrap;

    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    flex-wrap: wrap;

    justify-content: center;
  }

  .nav-link {
    padding: 8px 12px;
  }

}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {

  .header {
    position: relative;
  }

  .header-inner {
    flex-direction: column;

    align-items: center;

    min-height: auto;

    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo {
    justify-content: center;
  }

  .nav {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap: 4px;
  }

  .nav-link {
    padding: 8px 10px;

    font-size: 13px;
  }

  .dropdown-menu {
    left: 50%;

    transform:
      translateX(-50%)
      translateY(-10px);
  }

  .dropdown:hover .dropdown-menu {
    transform:
      translateX(-50%)
      translateY(0);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-logo {
    max-width: 320px;
  }

  .page-header {
    margin-top: 0;

    padding: 80px 0 60px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}


/* ============================================
   RESPONSIVE - SMALL PHONE
   ============================================ */

@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 2px;
  }

  .nav-link {
    padding: 7px 8px;

    font-size: 12px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-logo {
    max-width: 280px;
  }

  .page-header {
    padding: 60px 0 50px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .card-image {
    height: 280px;
  }

}


/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);

  outline-offset: 3px;
}


/* ============================================
   CLICKABLE PRODUCT CARDS
   ============================================ */

a.card {
  color: inherit;

  text-decoration: none;
}

a.card:hover {
  color: inherit;
}


/* ============================================
   IMAGE SAFETY
   ============================================ */

.card-image img,
.hero-logo,
.logo-icon {
  max-width: 100%;
}

.card-image img {
  object-fit: contain;
}


/* ============================================
   END
   ============================================ */
