:root {
  --bg-primary: #121212;
  --bg-secondary: #000000;
  --text-main: #f5f5f7;
  --text-muted: #86868b;
  --link-color: #ffffff;
  --accent: #333333;
}

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

body {
  background: #000000;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header {
  margin-bottom: 3rem;
}

.logo-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  width: 200px;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.links a:hover {
  color: var(--text-main);
}

.links a.primary-link {
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Typography for Text Blocks */
.content-block {
  width: 100%;
  max-width: 680px;
  text-align: left;
  margin-bottom: 4rem;
}

.content-block p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-main);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.content-block ul {
  list-style-type: none;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 1px solid var(--accent);
}

.content-block li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
}

.content-block .contact-list li {
  margin-bottom: 1.5rem;
}

.content-block .contact-list strong {
  color: var(--text-main);
  font-weight: 500;
}

.content-block a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px dashed var(--text-muted);
  transition: border-color 0.2s ease;
}

.content-block a:hover {
  border-bottom-color: var(--text-main);
}

.intro-text {
  font-size: 1.5rem !important;
  color: var(--text-main) !important;
  font-family: 'Playfair Display', serif;
}

.outro-text {
  font-style: italic;
  font-size: 1.25rem !important;
  color: var(--text-main) !important;
  margin-top: 2rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  margin-bottom: 4rem;
  align-items: center;
}

.gallery-image {
  max-width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-image:hover {
  opacity: 1;
}

.footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .title {
    font-size: 4.5rem;
  }
}
