:root {
  --maroon: #6e2230;
  --gold: #c89b5a;
  --cream: #fbf6f0;
  --muted: #857a70;
}

/* hero */
.page-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.page-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 10px;
}
.page-hero-content p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
}

/* sections */
section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
  color: #3d2f29;
}
section h2 {
  font-family: "Playfair Display", serif;
  color: var(--maroon);
  font-size: 30px;
  margin-bottom: 10px;
}
section p {
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid var(--gold);
  background: #fff8ef;
  padding: 10px 16px;
  margin: 10px 0 20px;
  font-style: italic;
  color: var(--maroon);
}

/* highlight sections */
.highlight-section {
  background: var(--cream);
  padding: 40px 20px;
  border-radius: 12px;
}
.highlight-section h2 {
  color: var(--gold);
}

/* gallery preview */
.gallery-preview {
  background: #fff;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 40px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform .2s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* footer */
.footer-top {
  text-align: center;
  background: var(--maroon);
  color: #fff;
  padding: 24px 20px;
}
.footer-top .btn-gold {
  background: var(--gold);
  color: var(--maroon);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  background: #3b1a1e;
  color: #fff;
  padding: 12px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .page-hero-content h1 {font-size: 34px;}
}
