/* Theme: Artsy-inspired Clean & Minimal */
:root {
  /* Neutral color palette */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --black: #000000;
  
  /* Accent colors */
  --accent: #000000;
  --accent-hover: #404040;
  
  /* Typography */
  --text-primary: #000000;
  --text-secondary: #404040;
  --text-muted: #737373;
  --text-light: #a3a3a3;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site-header {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.site-nav .brand {
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--text-primary);
  transition: color 0.2s ease;
  letter-spacing: 0.5px;
}

.site-nav .brand:hover {
  color: var(--text-secondary);
}

.site-nav .links a {
  text-decoration: none;
  color: var(--text-secondary);
  margin-left: 32px;
  padding: 8px 0;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}


.site-nav .links a[aria-current="page"],
.site-nav .links a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}


.site-header h1 {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 16px;
}


.tagline {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
}

main {
  padding: 80px 0;
}

.about {
  background: var(--white);
  padding: 0;
  margin: 0 0 80px 0;
  border: none;
  box-shadow: none;
}

.card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}



.about h2 {
  margin: 0 0 24px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-image {
  text-align: center;
}

.image-pair {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.headshot {
  transform: scaleX(1);
}

.artwork {
  transform: scaleX(-1);
}

.image-pair:hover .headshot {
  transform: scaleX(-1);
  opacity: 0.8;
}

.image-pair:hover .artwork {
  transform: scaleX(1);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-image {
    order: -1;
  }
  
  .image-pair {
    gap: 12px;
  }
  
  .about-image img {
    max-width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .image-pair {
    gap: 8px;
  }
  
  .about-image img {
    max-width: 120px;
    height: 120px;
  }
}

.site-footer {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
}

/* Bubbles completely removed for futuristic design */
.bubbles {
  display: none !important;
}

/* Small screens */
@media (max-width: 600px) {
  .about { padding: 20px; }
}

/* Form styles */
.form .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-size: 14px;
  color: var(--text-muted);
}

input, textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  background: transparent;
  font: inherit;
  color: var(--text-primary);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
}

textarea { resize: vertical; }

.actions { margin-top: 12px; }

.btn {
  display: inline-block;
  background: var(--text-primary);
  color: var(--white);
  border: 1px solid var(--text-primary);
  padding: 12px 24px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 300;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--white);
  color: var(--text-primary);
}

.note { color: var(--text-muted); font-size: 14px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.gallery-grid .item {
  overflow: hidden;
  border-radius: 0;
  background: var(--white);
  border: none;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.gallery-grid .item:hover img {
  opacity: 0.8;
}


/* Center the Joan of Arc painting */
.gallery-grid .center-item {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 400px;
}

.gallery-grid figcaption {
  padding: 16px 0 0 0;
  color: var(--text-secondary);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .form .grid { grid-template-columns: 1fr; }
  .gallery-grid { 
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-grid img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 12px;
  }
  .gallery-grid img {
    height: 200px;
  }
}


