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

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: #F7F6F3;
  color: #2E2E2E;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.15);
}

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.coming-soon {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C7A86A;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: #6B6B6B;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C7A86A;
}

/* Gallery - Single Column Layout */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #2E2E2E;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.footer {
  background: #2E2E2E;
  color: #F7F6F3;
  padding: 4rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-email {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.contact-email a {
  color: #C7A86A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: #F7F6F3;
}

.contact-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C7A86A;
}

.contact-info {
  font-size: 0.9375rem;
  line-height: 1.8;
  opacity: 0.9;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Mobile refinements */
@media (max-width: 639px) {
  .header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .gallery {
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem;
  }
}