/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #F8F8F8;
  color: #1A1A1A;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== VARIABLES ===== */
:root {
  --clr-bg: #F8F8F8;
  --clr-dark: #121212;
  --clr-text: #1A1A1A;
  --clr-text-light: #EEEEEE;
  --clr-accent: #FF6B6B;
  --clr-accent-hover: #e05555;
  --clr-accent-secondary: #FFD93D;
  --clr-gray: #888;
  --clr-border: rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
  --header-height: 70px;
  --transition: 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--clr-accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 0;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--clr-accent);
  color: var(--clr-accent);
}

.btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
}

.btn-dark {
  background: var(--clr-dark);
  color: var(--clr-text-light);
}

.btn-dark:hover {
  background: #2a2a2a;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1.2rem 0;
}

.header.scrolled {
  background: var(--clr-dark);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.logo span {
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    radial-gradient(circle at 20% 50%, var(--clr-accent) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--clr-accent-secondary) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, #fff 0%, transparent 40%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.1; }
  100% { opacity: 0.25; }
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: var(--clr-gray);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-content .tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== FEATURED WORKS ===== */
.featured {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.art-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  aspect-ratio: 3/4;
}

.art-card .art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.art-card:hover .art-image {
  transform: scale(1.05);
}

.art-card .art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.art-card:hover .art-overlay {
  opacity: 1;
}

.art-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.art-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}

.featured-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== COMMISSIONS ===== */
.commissions {
  padding: 6rem 2rem;
  background: var(--clr-dark);
  color: var(--clr-text-light);
}

.commissions-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.commissions .section-title::after {
  background: var(--clr-accent-secondary);
}

.commissions-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--clr-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  background: rgba(255,255,255,0.1);
}

.form-group select option {
  background: var(--clr-dark);
  color: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--clr-gray);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.contact-detail i {
  width: 20px;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--clr-accent);
  background: rgba(0,0,0,0.05);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-dark);
  color: var(--clr-text-light);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--clr-gray);
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--clr-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
}

.footer-social a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
  padding: calc(var(--header-height) + 3rem) 2rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid .art-card {
  aspect-ratio: auto;
  min-height: 350px;
}

.gallery-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-page-header p {
  color: var(--clr-gray);
  font-weight: 300;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  background: #ddd;
}

.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h2 {
  margin-bottom: 0.5rem;
}

.modal-info .art-medium {
  color: var(--clr-gray);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.modal-info .art-year {
  color: var(--clr-gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.modal-info .art-description {
  color: #555;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal-info .art-price {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--clr-dark);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: var(--transition);
  opacity: 0.7;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .modal-image {
    min-height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--clr-dark);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PLACEHOLDER ART IMAGES ===== */
/* These will be replaced with real artwork images */
.art-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  color: rgba(255,255,255,0.1);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.art-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-accent) 0%, transparent 70%);
  opacity: 0.1;
  top: -50px;
  right: -50px;
}

.art-placeholder::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-accent-secondary) 0%, transparent 70%);
  opacity: 0.08;
  bottom: -30px;
  left: -30px;
}
</write_to_file>
<task_progress>
- [x] Create folder structure
- [ ] Create style.css
- [ ] Create index.html (Landing page with Hero, Featured Works, Commissions, Contact, Footer)
- [ ] Create gallery.html (Full gallery page)
- [ ] Create main.js (Modal functionality, animations, form handling, navigation)
- [ ] Verify the project works
</task_progress>