@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --text-muted: #999999;
  --accent: #c9a96e;
  --border: rgba(255,255,255,0.08);
  --white: #ffffff;
  --off-white: #f8f6f1;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.header-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

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

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 32px 48px;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.mobile-nav a:hover { color: var(--text); }
.mobile-nav.open { display: flex; }

/* ─── PAGE WRAPPER ─── */
main { padding-top: 80px; }

/* ─── HERO ─── */
.hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 800px;
}

.hero-text p {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* ─── SECTION STYLES ─── */
.section { padding: 96px 48px; }
.section-narrow { max-width: 720px; margin: 0 auto; }
.section-wide { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 32px 0;
}

/* ─── WHITE SECTION ─── */
.section-white {
  background: var(--white);
  color: #111;
  padding: 96px 48px;
}

.section-white .section-title { color: #111; }
.section-white .section-label { color: #888; }
.section-white .section-body { color: #555; }
.section-white .divider { background: #ccc; }

/* ─── FEATURED PRODUCTS ─── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.featured-item {
  position: relative;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 40px;
  transition: transform 0.6s ease;
}

.featured-item:hover img { transform: scale(1.03); }

.featured-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  color: #111;
}

.featured-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.featured-caption span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ─── COLLECTION GRID ─── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-item {
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.collection-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  transition: transform 0.5s ease;
}

.collection-item:hover img { transform: scale(1.04); }

.collection-caption {
  padding: 20px 20px 24px;
  background: #ffffff;
}

.collection-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.03em;
}

.collection-caption span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-top: 4px;
}

/* ─── ARTIST CARDS ─── */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 660px;
  margin: 0 auto;
}

.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  opacity: 0.85;
}

.artist-card:hover img { transform: scale(1.04); opacity: 1; }

.artist-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 60px 40px 40px;
}

.artist-card-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: white;
}

.artist-card-info span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.artist-card-info a {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.artist-card-info a:hover { opacity: 0.7; }

/* ─── ABOUT CRAFTS GRID ─── */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.craft-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.craft-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-white .craft-item h4 { color: #111; }

/* ─── PRODUCT PAGE ─── */
.product-page {
  background: var(--white);
  color: #111;
  min-height: 100vh;
}

.product-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 48px;
}

.product-image-wrap {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 64px;
  min-height: 500px;
}

.product-image-wrap img {
  max-width: 100%;
  width: 100%;
  max-height: 800px;
  object-fit: contain;
  display: block;
}

.product-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #111;
  line-height: 1.1;
  margin-bottom: 32px;
}

.product-divider {
  width: 48px;
  height: 1px;
  background: #ccc;
  margin: 32px 0;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.product-description {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.back-link:hover { color: #111; }
.back-link::before { content: '←'; font-size: 14px; }

/* ─── ARTIST BIO PAGE ─── */
.bio-page { background: var(--bg); }

.bio-hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.bio-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 120px 48px 80px;
  text-align: center;
}

.bio-hero-content .bio-text {
  text-align: left;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}

.bio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bio-role {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.bio-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
}

.bio-text p + p { margin-top: 24px; }

/* ─── CONTACT PAGE ─── */
.contact-hero-content {
  text-align: center;
  max-width: 860px;
  padding: 0 32px;
}

.contact-hero-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 20px;
}

.contact-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
}

.contact-hero-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.contact-hero-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-hero-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-hero-item-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.contact-hero-item-value {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.contact-hero-item-value:hover { color: #fff; }

.contact-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 48px;
}

.contact-inner {
  text-align: center;
  max-width: 560px;
}

.contact-inner .section-title { margin-bottom: 16px; }

.contact-info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.contact-info-item a { transition: color 0.2s; }
.contact-info-item a:hover { color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  padding: 40px 48px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  align-self: flex-start;
  text-align: left;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #666;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom p {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
}

/* ─── INDEX INTRO ─── */
.intro-section {
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.intro-section .section-body { font-size: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .hamburger { display: flex; }

  .hero-overlay { padding: 32px; }
  .section { padding: 64px 24px; }
  .section-white { padding: 64px 24px; }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }

  .featured-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: 1fr; }

  .footer-inner { gap: 24px; }
  .footer-links { gap: 6px 20px; }

  .craft-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-specs { grid-template-columns: 1fr; }

  .product-container { padding: 48px 24px; }
  .product-image-wrap { padding: 32px; }
  .bio-content { padding: 48px 24px; }

  .contact-page { padding: 64px 24px; }
  .contact-hero-info { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  footer { padding: 48px 24px; }

  .mobile-nav { padding: 24px; }
}

@media (max-width: 480px) {
  .collection-grid { grid-template-columns: 1fr; }
  .header-subtitle { display: none; }
  .contact-hero-info { grid-template-columns: 1fr; gap: 24px; }
}
