:root {
  --bg: #3F2A2A;
  --line: rgba(223,178,98,.20);
  --text: rgba(255,255,255,.90);
  --text2: rgba(255,255,255,.78);
  --text3: rgba(255,255,255,.65);
  --gold: #DFB262;
  --gold2: rgba(223,178,98,.18);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --shadow2: 0 6px 20px rgba(0,0,0,.28);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body {
  padding-top: 72px;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.no-scroll { overflow: hidden; }

h1, h2 { color: var(--gold); margin: 0 0 .5rem; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5.4vw, 3.2rem); line-height: 1.08; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); }

p { margin: 0 0 .75rem; color: var(--text2); }
.muted { color: var(--text3); }
.tinyNote { font-size: .85rem; color: var(--text3); margin: .75rem 0 0; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(63,42,42,.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0;
}

.logo:focus-visible {
  outline: 3px solid rgba(223,178,98,.45);
  outline-offset: 4px;
}

.siteLogo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  max-height: 72px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktopNav a {
  padding: .45rem .6rem;
  border-radius: 999px;
  font-weight: 850;
  color: var(--text);
}

.desktopNav a:hover { background: var(--gold2); color: var(--gold); }

.hamburger {
  align-self: center;
  flex-shrink: 0;
  display: none;
  gap: 4px;
  flex-direction: column;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(223,178,98,.30);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow2);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.90);
  border-radius: 999px;
  margin: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .18s ease;
}

.overlay.show { opacity: 1; }

.mobileNav {
  contain: layout paint;
  will-change: transform;
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 92vw);
  background: rgba(63,42,42,.96);
  border-left: 1px solid rgba(223,178,98,.22);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: .5rem;
  transform: translateX(105%);
  transition: transform .18s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mobileNav.open { transform: translateX(0); }

.mobileNavTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(223,178,98,.22);
  margin-bottom: .35rem;
}

.mobileNavTitle {
  margin: 0;
  font-weight: 950;
  color: var(--gold);
}

.closeBtn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(223,178,98,.30);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.mobileLink {
  display: block;
  padding: .95rem .85rem;
  border-radius: 16px;
  font-weight: 900;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.04);
}

.mobileLink:hover { background: var(--gold2); color: var(--gold); border-color: rgba(223,178,98,.20); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid rgba(223,178,98,.35);
  background: linear-gradient(180deg, rgba(223,178,98,.95), rgba(223,178,98,.72));
  color: rgba(20,14,14,.95);
  box-shadow: var(--shadow2);
}

.btn:hover { filter: brightness(1.03); transform: translateY(-1px); }

.btnOutline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(223,178,98,.45);
}

.section {
  padding-top: clamp(.35rem, 1.2vw, .75rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

#information .sectionHead {
  margin-bottom: 0.25rem;
}

#information .infoGrid {
  gap: 0.25rem;
}

#information h2 {
  margin-bottom: 0.1rem;
}

.alt {
  background: var(--bg);
  border-top: 1px solid rgba(223,178,98,.14);
  border-bottom: 1px solid rgba(223,178,98,.14);
}

.hero { 
  padding: clamp(1.25rem, 3.2vw, 2.25rem) 0 1.5rem; 
}
.lead {
  margin: 0 0 .75rem;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  color: rgba(255,255,255,.85);
  max-width: 64ch;
  line-height: 1.58;
}

#gallery {
  border-top: 1px solid rgba(223,178,98,.14);
}

.gallery {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 520px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.shot {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(223,178,98,.14);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.shot img.lbThumb { cursor: zoom-in; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.82);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightboxImg {
  max-width: min(980px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(223,178,98,.22);
  transition: opacity 0.28s ease;
}

.lightboxClose {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(223,178,98,.30);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 20px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.lightboxNav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(223,178,98,.30);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 34px;
  line-height: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.lightboxPrev { left: 14px; }
.lightboxNext { right: 14px; }

@media (max-width: 520px) {
  .lightboxNav {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
}

.lightboxCounter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(63,42,42,.9);
  color: var(--gold);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -.015em;
  padding: 7px 22px;
  border-radius: 50px;
  border: 1px solid rgba(223,178,98,.35);
  box-shadow: var(--shadow);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.lightboxClose:hover,
.lightboxNav:hover {
  background: rgba(223,178,98,.12);
  border-color: var(--gold);
  color: var(--gold);
}

.lightboxNav:hover {
  transform: translateY(-50%) scale(1.05);
}

.infoGrid { display: grid; gap: .75rem; }

.infoItem {
  background: var(--bg);
  border: 1px solid rgba(223,178,98,.14);
  border-radius: 18px;
  padding: .9rem 1rem;
  box-shadow: var(--shadow2);
}

.infoTitle { margin: 0; font-weight: 950; color: var(--gold); }

.mapWrap {
  margin-top: .6rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223,178,98,.18);
  background: rgba(0,0,0,.12);
}

.mapWrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.heroSocials {
  margin-top: 1rem;
  max-width: 520px;
}

.heroSocials .infoItem {
  padding: 1rem 1.05rem;
}

.heroSocials .infoTitle {
  margin-bottom: .35rem;
}

.infoItem .infoTitle:last-of-type {
  margin-top: 1.35rem;
}

.openingTimes {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0.48rem 1.4rem;
  margin-top: 0.65rem;
  font-size: 0.96rem;
  color: var(--text2);
  line-height: 1.48;
}

.openingTimes .day {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  text-align: left;
}

.openingTimes .time.closed {
  color: var(--text3);
  font-weight: 600;
}

.footer {
  padding: 1.5rem 0 .75rem;
  border-top: 1px solid rgba(223,178,98,.18);
  background: rgba(0,0,0,.10);
}

.footerGrid { display: grid; gap: 1rem; }

@media (min-width: 900px) {
  .footerGrid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

.footerBrand { margin: 0; font-weight: 950; color: var(--gold); }

.footerSocial { display: flex; justify-content: flex-start; }
.footerBottom { margin-top: .75rem; padding-top: .75rem; border-top: 1px dashed rgba(223,178,98,.22); }

@media (max-width: 820px) {
  .desktopNav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .siteLogo { max-height: 68px; }
}

.socialIcons,
.infoSocials {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
}

.socialIcon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(223,178,98,.22);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}

.socialIcon svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.90);
}

.socialIcon:hover {
  background: var(--gold2);
  border-color: rgba(223,178,98,.35);
}

.socialIcon:hover svg {
  fill: var(--gold);
}

.socialIcon:focus-visible {
  outline: 3px solid rgba(223,178,98,.45);
  outline-offset: 4px;
}

@media (min-width: 821px) {
  .mobileNav,
  .overlay {
    display: none !important;
  }
}

main { flex: 1; }

.mobileSocials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.center { text-align: center; }

.floatingBookBtn {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(32px);
  z-index: 60;
  padding: 1.05rem 2rem;
  border-radius: 9999px;
  font-weight: 950;
  font-size: 1.09rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(223,178,98,.97), rgba(223,178,98,.78));
  color: #140e0e;
  box-shadow: 0 18px 48px -6px rgba(0,0,0,.52),
              inset 0 -3px 10px rgba(255,255,255,.22);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all .42s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floatingBookBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floatingBookBtn:active {
  transform: translateX(-50%) translateY(0) scale(0.965);
  box-shadow: 0 10px 26px -4px rgba(0,0,0,.45);
}

@media (min-width: 821px) {
  .floatingBookBtn { display: none; }
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.filter-btn {
  padding: .68rem 1.4rem;
  border-radius: 999px;
  font-weight: 850;
  font-size: .97rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(223,178,98,.32);
  color: var(--text);
  cursor: pointer;
  transition: all .22s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  background: var(--gold2);
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c1414;
  box-shadow: 0 4px 12px rgba(223,178,98,.25);
}