/* ── 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;
  color: #1a1a2e;
  background: #fefaf6;
  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.15; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B1E3A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #7B1E3A;
  color: #fff;
  border-color: #7B1E3A;
}
.btn-primary:hover { background: #5e1630; border-color: #5e1630; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,30,58,0.3); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(254,250,246,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #1a1a2e; }
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: #7B1E3A;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}
.nav.scrolled .nav-links a { color: #1a1a2e; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: #7B1E3A; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F4C2C2;
  transition: width 0.3s;
}
.nav.scrolled .nav-links a::after { background: #7B1E3A; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #7B1E3A;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.25s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #5e1630; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle-bar { background: #1a1a2e; }
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #7B1E3A 50%, #c24d6a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(244,194,194,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(123,30,58,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4C2C2;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: #F4C2C2;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  height: 620px;
}
.hero-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hero-card--main {
  width: 320px;
  height: 420px;
  position: absolute;
  top: 40px;
  left: 40px;
}
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--float {
  position: absolute;
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-card--shoes {
  width: 220px;
  height: 160px;
  bottom: 100px;
  right: 0;
}
.hero-card--shoes img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--accent {
  width: 180px;
  height: 130px;
  bottom: 20px;
  left: 20px;
}
.hero-card--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  max-width: 1200px;
  margin: 48px auto 0;
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #F4C2C2;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #fefaf6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; height: 680px; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 5px solid #fefaf6;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #7B1E3A;
  color: #fff;
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(123,30,58,0.35);
}
.about-accent-num {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}
.about-accent-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1a1a2e;
}
.about-value svg { color: #7B1E3A; flex-shrink: 0; }

/* ── Collections ──────────────────────────────────── */
.collections {
  padding: 100px 0;
  background: #f7f0ee;
}
.collections-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.collections-desc {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.7;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.collection-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 13/10;
}
.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-card-img img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,30,58,0.6);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.collection-card:hover .collection-card-overlay { opacity: 1; }
.collection-card-overlay svg { color: #fff; }
.collection-card-body {
  padding: 24px;
}
.collection-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.collection-card-body p {
  font-size: 0.9rem;
  color: #6a6a7a;
  line-height: 1.65;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: #1a1a2e;
  color: #fff;
}
.why-us-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.why-us-header .section-eyebrow { color: #F4C2C2; }
.why-us-header .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 40px 36px;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,194,194,0.3);
}
.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #7B1E3A;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: #fefaf6;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-text {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.7;
  margin-bottom: 36px;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B1E3A;
  margin-bottom: 4px;
}
.visit-detail dd {
  font-size: 1rem;
  color: #1a1a2e;
  line-height: 1.7;
  padding-left: 28px;
}
.visit-detail a { color: #1a1a2e; text-decoration: underline; text-decoration-color: rgba(123,30,58,0.3); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.visit-detail a:hover { color: #7B1E3A; text-decoration-color: #7B1E3A; }
.visit-map { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); position: relative; }
.visit-map-link { display: block; position: relative; }
.visit-map-link img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11.6; }
.visit-map-pin {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.visit-map-pin:hover { transform: scale(1.04); }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #f7f0ee;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #1a1a2e;
  transition: color 0.2s;
}
.contact-method:hover { color: #7B1E3A; }
.contact-method svg { color: #7B1E3A; flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e8e0de;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #fefaf6;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #7B1E3A;
  box-shadow: 0 0 0 3px rgba(123,30,58,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a8a6; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 500;
  font-size: 0.92rem;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4C2C2;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-hours a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-hours a:hover,
.footer-contact a:hover { color: #fff; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 480px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a2e;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1.05rem; }
  .nav-links a:hover { color: #F4C2C2 !important; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .collections-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-img-secondary { right: 10px; bottom: -20px; width: 160px; }
  .about-accent-box { right: 10px; top: -10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-values { flex-direction: column; gap: 16px; }
}
