/* ===== Graffon — Luxury Ladies Footwear ===== */
:root {
  --bg: #0d0d0f;
  --bg-soft: #15151a;
  --surface: #1a1a20;
  --cream: #f6f1ea;
  --ink: #14110f;
  --gold: #c9a96a;
  --gold-soft: #e0c890;
  --gold-deep: #9a7d44;
  --text: #2a2622;
  --text-light: #6b6258;
  --line: rgba(0,0,0,.08);
  --line-strong: rgba(0,0,0,.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
.section-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
}
.section-lead {
  margin-top: 14px;
  color: var(--text-light);
  max-width: 540px;
  font-size: 1.02rem;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }
.btn-whatsapp { background: #25d366; color: #fff; margin-top: 28px; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(246,241,234,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mark {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: #fff;
  transition: color .4s var(--ease);
}
.site-header.scrolled .logo-mark { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--text); }
.site-header.scrolled .nav-links a:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all .35s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(10,10,12,.5), rgba(10,10,12,.7)),
    url('https://images.pexels.com/photos/10686370/pexels-photo-10686370.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,12,.55) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 820px; }
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .2s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255,255,255,.86);
  max-width: 540px;
  margin: 0 auto 38px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: rgba(255,255,255,.3);
}
.hero-scroll span {
  display: block;
  width: 1px; height: 24px;
  background: var(--gold-soft);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(36px);opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ===== About ===== */
.about { padding: 120px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(.05);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--ink);
  color: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .1em;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.about-text p { margin-top: 18px; color: var(--text-light); font-size: 1.02rem; }
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
}
.about-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.about-stats span {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===== Gallery ===== */
.gallery { padding: 120px 0; background: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: transparent;
  transition: transform .5s var(--ease);
}
.product-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--bg-soft);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); filter: grayscale(0); }
.product-info { padding: 20px 4px 0; }
.product-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-info p {
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--text-light);
  text-transform: uppercase;
}
.price {
  display: inline-block;
  margin-top: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gold-deep);
}

/* ===== Why ===== */
.why { padding: 120px 0; background: var(--bg); color: var(--cream); }
.why .section-title { color: #fff; }
.why .section-eyebrow { color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 40px 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}
.why-card:hover {
  background: rgba(201,169,106,.06);
  border-color: rgba(201,169,106,.25);
  transform: translateY(-6px);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p { font-size: .94rem; color: rgba(255,255,255,.65); }

/* ===== Wholesale ===== */
.wholesale { padding: 120px 0; background: var(--cream); }
.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.wholesale-text p { margin-top: 18px; color: var(--text-light); }
.wholesale-points { margin-top: 28px; }
.wholesale-points li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.wholesale-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 14px; height: 1px;
  background: var(--gold-deep);
}
.wholesale-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border .3s var(--ease), box-shadow .3s var(--ease);
  font-weight: 300;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201,169,106,.15);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note {
  margin-top: 16px;
  font-size: .88rem;
  text-align: center;
  min-height: 22px;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ===== Contact ===== */
.contact { padding: 120px 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}
.contact-info > p { margin-top: 18px; color: var(--text-light); }
.contact-list { margin: 36px 0 8px; }
.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ci-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.contact-list a, .contact-list span:last-child { font-size: 1.02rem; color: var(--ink); }
.contact-list a:hover { color: var(--gold-deep); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-mark { color: #fff; display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 280px; }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-nav a {
  display: block;
  padding: 7px 0;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--gold-soft); }
.footer-contact p { font-size: .95rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { font-size: .95rem; color: var(--gold-soft); }
.footer-bottom { padding: 24px; text-align: center; }
.footer-bottom p { font-size: .82rem; letter-spacing: .08em; color: rgba(255,255,255,.45); }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: pulseRing 2.6s var(--ease) infinite;
}
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 14px 36px -6px rgba(37,211,102,.65); }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), 0 10px 30px -6px rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 10px 30px -6px rgba(37,211,102,.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 30px -6px rgba(37,211,102,.5); }
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .wholesale-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 480px; }
  .about-badge { width: 110px; height: 110px; font-size: 1rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 78%; max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.15);
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink); font-size: .92rem; }
  .nav-toggle { display: flex; }
  .hero { background-attachment: scroll; }
  .about, .gallery, .why, .wholesale, .contact { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .about-stats { gap: 28px; }
  .about-stats strong { font-size: 1.9rem; }
  .wholesale-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .about-badge { right: 16px; bottom: -16px; }
}
