/* =========================
   VON PAGE
========================= */

body.von-page{
  background:
    radial-gradient(1200px 500px at 50% -80px, rgba(255,255,255,0.06), transparent 70%),
    var(--bg);
}


body.von-page .von-wrap{
  width: var(--container);
  margin: 18px auto 60px;
}


body.von-page .von-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 18px;

  color: rgba(255,255,255,0.82);
  text-decoration: none;
  opacity: 0.9;
}
body.von-page .von-back:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}


body.von-page .von-header{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 30px 22px 28px;
  text-align: center;
}
body.von-page .von-header p{
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
}


body.von-page .von-signature{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 10px;
}
body.von-page .von-signature img{
  width: min(980px, 95%);
  max-height: 240px;
  height: auto;
  object-fit: contain;
  display: block;
}



body.von-page section.about{
  width: var(--container);
  margin: 46px auto 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


body.von-page .von-about-grid{
  max-width: 1080px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}


body.von-page .about-left{
  max-width: none;
}

body.von-page .about-left h2{
  margin: 0 0 12px;
  text-align: center;
  font-size: 32px;
}

body.von-page .about-left p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  text-align: left;
}


body.von-page .about-right{
  display: flex;
  justify-content: center;
}


body.von-page .about-card{
  width: 100%;
  max-width: 360px;

  border: none;
  background: transparent;
  padding: 0;

  text-align: center;
}

body.von-page .about-card h3{
  margin: 0 0 8px;
  font-size: 22px;
}

body.von-page .about-card p{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.75);
}

.gallery {
  width: var(--container);
  margin: 60px auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* keep consistent framing */
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS centers visually */
  object-position: center;
  display: block;
}

body.von-page .photo-guide{
  width: var(--container);
  margin: 46px auto 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

body.von-page .photo-guide h2{
  text-align: center;
  font-size: 32px;
  margin: 0 0 10px;
}

body.von-page .guide-intro{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.65);
}


body.von-page .guide-grid{
  max-width: 1080px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 20px;
}


body.von-page .guide-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 22px;

  text-align: center;
}


body.von-page .guide-card h3{
  margin: 0 0 10px;
  font-size: 20px;
}

body.von-page .guide-card p{
  margin: 0 auto 14px;
  max-width: 280px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.6;
}


body.von-page .guide-card ul{
  list-style: none;
  padding: 0;
  margin: 0 auto;

  display: inline-block;
  text-align: left;
}
body.von-page .guide-card li{
  position: relative;
  padding-left: 16px;
  margin: 8px 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
body.von-page .guide-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}


body.von-page .von-quote{
  text-align: center;
  max-width: 820px;
  margin: 32px auto 0;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}


body.von-page .von-footer{
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-align: center;
}


body.von-page section.about,
body.von-page section.photo-guide{
  display: block !important;
  float: none !important;
  clear: both;
}

@media (max-width: 900px){
  body.von-page .von-about-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.von-page .about-left p{
    text-align: center;
  }

  body.von-page .guide-grid{
    grid-template-columns: 1fr;
  }

  body.von-page .guide-card ul{
    display: block;
  }
}
