:root {
  --bg: #3e2a1f;
  --panel: #6f4e2f;
  --accent: #de8f4a;
  --light: #ffe8c4;
  --text: #f3edd9;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0,0,0,0.2);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--light);
  color: var(--bg);
  line-height: 1.5;
}

header {
  padding: 0;
  margin: 0;
}

.banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 8000 / 3125;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: flex-end;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner h1 {
  position: relative;
  margin: 12px;
  font-size: 1.8rem;
  background: rgba(255, 232, 196, 0.9);
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--bg);
  font-weight: 700;
  z-index: 1;
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bg);
}

.icon-circle {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform .2s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item a {
  position: absolute;
  inset: 0;
  display: block;
}

.gallery-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.locations {
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  color: #fff;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.location-item {
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.location-item span {
  flex: 1;
  word-break: break-word;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: var(--panel);
  color: #f5efe6;
}

.small {
  font-size: 0.8rem;
  opacity: 0.85;
}
