/* Basic reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #1a1a1a;
  background: #fffdf7;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
.section { padding: 70px 6vw; }
.section.alt { background: #fffaf0; }
.section-title {
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  border-left: 4px solid #b08d57;
  padding-left: 12px;
}

.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,253,247,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee2c9;
}
.brand { display: flex; align-items: center; gap: 10px; }
.logo { width: 36px; height: 36px; border-radius: 3px; object-fit: cover; }
.brand-name { font-weight: 600; letter-spacing: 0.04em; }
.nav { display: none; gap: 16px; }
.nav a { padding: 6px 8px; border-radius: 4px; }
.nav a:hover { background: #f0e6d6; }
.lang-toggle { display:flex; align-items:center; gap:6px; }
.lang-toggle button {
  background: transparent; border: none; font-weight: 600; cursor: pointer;
  padding: 4px 6px;
}
.lang-toggle button.active { color: #b08d57; text-decoration: underline; }
.lang-toggle .sep { opacity: .5; }

@media (min-width: 880px) {
  .nav { display:flex; }
}

/* Hero */
.hero {
  min-height: 88dvh;
  display: grid; place-items: center;
  padding: 0 6vw;
  background: #f8f4ea;
}
.hero-inner { text-align: center; max-width: 900px; }
.hero-logo { width: clamp(180px, 30vw, 320px); display:block; margin: 0 auto 14px; }
.gold-line { width: 200px; margin: 10px auto 16px; border: none; height: 1px;
  background: linear-gradient(90deg, transparent, #b08d57, transparent);
}
.hero-copy { font-size: clamp(18px, 2.2vw, 24px); margin: 0 0 18px; }
.btn {
  display: inline-block; padding: 12px 20px; border: 1px solid #b08d57; border-radius: 999px;
}
.btn:hover { background: #b08d57; color: white; }
.btn.small { padding: 8px 14px; font-size: 14px; }

/* Layout */
.two-col { display: grid; gap: 18px; }
.col-accent { border: 1px solid #eee2c9; padding: 16px; background: #fffbf2; }
blockquote { margin: 0; font-style: italic; color: #6a5532; }

@media (min-width: 960px) {
  .two-col { grid-template-columns: 2fr 1fr; gap: 28px; }
}

/* Cards */
.cards { display: grid; gap: 16px; margin-top: 12px; }
.card { border: 1px solid #eee2c9; padding: 16px; background: white; border-radius: 10px; }
.card h3 { margin-top: 0; }
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

/* Gallery */
.grid { display: grid; gap: 12px; margin-top: 12px; }
.ph { background: #efe7d8; padding-top: 66%; border: 1px dashed #d8c6a3; border-radius: 8px; }
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
}

/* Hero gold reveal animation */
@keyframes goldReveal {
  0% { filter: grayscale(1) brightness(1.2); opacity: 0; }
  50% { filter: sepia(0.6) saturate(1.2) brightness(1.05); opacity: 0.7; }
  100% { filter: none; opacity: 1; }
}
.gold-reveal { animation: goldReveal 1.6s ease both; }
