*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #F7F5F2;
  --cream-dark: #EFECE7;
  --cognac: #6B5E54;
  --cognac-light: #8A7E74;
  --burgundy: #4A403A;
  --burgundy-light: #5C524C;
  --charcoal: #1A1816;
  --charcoal-soft: #6B6560;
  --white: #FFFFFF;
  --accent: #3D3834;
  --shadow: 0 4px 24px rgba(26, 24, 22, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 24, 22, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(26, 24, 22, 0.08);
}

.header.hero-top .logo,
.header.hero-top .nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.9);
}

.header.hero-top .nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

.header.hero-top .nav-toggle span {
  background: var(--white);
}

.header.hero-top.scrolled .logo,
.header.hero-top.scrolled .nav-links a:not(.nav-cta) {
  color: var(--charcoal);
}

.header.hero-top.scrolled .nav-links a:not(.nav-cta):hover {
  color: var(--charcoal);
}

.header.hero-top.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--charcoal);
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  transition: opacity var(--transition);
}

.logo:hover .logo-mark {
  opacity: 0.85;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background var(--transition), opacity var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.55) contrast(1.02) brightness(0.75);
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 16, 14, 0.55) 0%,
      rgba(18, 16, 14, 0.72) 50%,
      rgba(18, 16, 14, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Sections ── */
.section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.75rem;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2,
.about-text h2,
.wholesale-text h2,
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--charcoal-soft);
  font-weight: 300;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-tile {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(26, 24, 22, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.about-tile:hover {
  border-color: rgba(26, 24, 22, 0.16);
  box-shadow: var(--shadow);
}

.about-tile-pattern {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(26, 24, 22, 0.06);
  background: rgba(26, 24, 22, 0.03);
}

.about-tile-pattern::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(26, 24, 22, 0.05);
}

.about-tile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
  opacity: 0.75;
}

.about-tile h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.about-tile p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  font-weight: 300;
}

.about-tile-bags,
.about-tile-lingerie {
  background: var(--white);
}

.about-text p {
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.about-features svg {
  color: var(--charcoal);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ── Products ── */
.products {
  background: var(--cream-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.product-card:hover {
  border-color: rgba(26, 24, 22, 0.16);
  box-shadow: var(--shadow);
}

.product-icon {
  width: 52px;
  height: 52px;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.product-icon-alt {
  color: var(--charcoal);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.product-tags li {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  background: var(--cream);
  border-radius: 2px;
  color: var(--charcoal-soft);
  border: 1px solid rgba(26, 24, 22, 0.08);
}

/* ── Wholesale ── */
.wholesale {
  background: var(--charcoal);
  color: var(--white);
}

.wholesale-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.wholesale-text p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 520px;
}

.wholesale-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wholesale-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition);
}

.wholesale-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wholesale-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.wholesale-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.wholesale-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ── Contact ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-text p {
  color: var(--charcoal-soft);
  font-weight: 300;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(26, 24, 22, 0.18);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
}

.contact-card-wa .contact-icon {
  background: #1F8F4A;
  color: var(--white);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  position: relative;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
}

.footer-wave {
  position: absolute;
  top: -47px;
  left: 0;
  right: 0;
  height: 48px;
  color: var(--charcoal);
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 48px;
  display: block;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand .logo-footer {
  color: var(--white);
  margin-bottom: 1rem;
}

.logo-footer .logo-mark {
  width: 40px;
  height: 40px;
}

.logo-footer .logo-text {
  font-size: 1.45rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--white);
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-contact-wa:hover {
  color: #4ADE80;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-made {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #1F8F4A;
  color: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: background var(--transition), opacity var(--transition);
}

.whatsapp-float:hover {
  background: #187A3E;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247, 245, 242, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(26, 24, 22, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 24, 22, 0.06);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .about-grid,
  .product-grid,
  .wholesale-cards,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: 1fr;
    margin-bottom: 0.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-wave {
    top: -31px;
    height: 32px;
  }

  .footer-wave svg {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
