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

body {
  font-family: 'Raleway', sans-serif;
  background: #fff;
  color: #333;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 210px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1589612654167-68b484c80da7?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ── NAVIGATION ── */
nav {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 10px;
}

nav a:hover { 
  color: #fff; 
}

nav .sep {
  color: #999;
  font-size: 0.7rem;
  padding: 0 2px;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px 60px;
}

/* ── SECTION TITLES (Henriikan index -tyyli) ── */
.section-title {
  font-family: Verdana, sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgb(225, 225, 225);
}

.section-title:first-of-type {
  margin-top: 0;
}

/* ── INFO TEXT ── */
.info-text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.info-text p {
  margin-bottom: 15px;
}

/* ── QUOTES (vanha tyyli) ── */
.quotes {
  margin-top: 10px;
}

.quotes blockquote {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 400;
}

.quotes blockquote em {
  display: block;
  font-style: italic;
  font-size: 0.75rem;
  color: #888;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── GALLERIA ── */
.gallery {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
}

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

/* ── YHTEYSTIEDOT LISTA ── */
.contact-list {
  list-style: none;
  margin-top: 15px;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-list li strong {
  color: #333;
  min-width: 80px;
}

.contact-list a {
  color: #6fa8dc;
  text-decoration: none;
}

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

/* ── DIVIDER ── */
.divider {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  border: none;
  border-top: 1px solid #e8e8e8;
}

/* ── SOCIAL ICONS ── */
.edit-hint {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-icons a:hover { 
  color: #555; 
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
  padding: 20px;
  text-align: center;
}

footer p {
  color: #666;
  font-size: 0.75rem;
}

footer a {
  color: #c0c0c0;
  text-decoration: none;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .hero { 
    height: 190px; 
  }
  
  .hero-title { 
    font-size: 2rem; 
  }

  main {
    padding: 40px 20px 40px;
  }

    .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  
  }
  
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .contact-list li strong {
    min-width: auto;
  }
}