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

/* Variables */
:root {
  --bg: #fafafa;
  --text: #111;
  --muted: #555;
  --max-width: 900px;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Container central */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 32px);
}

/* Hero */
.hero {
  text-align: center;
  padding: clamp(40px, 10vh, 90px) 0 clamp(24px, 6vh, 48px);
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero p {
  margin-top: 0.8rem;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  color: var(--muted);
}

/* About */
.about {
  margin: clamp(24px, 6vh, 64px) 0;
  text-align: center;
}

.about p {
  max-width: 60ch;
  margin: 0 auto;
  color: #333;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(10px, 2.5vw, 18px);
  margin: clamp(24px, 6vh, 64px) 0;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Contact */
.contact {
  text-align: center;
  padding: clamp(24px, 6vh, 48px) 0;
  font-size: 0.95rem;
}

.contact a {
  color: var(--text);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.social {
  margin-top: 0.5rem;
}