:root {
  --ink: #0b1620;
  --navy: #102532;
  --navy-soft: #193746;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --gold: #bf934d;
  --gold-light: #e4c98c;
  --muted: #59666e;
  --line: rgba(16, 37, 50, .14);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(8, 22, 31, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  color: #fff; background: rgba(11, 28, 38, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(228,201,140,.65); border-radius: 50%; color: var(--gold-light);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-copy { line-height: 1.05; letter-spacing: .12em; text-transform: uppercase; font-size: .73rem; }
.brand-copy strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.08rem; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .86rem; }
.nav-links a { color: rgba(255,255,255,.78); transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff; border-radius: 50%; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 19px; height: 1px; margin: 5px auto; background: currentColor;
}

.hero { position: relative; min-height: 690px; display: grid; align-items: end; color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,29,.94) 0%, rgba(7,20,29,.75) 44%, rgba(7,20,29,.17) 78%),
    linear-gradient(0deg, rgba(7,20,29,.7), transparent 45%),
    url("assets/pest-vip-hall-main.webp") center/cover;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 120px 0 92px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #75521f; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.hero .eyebrow, .section-dark .eyebrow, .cta .eyebrow, .page-hero .eyebrow { color: var(--gold-light); }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; }
h1 { margin-top: 22px; font-size: clamp(3.25rem, 7.5vw, 6.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
.hero p { max-width: 590px; margin: 26px 0 34px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; border: 1px solid var(--gold); border-radius: 999px; cursor: pointer;
  color: var(--ink); background: var(--gold-light); font-weight: 700; font-size: .84rem;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #efd79f; }
.btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.08); }

.section { padding: 110px 0; }
.section-alt { background: var(--cream); }
.section-dark { color: #fff; background: var(--navy); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 70px; margin-bottom: 52px; }
.section-head p { margin: 0; color: var(--muted); max-width: 620px; }
.section-dark .section-head p { color: rgba(255,255,255,.65); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.intro-copy p { color: var(--muted); font-size: 1.05rem; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { min-height: 150px; padding: 28px; background: #fff; }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 2rem; }
.stat span { color: var(--muted); font-size: .85rem; }

.gallery { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 250px 250px; gap: 18px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption {
  position: absolute; inset: auto 0 0; padding: 30px 22px 18px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72)); font-size: .8rem;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; color: #75521f; background: var(--cream); font-family: Georgia, serif; font-size: 1.3rem; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.location { padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.location .label { color: var(--gold-light); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.location h3 { margin: 10px 0 25px; font-size: 1.8rem; }
.info-list { display: grid; gap: 9px; color: rgba(255,255,255,.68); font-size: .9rem; }
.info-list a:hover { color: var(--gold-light); }

.accordion { max-width: 850px; margin: 50px auto 0; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button {
  width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0;
  border: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; font-weight: 700;
}
.accordion-button span:last-child { color: var(--gold); font-size: 1.4rem; transition: transform .25s ease; }
.accordion-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { margin: 0 0 24px; color: var(--muted); }
.accordion-button[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }

.cta { padding: 90px 0; color: #fff; background: var(--navy-soft); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta p { margin: 16px 0 0; color: rgba(255,255,255,.65); }

.page-hero { padding: 100px 0 80px; color: #fff; background: var(--navy); }
.page-hero h1 { max-width: 800px; font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p { max-width: 690px; margin: 25px 0 0; color: rgba(255,255,255,.68); }
.prose { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.prose h2 { margin: 60px 0 18px; font-size: 2rem; }
.prose h3 { margin: 34px 0 12px; }
.prose p, .prose li { color: #4e5c64; }
.prose a { color: #946b2d; text-decoration: underline; }
.prose .updated { padding-bottom: 24px; border-bottom: 1px solid var(--line); font-size: .84rem; }
.job-list { display: grid; gap: 14px; margin-top: 45px; }
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.job small { color: var(--muted); }
.text-link { color: #8d6429; font-weight: 700; white-space: nowrap; }

.site-footer { color: rgba(255,255,255,.7); background: #07131b; }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; }
.footer-copy { margin-top: 22px; max-width: 380px; font-size: .88rem; }
.footer-title { margin-bottom: 18px; color: #fff; font-weight: 700; font-size: .85rem; }
.footer-links { display: grid; gap: 10px; font-size: .84rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem;
}

.age-gate {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px;
  background: rgba(4, 12, 17, .94); backdrop-filter: blur(10px);
}
.age-gate[hidden] { display: none; }
.age-dialog {
  width: min(100%, 520px); padding: 48px; border: 1px solid rgba(228,201,140,.32);
  border-radius: 24px; color: #fff; background: var(--navy); box-shadow: 0 30px 100px #000;
  text-align: center;
}
.age-symbol { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 25px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: 2rem; }
.age-dialog h2 { font-size: 2.35rem; }
.age-dialog p { color: rgba(255,255,255,.65); }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.age-actions .btn-outline { border: 1px solid rgba(255,255,255,.3); }
.age-note { display: block; margin-top: 20px; color: rgba(255,255,255,.58); font-size: .72rem; }

.cookie-banner {
  position: fixed; z-index: 100; right: 20px; bottom: 20px; width: min(calc(100% - 40px), 430px);
  padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0 0 16px; color: var(--muted); font-size: .83rem; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { min-height: 42px; padding: 0 16px; }
.cookie-actions .secondary { border-color: var(--line); background: transparent; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; display: none; padding: 24px 20px 30px;
    flex-direction: column; align-items: flex-start; background: var(--navy);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 620px; }
  .section, .cta { padding: 78px 0; }
  .section-head, .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 210px; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .card-icon { margin-bottom: 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / 3; }
}

@media (max-width: 620px) {
  .container, .prose { width: min(calc(100% - 28px), var(--max)); }
  .brand-copy span { display: none; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(0deg, rgba(7,20,29,.96), rgba(7,20,29,.25)), url("assets/pest-vip-hall-main.webp") 58% center/cover; }
  .hero-content { padding: 170px 0 54px; }
  h1 { font-size: 3.35rem; }
  .actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(n) { border: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .gallery figure:first-child { grid-column: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .cta-inner { display: block; }
  .cta .btn { width: 100%; margin-top: 28px; }
  .page-hero { padding: 72px 0 58px; }
  .job { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .age-dialog { padding: 34px 22px; }
  .age-actions { grid-template-columns: 1fr; }
}

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