/* Fashion Whitepage - Clean, editorial style */
:root {
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-accent: #c9a962;
  --color-border: #e8e8e8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

/* Main content area (below fixed header) */
main {
  padding-top: 80px;
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero .btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--color-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: background 0.2s, color 0.2s;
}

.hero .btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* Section blocks */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1rem auto 0;
}

/* About page */
.about-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  text-align: center;
  padding: 2rem 1rem;
}

.about-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Collection / lookbook grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.collection-item {
  aspect-ratio: 3/4;
  background: var(--color-border);
  overflow: hidden;
  position: relative;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* Placeholder when no image */
.collection-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Product cards */
.product-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-border);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-card-info {
  padding: 1.25rem 0;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-card-price {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Contact */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-wrap p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  padding: 0.9rem 2.5rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem;
  margin-top: 4rem;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer .logo {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }
  .hero {
    min-height: 75vh;
  }
}
