:root {
  --white: #fafaf7;
  --off-white: #f4f2ec;
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5ecd7;
  --gray: #6b6b6b;
  --gray-light: #d4d0c8;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: default;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ===================== NAVBAR ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
}

.nav-logo-text span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover {
  color: var(--black);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-nav {
  padding: 9px 22px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.35s var(--transition);
  z-index: 0;
}

.btn-nav:hover::before {
  left: 0;
}
.btn-nav span {
  position: relative;
  z-index: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -50px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: 100px;
}

/* Gold decorative line */
.hero::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 5%;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero-left {
  padding: 80px 5% 80px 8%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  background: rgba(201, 168, 76, 0.05);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 10px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--transition);
  border: 1px solid var(--black);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.35s var(--transition);
  z-index: 0;
}

.btn-primary:hover {
  border-color: var(--gold);
}
.btn-primary:hover::before {
  left: 0;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid var(--gray-light);
  color: var(--black);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-light);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

/* Hero Right — Floating Cards */
.hero-right {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cards-container {
  position: relative;
  width: 100%;
  height: 580px;
}

.hero-card {
  position: absolute;
  background: var(--white);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s var(--transition),
    box-shadow 0.4s var(--transition);
}

.hero-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-1 {
  width: 220px;
  height: 280px;
  top: 40px;
  left: 15%;
  transform: rotate(-3deg);
  border-radius: 4px 4px 0 0;
}

.hero-card-2 {
  width: 180px;
  height: 230px;
  top: 60px;
  right: 15%;
  transform: rotate(4deg);
  border-radius: 4px 4px 0 0;
}

.hero-card-3 {
  width: 240px;
  height: 200px;
  bottom: 60px;
  left: 5%;
  transform: rotate(2deg);
  border-radius: 4px;
}

.hero-card-4 {
  width: 160px;
  height: 210px;
  bottom: 80px;
  right: 8%;
  transform: rotate(-2deg);
  border-radius: 4px;
}

.hero-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-label span:last-child {
  color: var(--gold);
}

.hero-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.hero-center-badge span:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-center-badge span:last-child {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Decorative gold elements */
.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  font-weight: 500;
  flex-shrink: 0;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== KATALOG ===================== */
.catalog-section {
  padding: 100px 8%;
  background: var(--white);
  position: relative;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 420px;
  font-weight: 300;
}

/* IG Highlight Banner */
.ig-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  border-left: 3px solid var(--gold);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.ig-highlight::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}

.ig-highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.ig-highlight-text {
  flex: 1;
}

.ig-highlight-text p:first-child {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.ig-highlight-text .ig-username {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
}

.order-callout {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 12px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.4;
}

/* Product Gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
}

.product-card:nth-child(1) {
  grid-row: span 2;
}
.product-card:nth-child(5) {
  grid-column: span 2;
}

.product-card-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
}

.product-card:nth-child(1) .product-card-img {
  min-height: 420px;
}
.product-card:nth-child(5) .product-card-img {
  min-height: 220px;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card-info p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
}

.product-card-btn:hover {
  background: var(--gold-light);
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
  text-align: center;
}

.catalog-footer-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gray);
}

.catalog-footer-text strong {
  color: var(--black);
  font-style: normal;
  font-weight: 700;
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  padding: 100px 8%;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.wa-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  border: 1px solid transparent;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--transition);
}

.wa-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.wa-card:hover::before {
  transform: scaleY(1);
}

.wa-icon {
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.wa-card:hover .wa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.wa-card-info {
  flex: 1;
}

.wa-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 3px;
}

.wa-card-num {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
}

.wa-card-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.wa-card:hover .wa-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Social Connect */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  border: 1px solid transparent;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.social-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.social-card:hover .social-card-icon {
  transform: scale(1.1);
}

.social-card-body {
  flex: 1;
  min-width: 0;
}

.social-card-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card-handle {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 300;
}

.social-card-note {
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.ig-tiktok {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}
.ig-threads {
  background: #000;
}
.ig-instagram {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.ig-shopee {
  background: #ee4d2d;
}
.ig-linktree {
  background: #39d353;
}
.ig-social {
  background: #1da1f2;
}

/* ===================== TESTIMONIAL ===================== */
.testimonial-section {
  padding: 100px 8%;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.testimonial-section .section-label {
  color: var(--gold);
}
.testimonial-section .section-title {
  color: var(--white);
}
.testimonial-section .section-title em {
  color: var(--gold);
}
.testimonial-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-section .section-header {
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.testimonial-source {
  font-size: 0.68rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-source img {
  width: 12px;
  height: 12px;
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.35s var(--transition);
  z-index: 0;
}

.btn-gold:hover {
  color: var(--black);
}
.btn-gold:hover::before {
  left: 0;
}
.btn-gold > * {
  position: relative;
  z-index: 1;
}

/* ===================== MAPS ===================== */
.maps-section {
  padding: 100px 8%;
  background: var(--white);
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.map-card {
  position: relative;
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--black);
}

.map-card-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.map-card-info h4 {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 2px;
}

.map-card-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.map-frame {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.map-card:hover .map-frame {
  filter: grayscale(0%);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black-soft);
  padding: 60px 8% 40px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.footer-brand {
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
}

.footer-logo-text span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-text span:last-child {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all 0.3s;
  border-radius: 50%;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a::before {
  content: "—";
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.7rem;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.footer-gold-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--transition),
    transform 0.8s var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s var(--transition),
    transform 0.8s var(--transition);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s var(--transition),
    transform 0.8s var(--transition);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 30px 8%;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-right {
    height: 450px;
  }

  .hero-left {
    padding: 60px 8%;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:nth-child(1) {
    grid-row: span 1;
  }
  .product-card:nth-child(5) {
    grid-column: span 1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .maps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-cards-container {
    height: 380px;
  }

  .hero-card-1 {
    width: 160px;
    height: 200px;
    left: 5%;
  }
  .hero-card-2 {
    width: 130px;
    height: 170px;
    right: 5%;
  }
  .hero-card-3 {
    width: 170px;
    height: 150px;
    bottom: 20px;
    left: 2%;
  }
  .hero-card-4 {
    width: 120px;
    height: 160px;
    bottom: 30px;
    right: 3%;
  }

  .ig-highlight {
    flex-direction: column;
    text-align: center;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-card:nth-child(1) {
    grid-column: span 2;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .catalog-section,
  .contact-section,
  .testimonial-section,
  .maps-section {
    padding: 70px 5%;
  }
  .hero-left {
    padding: 50px 5%;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-card:nth-child(1) {
    grid-column: span 1;
  }
}
