/* Apex Pubs & Hotels — stylesheet */
:root {
  --bark: #2A1F17; --bark-2: #3A2B20; --green: #2F4A2C; --green-2: #3E5E39;
  --rust: #B5542B; --rust-2: #8F3F1E; --ochre: #D9A441; --sand: #F4E9D3; --paper: #FBF6EA; --white: #fff;
  --ink: #2A1F17; --ink-2: #5C4A3C; --line: #E3D5B8;
  --slab: 'Zilla Slab', Rockwell, Georgia, serif; --sans: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.65; color: var(--ink); background: var(--paper); overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--slab); font-weight: 700; line-height: 1.1; margin: 0 0 .45em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1.05em; }
a { color: var(--rust-2); }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -9999px; background: var(--ochre); color: var(--bark); padding: 10px 16px; z-index: 2000; font-weight: 700; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--bark); border-bottom: 3px solid var(--ochre); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--sand); text-decoration: none; font-family: var(--slab); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.brand img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav a { color: var(--sand); text-decoration: none; font-weight: 600; font-size: .95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--ochre); color: var(--ochre); }
.nav .cta a { background: var(--rust); border: 0; color: var(--white); padding: 11px 20px; border-radius: 4px; }
.nav .cta a:hover { background: var(--rust-2); color: var(--white); }
.nav-toggle { display: none; background: none; border: 2px solid var(--ochre); color: var(--sand); width: 46px; height: 44px; font-size: 1.3rem; border-radius: 4px; cursor: pointer; }

.btn { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 1rem; text-decoration: none; padding: 14px 26px; border-radius: 4px; border: 2px solid transparent; cursor: pointer; transition: background .2s, transform .2s; }
.btn-rust { background: var(--rust); color: var(--white); } .btn-rust:hover { background: var(--rust-2); transform: translateY(-2px); }
.btn-line { border-color: var(--sand); color: var(--sand); } .btn-line:hover { background: rgba(244,233,211,.14); }
.btn-green { background: var(--green); color: var(--white); } .btn-green:hover { background: var(--green-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero { position: relative; color: var(--sand); background: linear-gradient(#3B1F1A 0%, #8A3B22 38%, #D9853B 66%, #F0B95B 82%); overflow: hidden; }
.hero .scene { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; min-height: 46%; }
.hero .wrap { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 300px; }
.hero h1 { max-width: 14ch; text-shadow: 0 2px 18px rgba(42,31,23,.45); }
.hero p.lede { font-size: 1.22rem; max-width: 56ch; text-shadow: 0 1px 10px rgba(42,31,23,.5); }
.kicker { font-family: var(--slab); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; color: var(--ochre); margin-bottom: 14px; }
.hero .kicker { color: #FFD98A; }
.page-hero .wrap { padding-top: 64px; padding-bottom: 240px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.page-hero .badge { background: var(--paper); padding: 16px; border-radius: 8px; box-shadow: 0 12px 34px rgba(42,31,23,.4); width: 250px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }

section { padding: 84px 0; }
.alt { background: var(--sand); }
.dark { background: var(--bark); color: var(--sand); }
.dark h2, .dark h3 { color: var(--white); }
.green { background: var(--green); color: var(--sand); }
.green h2, .green h3 { color: var(--white); }
.head { max-width: 720px; margin-bottom: 44px; }
.head p { color: var(--ink-2); font-size: 1.08rem; }
.dark .head p, .green .head p { color: rgba(244,233,211,.85); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid { display: grid; gap: 22px; } .g2 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(3, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); }

.venue { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; box-shadow: 0 6px 22px rgba(42,31,23,.07); transition: transform .25s, box-shadow .25s; }
.venue:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(42,31,23,.16); }
.venue .art { background: var(--sand); padding: 28px; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.venue .art img { width: 260px; }
.venue .body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.venue .where { font-weight: 700; color: var(--rust-2); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.venue .more { margin-top: auto; font-weight: 700; color: var(--green); }
.chips { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-size: .82rem; font-weight: 600; background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; color: var(--ink-2); }

.tile { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px 26px; border-top: 4px solid var(--rust); }
.alt .tile { background: var(--paper); }
.dark .tile, .green .tile { background: rgba(255,255,255,.06); border-color: rgba(244,233,211,.2); border-top-color: var(--ochre); }
.tile p { color: var(--ink-2); margin: 0; font-size: .98rem; }
.dark .tile p, .green .tile p { color: rgba(244,233,211,.85); }
.tile .ico { font-size: 1.9rem; margin-bottom: 10px; }

.list { list-style: none; padding: 0; margin: 0; }
.list li { padding: 11px 0 11px 30px; position: relative; border-bottom: 1px dashed var(--line); }
.list li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 14px; height: 8px; border-left: 3px solid var(--rust); border-bottom: 3px solid var(--rust); transform: rotate(-45deg); }
.dark .list li, .green .list li { border-color: rgba(244,233,211,.22); }
.dark .list li::before, .green .list li::before { border-color: var(--ochre); }

.facts { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 30px; border-left: 5px solid var(--green); }
.facts dl { margin: 0; }
.facts dt { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rust-2); margin-top: 16px; }
.facts dt:first-child { margin-top: 0; }
.facts dd { margin: 3px 0 0; }
.facts a { font-weight: 700; }

.host { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 30px 20px; }
.host .av { width: 78px; height: 78px; border-radius: 50%; background: var(--green); color: var(--sand); display: grid; place-items: center; font-family: var(--slab); font-size: 2rem; font-weight: 700; margin: 0 auto 14px; border: 3px solid var(--ochre); }
.host h3 { margin-bottom: 2px; } .host span { color: var(--ink-2); font-size: .95rem; }

.timeline { list-style: none; margin: 0; padding: 0 0 0 26px; border-left: 3px solid var(--ochre); }
.timeline li { position: relative; padding: 0 0 26px 22px; }
.timeline li::before { content: ""; position: absolute; left: -35px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--rust); border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--ochre); }
.timeline b { font-family: var(--slab); font-size: 1.25rem; display: block; color: var(--rust-2); }
.dark .timeline b { color: var(--ochre); } .dark .timeline li::before { border-color: var(--bark); }

.band { background: var(--rust); color: var(--white); padding: 64px 0; text-align: center; }
.band h2 { color: var(--white); } .band p { max-width: 60ch; margin: 0 auto; font-size: 1.1rem; }
.band .btn-row { justify-content: center; }
.band .btn-line { border-color: #fff; color: #fff; }
.band .btn-dark { background: var(--bark); color: var(--white); } .band .btn-dark:hover { background: var(--bark-2); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid #CDBB95; border-radius: 4px; background: var(--paper); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(181,84,43,.2); }
.field textarea { min-height: 130px; resize: vertical; }
.note { font-size: .9rem; color: var(--ink-2); }
.msg { display: none; padding: 16px 20px; border-radius: 6px; background: #EAF3E6; border-left: 5px solid var(--green); margin-bottom: 20px; }
.msg.show { display: block; }

.site-footer { background: var(--bark); color: rgba(244,233,211,.78); padding: 64px 0 0; font-size: .96rem; }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.site-footer img { width: 120px; margin-bottom: 14px; }
.site-footer h4 { font-family: var(--slab); color: var(--ochre); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; } .site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--sand); text-decoration: none; } .site-footer a:hover { color: var(--ochre); }
.fbase { border-top: 1px solid rgba(244,233,211,.15); padding: 20px 0; font-size: .84rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; color: rgba(244,233,211,.6); }

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s, transform .7s; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .js .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 1000px) { .g4 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } .split { grid-template-columns: 1fr; gap: 40px; } .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bark); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 22px; border-bottom: 3px solid var(--ochre); }
  .nav.open { display: flex; }
  .nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(244,233,211,.12); }
  .nav .cta a { text-align: center; margin-top: 14px; }
  .brand span { display: none; }
  .page-hero .wrap { grid-template-columns: 1fr; } .page-hero .badge { width: 200px; order: -1; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .g2, .g3, .g4, .row, .fgrid { grid-template-columns: 1fr; }
  .hero .wrap { padding-top: 56px; padding-bottom: 190px; } .page-hero .wrap { padding-bottom: 170px; }
  .form { padding: 26px 20px; }
}
@media print { .site-header, .band, .site-footer { display: none; } }
