:root {
  --bg: #8F9C7E;
  --card: #ddd7ca;
  --text: #1f1f1f;
  --muted: #5f6258;
  --border: #b7ae9c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--text);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

/* Notice Banner */

.notice {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #c7c2b3;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
}

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notice-text {
  font-size: 0.95rem;
}

.notice-text strong {
  display: block;
  margin-bottom: 4px;
}

.notice-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

/* HEADER */

.header {
  background: var(--bg);
  padding-bottom: 20px;
  border-bottom: none;
}

/* Navigation */

.topbar {
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 8px 22px;
  padding: 10px 10px;
}

.topnav a {
  font-family: "Cinzel", serif;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 6px 4px;
}

.topnav a:hover {
  opacity: 0.6;
}

.topnav-row1 {
  border-bottom: none;
}

/* Logo */

.logo-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 20px 10px;
  background: var(--bg);
}

.logo {
  display: block;
  width: 180px;
  max-width: 70%;
  height: auto;
}

/* Cards */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
}

/* Footer */

.footer {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  background: var(--bg);
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  text-decoration: none;
  font-weight: 500;
}

.footer-legal {
  margin-bottom: 20px;
}

.footer-legal a {
  margin: 0 8px;
  font-size: 14px;
  text-decoration: none;
}

.footer small {
  color: var(--muted);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.insta-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.insta-icon:hover {
  opacity: 0.6;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

.map-icon {
  font-size: 18px;
  margin-top: 3px;
}

.address-text {
  display: block;
}

.address:hover {
  opacity: 0.7;
}