@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Jost:wght@400;500&display=swap');

:root {
  --cream: #f5ede0;
  --cream-light: #faf4ec;
  --tan: #f0e4d0;
  --sand: #c4a882;
  --sand-dark: #9e6b3a;
  --brown: #7a4a1e;
  --brown-deep: #5c3d20;
  --espresso: #3d2410;
  --espresso-deep: #2a1a09;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--brown-deep);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--espresso);
}

a { text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 0.5px solid var(--sand);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 44px; height: 44px; }
.nav-brand-text { font-family: 'Playfair Display', serif; font-size: 20px; color: #5c3d1e; }
.nav-brand-text em { font-style: italic; color: var(--brown); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; color: #7a5230; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--brown); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--espresso); cursor: pointer; }

/* HERO */
.hero {
  background: var(--tan);
  padding: 64px 32px 56px;
  text-align: center;
  border-bottom: 0.5px solid var(--sand);
}
.hero-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-dark); margin-bottom: 16px; }
.hero-flanked {
  display: flex; align-items: center; justify-content: center; gap: 64px; margin-bottom: 18px;
}
.hero-side-photo {
  width: 130px; height: 160px; flex-shrink: 0; border-radius: 4px; object-fit: cover;
  border: 0.5px solid var(--sand);
}
.hero-flanked h1 { margin: 0; }
.hero h1 { font-size: 44px; line-height: 1.2; margin: 0 0 18px; }
.hero h1 em { font-style: italic; color: #7a4a1e; }
.hero p { font-size: 15px; color: #7a5a3a; max-width: 520px; margin: 0 auto 28px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-outline {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 28px; border-radius: 2px; cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-primary { background: var(--brown); color: var(--cream); border: none; }
.btn-outline { background: transparent; color: var(--brown); border: 0.5px solid var(--brown); }

/* SECTIONS */
.section { padding: 56px 32px; }
.section.alt { background: var(--cream-light); }
.section-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-dark); margin-bottom: 10px; }
.section-title { font-size: 28px; margin: 0 0 6px; }
.section-rule { width: 40px; height: 1px; background: var(--sand); margin: 14px 0 28px; }

.bio-text { font-size: 15px; color: var(--brown-deep); max-width: 680px; line-height: 1.8; }
.bio-text p { margin: 0 0 16px; }

/* GALLERY CATEGORY ROWS */
.gallery-row { margin-bottom: 30px; }
.gallery-row-title {
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--espresso);
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px;
}
.gallery-row-title a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand-dark); font-family: 'Jost', sans-serif; }
.gallery-photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-photo-row img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; background: #e8d5b7;
  display: block;
}

/* ARTISTS */
.artists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.artist-card { background: var(--cream-light); border: 0.5px solid var(--sand); border-radius: 4px; padding: 28px 24px; }
.artist-photo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  margin-bottom: 14px; border: 2px solid var(--sand); display: block;
}
.artist-card h3 { font-size: 19px; margin: 0 0 4px; }
.artist-medium { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand-dark); margin: 0 0 14px; }
.artist-desc { font-size: 14px; margin: 0; }

/* SHOP */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.shop-item { border: 0.5px solid var(--sand); border-radius: 4px; overflow: hidden; background: var(--cream-light); }
.shop-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #e8d5b7; }
.shop-info { padding: 14px 14px 16px; }
.shop-info h4 { font-family: 'Playfair Display', serif; font-size: 15px; margin: 0 0 3px; color: var(--espresso); }
.shop-artist { font-size: 12px; color: var(--sand-dark); margin: 0 0 10px; }
.shop-price { font-size: 14px; font-weight: 500; }
.shop-buy { display: inline-block; margin-top: 10px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown); border: 0.5px solid var(--brown); padding: 6px 14px; border-radius: 2px; }

/* CONTACT */
.contact-section { background: var(--espresso); padding: 56px 32px; }
.contact-head { text-align: center; margin-bottom: 36px; }
.contact-head h2 { color: var(--tan); font-size: 28px; margin: 0 0 10px; }
.contact-head p { font-size: 14px; color: var(--sand); max-width: 460px; margin: 0 auto; }

.contact-form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; max-width: 700px; margin: 0 auto 20px; align-items: start; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; color: var(--sand); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(245,237,224,0.07); border: 0.5px solid #6b4a28; border-radius: 3px;
  color: var(--tan); padding: 9px 11px; font-size: 13px; font-family: 'Jost', sans-serif;
}
.field textarea { resize: vertical; min-height: 80px; }
.submit-btn {
  background: var(--sand); color: var(--espresso); border: none; padding: 11px 30px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; width: 100%;
}

.contact-card { background: rgba(245,237,224,0.06); border: 0.5px solid #6b4a28; border-radius: 4px; padding: 22px 20px; }
.contact-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--tan); margin: 0 0 14px; }
.contact-row { display: flex; gap: 8px; font-size: 13px; color: var(--sand); margin-bottom: 8px; }
.contact-divider { border: none; border-top: 0.5px solid #6b4a28; margin: 18px 0; }
.studio-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand-dark); margin: 0 0 6px; }
.studio-text { font-size: 13px; color: var(--tan); margin: 0; }

/* FOOTER */
.footer {
  background: var(--espresso-deep); padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: #9e7a50; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #9e7a50; }

hr.divider { border: none; border-top: 0.5px solid var(--sand); margin: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .gallery-photo-row { grid-template-columns: repeat(2, 1fr); }
  .artists-grid, .shop-grid, .contact-form-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; }
  .hero-flanked { flex-direction: column; gap: 16px; }
  .hero-side-photo { width: 140px; height: 110px; }
}
