
:root {
  --sh-yellow: #ffd466;
  --sh-orange: #f5af00;
  --sh-charcoal: #292929;
  --sh-blue: #244861;
  --sh-link: #d69a00;
  --sh-page-width: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  background: #fff url('template/page.png') fixed repeat;
  color: #3b3b3b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.sh-site { display: flex; flex-direction: column; min-height: 100vh; }
.sh-header {
  position: relative;
  width: 100%;
  height: 200px;
  background: #b9806c url('template/header.png') center top / cover no-repeat;
}
.sh-branding {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--sh-page-width));
  margin: 0 auto;
  padding-top: 55px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 12px rgba(23,23,23,.98);
  pointer-events: none;
}
.sh-title {
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  font-size: clamp(25px, 3.2vw, 35px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .04em;
}
.sh-slogan {
  margin-top: 9px;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
.sh-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 8px 4px 0;
}
.sh-menu-toggle {
  display: none;
  width: calc(100% - 1rem);
  margin: 0 .5rem;
  padding: .55rem .7rem;
  border: 0;
  border-radius: 3px;
  background: #292929;
  color: #fff;
  font-weight: 700;
  text-align: left;
}
.sh-menu {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1px;
  width: min(100%, 1138px);
  margin: 0 auto;
  padding: 0 19px;
  list-style: none;
}
.sh-menu a {
  display: flex;
  align-items: center;
  min-height: 33px;
  padding: 0 16px;
  border-radius: 3px 3px 0 0;
  background: var(--sh-yellow);
  color: #4a4a4a;
  font: 700 14px/33px "Trebuchet MS", Arial, Helvetica, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.sh-menu .active a,
.sh-menu a:hover,
.sh-menu a:focus {
  background: var(--sh-orange);
  color: #fff;
}
.sh-page {
  flex: 1 0 auto;
  width: min(calc(100% - 1rem), var(--sh-page-width));
  margin: 0 auto;
  padding: 15px;
  background: rgba(180,191,203,.20);
}
.sh-page a { color: var(--sh-link); text-decoration: none; }
.sh-page a:hover { text-decoration: underline; }
.sh-page h1 {
  margin: 12px 0;
  color: var(--sh-blue);
  font: 700 24px/1.25 "Trebuchet MS", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.sh-page h2 {
  color: var(--sh-blue);
  font: 400 20px/1.3 "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.sh-page h3 {
  color: var(--sh-blue);
  font: 700 18px/1.3 "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.sh-page h4 {
  color: var(--sh-blue);
  font: 700 16px/1.3 "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.sh-page img { max-width: 100%; height: auto; }
.sh-page table { max-width: 100%; border-collapse: separate; border-spacing: 6px; }
.sh-page td { vertical-align: top; }
.gallery-link img {
  display: block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-link:hover img {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
.gallery-link:focus-visible,
.sh-menu-toggle:focus-visible,
.sh-back-top:focus-visible,
.sh-lightbox button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.sh-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sh-lightbox-open { overflow: hidden; }
.sh-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem 4.75rem;
  background: rgba(0, 0, 0, .88);
}
.sh-lightbox[hidden] { display: none; }
.sh-lightbox-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  cursor: zoom-out;
}
.sh-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.sh-lightbox button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #292929;
  font: 700 28px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.sh-lightbox button:hover { background: var(--sh-yellow); }
.sh-lightbox button:disabled { cursor: default; opacity: .45; }
.sh-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.sh-lightbox-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.sh-lightbox-controls button { pointer-events: auto; }
.sh-footer {
  flex: 0 0 auto;
  margin-top: auto;
  background: var(--sh-charcoal);
  color: #adadad;
}
.sh-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: min(100%, var(--sh-page-width));
  margin: 0 auto;
  padding: 25px;
}
.sh-footer-contact { text-align: right; }
.sh-footer a { color: #db9d00; text-decoration: none; }
.sh-back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sh-orange);
  color: #fff;
  text-decoration: none;
}
.contact-details dt { margin-top: .8rem; font-weight: bold; }
.contact-details dd { margin-left: 1.5rem; }
@media (max-width: 900px) {
  .sh-menu a { padding: 0 10px; font-size: 12px; }
}
@media (max-width: 720px) {
  .sh-header { height: 185px; }
  .sh-branding { padding-top: 38px; }
  .sh-menu-toggle { display: block; }
  .sh-menu { display: none; width: 100%; padding: .4rem .5rem 0; }
  .sh-menu.open { display: block; }
  .sh-menu li { margin-bottom: 2px; }
  .sh-menu a { min-height: 34px; border-radius: 3px; }
  .sh-page { width: 100%; padding: 12px; overflow-x: auto; }
  .sh-page table, .sh-page tbody, .sh-page tr, .sh-page td {
    display: block;
    width: 100% !important;
  }
  .sh-page td { margin-bottom: 8px; text-align: center !important; }
  .sh-footer-inner { grid-template-columns: 1fr; gap: 0; }
  .sh-footer-contact { text-align: left; }
  .sh-lightbox { padding: .75rem; }
  .sh-lightbox-close { top: .75rem; right: .75rem; }
  .sh-lightbox-controls { right: .75rem; bottom: .75rem; left: .75rem; }
}
