/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: #444;
  font-family: Arial, Helvetica, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: #6b8db5; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
#container { width: 100%; }
#header, #wrapper, #footer { max-width: 920px; margin: 0 auto; padding: 0 16px; }
#header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 10px;
  border-bottom: 1px solid #e7e2d8;
}
#logo a {
  color: #c8a782;
  font-weight: normal;
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.5px;
  text-decoration: none;
}
#langswitch { font-size: 12px; color: #888; }
#langswitch a { color: #6b8db5; margin-left: 6px; padding: 2px 8px; border: 1px solid #d8d4cb; border-radius: 3px; }
#langswitch a.current { background: #c8a782; color: #fff; border-color: #c8a782; }

#mainmenu {
  background: #4a5a6b;
  border-top: 1px solid #3a4856;
  border-bottom: 1px solid #3a4856;
}
#mainmenu .nav-inner {
  max-width: 920px; margin: 0 auto; padding: 0 12px;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
#mainmenu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
#mainmenu li { position: relative; }
#mainmenu li a {
  display: block;
  padding: 11px 16px;
  color: #fff;
  font-size: 13.5px;
  font-weight: bold;
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0.2px;
}
#mainmenu li a:hover, #mainmenu li.current a { background: #3a4856; text-decoration: none; }
#mainmenu li.has-sub > a::after {
  content: " \25BE"; font-size: 9px; vertical-align: 1px; opacity: 0.7;
}
#mainmenu li ul {
  position: absolute; top: 100%; left: 0;
  background: #4a5a6b;
  min-width: 200px;
  display: none;
  z-index: 50;
  border: 1px solid #3a4856;
  border-top: none;
}
#mainmenu li:hover ul, #mainmenu li:focus-within ul { display: block; }
#mainmenu li ul li a { padding: 9px 16px; font-size: 13px; font-weight: normal; }

#wrapper {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 28px;
  padding-top: 22px; padding-bottom: 28px;
}
#content { min-width: 0; }
#sidebar { min-width: 0; padding-top: 4px; }

@media (max-width: 720px) {
  #wrapper { grid-template-columns: 1fr; }
  #sidebar { order: 2; border-top: 1px solid #eee; padding-top: 18px; }
  #header { flex-direction: column; align-items: flex-start; gap: 8px; }
  #mainmenu li a { padding: 10px 12px; font-size: 13px; }
}

/* Typography */
h1 {
  font-size: 26px; color: #5e564a; font-weight: normal;
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 14px; line-height: 1.2;
}
h2 { font-size: 20px; color: #cc9900; font-weight: normal; font-family: Georgia, serif; margin: 22px 0 10px; }
h3 { font-size: 17px; color: #5e564a; font-weight: normal; font-family: Georgia, serif; margin: 18px 0 8px; }
p { margin: 0 0 12px; }
ul, ol { padding-left: 22px; margin: 6px 0 14px; }
li { margin: 2px 0; }
strong { color: #3a3a3a; }

/* Photo grid */
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; margin: 14px 0;
}
.photo-grid a { display: block; border: 1px solid #d8d4cb; padding: 3px; background: #fff; }
.photo-grid a:hover { border-color: #c8a782; }
.photo-grid img { display: block; width: 100%; height: 160px; object-fit: cover; }

.center-image { display: block; margin: 18px auto; border: 1px solid #d8d4cb; padding: 3px; }
.center-image img { display: block; max-width: 100%; height: auto; }

/* Pricing block */
.price-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; padding: 6px 0; border-bottom: 1px dotted #e0d8c8;
  font-family: Georgia, serif; font-size: 17px; color: #5e564a;
}
.price-row strong { color: #cc9900; font-weight: normal; }
.notice {
  background: #fbf8f1; border-left: 4px solid #c8a782;
  padding: 14px 18px; margin: 18px 0; color: #5e564a;
}

/* Sidebar */
#sidebar h2 { color: #33bdff; font-size: 17px; margin: 0 0 8px; font-family: Tahoma, Arial, sans-serif; }
#sidebar .map-wrap { border: 1px solid #d8d4cb; padding: 3px; background: #fff; margin-bottom: 14px; }
#sidebar .map-wrap img { display: block; width: 100%; height: auto; }
#sidebar .map-caption { font-size: 11.5px; margin-top: 4px; color: #888; }
#sidebar .map-caption a { color: #6b8db5; }
#sidebar .address-block {
  background: #fbf8f1; padding: 12px 14px; border: 1px solid #e7e2d8;
  font-size: 13px; color: #5e564a; margin-bottom: 14px;
}
#sidebar .address-block strong { color: #c8a782; }

/* Footer */
#footer {
  border-top: 1px solid #e7e2d8;
  padding-top: 14px; padding-bottom: 20px;
  font-size: 12px; color: #888;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
#footer ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 14px; }
#footer a { color: #6b8db5; }
#footer .credits { font-size: 11px; color: #aaa; margin-top: 6px; flex-basis: 100%; }

/* FAQ */
details {
  background: #fbf8f1;
  border: 1px solid #e7e2d8;
  border-radius: 3px;
  padding: 10px 14px;
  margin: 8px 0;
  cursor: pointer;
}
details summary {
  list-style: none;
  color: #5e564a;
  font-size: 14.5px;
  outline: none;
  padding-right: 24px;
  position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  font-size: 22px; color: #c8a782; line-height: 1;
}
details[open] summary::after { content: "−"; }
details[open] { background: #fff; border-color: #c8a782; }
details p {
  margin: 10px 0 4px;
  color: #555;
  font-size: 14px;
}

/* Misc */
.lead { font-size: 15px; color: #5e564a; }
hr { border: 0; border-top: 1px solid #e7e2d8; margin: 18px 0; }
