:root {
  --ink: #1d252c;
  --slate: #44515b;
  --muted: #6b747c;
  --gold: #d0ad57;
  --gold-dark: #a98532;
  --cream: #f7f3ea;
  --paper: #ffffff;
  --line: #e5e0d5;
  --psh-red: #be202e;
  --shadow: 0 18px 50px rgba(19, 25, 30, .13);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 23, 27, .96);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 82px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 124px; height: auto; }
.nav-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  margin-left: auto;
}
.site-nav a {
  color: #f8f8f8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }
.book-link {
  padding: 11px 16px;
  color: #1c2226 !important;
  background: var(--gold);
  border-radius: 5px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.lang-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  min-height: 30px;
  padding: 0 6px;
  color: #cdd2d5;
  border-radius: 5px;
  font-size: 11px;
}
.lang-switch a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #1a2024;
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 14, .83) 0%, rgba(8, 12, 14, .58) 48%, rgba(8, 12, 14, .22) 100%),
    linear-gradient(0deg, rgba(8, 12, 14, .35), transparent 44%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 90px 24px 188px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  letter-spacing: -.018em;
}
h1 { max-width: 780px; font-size: clamp(42px, 6.1vw, 72px); }
.hero-copy {
  max-width: 660px;
  margin: 24px 0 30px;
  color: #f1f2f3;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.button:hover { background: #e0c16f; transform: translateY(-1px); }
.button-outline { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.72); }
.button-outline:hover { color: var(--ink); background: #fff; border-color: #fff; }

.booking-shell {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  padding: 0 24px;
}
.psh-booking-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  font-family: Arial, sans-serif;
}
.psh-booking-field { display: flex; flex-direction: column; gap: 6px; }
.psh-booking-form label { color: #333; font-size: 13px; font-weight: 700; }
.psh-booking-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  color: #222;
  background: #fff;
  font: inherit;
}
.psh-booking-form button {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--psh-red);
  color: #fff;
  font: 700 15px Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.psh-booking-form button:hover { background: #9f1925; }
.psh-booking-form input:focus-visible,
.psh-booking-form button:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid #f3cf73;
  outline-offset: 3px;
}

.trust-bar {
  max-width: 1060px;
  margin: 104px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item {
  padding: 19px 16px;
  text-align: center;
  background: var(--cream);
  border-top: 2px solid var(--gold);
}
.trust-item strong { display: block; font-family: Georgia, serif; font-size: 23px; }
.trust-item span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 90px 24px; }
.section-soft { background: var(--cream); }
.section-dark { color: #fff; background: var(--ink); }
.container { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(34px, 4vw, 50px); }
.section-lead { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-dark .section-lead { color: #c7cdd1; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split-copy p { color: var(--muted); }
.split-copy .button { margin-top: 10px; }
.image-frame {
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-frame img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(22, 29, 34, .08);
}
.card img { width: 100%; height: 225px; object-fit: cover; }
.card-body { padding: 23px; }
.card h3 { font-size: 25px; }
.card p { margin: 12px 0 16px; color: var(--muted); font-size: 14px; }
.text-link { color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  padding: 28px;
  border: 1px solid rgba(208, 173, 87, .28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.feature strong { display: block; margin-bottom: 8px; color: var(--gold); font-family: Georgia, serif; font-size: 23px; }
.feature p { margin: 0; color: #c7cdd1; font-size: 14px; }

.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.venue {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
}
.venue img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.venue-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 28px 28px;
  color: #fff;
  background: linear-gradient(0deg, rgba(11,15,17,.9), transparent);
}
.venue h3 { font-size: 31px; }
.venue p { margin: 8px 0 0; color: #e1e4e6; }

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-copy { padding: 46px; }
.contact-copy address { margin-top: 20px; color: var(--muted); font-style: normal; }
.contact-copy a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 4px; }
.contact-photo { min-height: 420px; }
.contact-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 750; }
.faq-list p { color: var(--muted); }

.site-footer { padding: 54px 24px 26px; color: #c4c9cc; background: #12171a; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer-brand img:first-child { width: 146px; }
.footer-brand p { max-width: 420px; font-size: 13px; }
.psh-mark { width: 180px; margin-top: 18px; }
.footer-col h2 { margin-bottom: 14px; color: #fff; font-family: inherit; font-size: 13px; letter-spacing: .11em; text-transform: uppercase; }
.footer-col a { display: block; margin: 7px 0; color: #c4c9cc; text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1180px; margin: 38px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: #c4c9cc; }

.policy-page { background: var(--cream); }
.policy-header { padding: 70px 24px; color: #fff; background: var(--ink); }
.policy-header .container { max-width: 920px; }
.policy-header h1 { font-size: clamp(38px, 5vw, 58px); }
.policy-header p { color: #c7cdd1; }
.policy-content { max-width: 920px; margin: 0 auto; padding: 70px 24px 90px; background: #fff; }
.policy-content h2 { margin-top: 40px; font-size: 27px; }
.policy-content h3 { margin-top: 26px; font-size: 20px; }
.policy-content p, .policy-content li { color: #4f5961; }
.policy-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.policy-content th, .policy-content td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 22px 24px 28px;
    background: #12171a;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav[data-open="true"] { display: flex; }
  .lang-switch { padding: 12px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .psh-booking-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psh-booking-form button { grid-column: 1 / -1; }
  .hero { min-height: 790px; }
  .hero-content { padding-bottom: 290px; }
  .trust-bar { margin-top: 180px; grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse, .contact-panel { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 72px; padding: 8px 18px; }
  .brand img { width: 106px; }
  .hero { min-height: 960px; align-items: flex-start; }
  .hero-content { padding: 70px 20px 460px; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,12,14,.84), rgba(8,12,14,.42)); }
  .booking-shell { padding: 0 14px; transform: translateY(42%); }
  .psh-booking-form { grid-template-columns: 1fr; }
  .psh-booking-form button { grid-column: auto; }
  .trust-bar { margin-top: 235px; padding: 0 14px; grid-template-columns: 1fr 1fr; }
  .trust-item strong { font-size: 20px; }
  .section { padding: 68px 18px; }
  .card-grid, .venue-grid { grid-template-columns: 1fr; }
  .image-frame, .image-frame img { min-height: 340px; }
  .contact-copy { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
