
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--cream: #FAF6EE;
--warm-white: #FFFCF5;
--sand: #F0E8D8;
--navy: #1B2A4A;
--navy-light: #2A3D66;
--gold: #C8A94E;
--gold-soft: #D4B86A;
--gold-text: #7A6420;
--gold-muted: rgba(200, 169, 78, 0.15);
--terra: #8B5E3C;
--sage: #5B7B5E;
--coral: #C0675A;
--coral-text: #A94C3D;
--slate: #5A6577;
--ink: #2C2C2C;
--text: #3D3D3D;
--text-light: #666666;
--border: #E2D9C8;
--border-light: #EDE6D8;
--shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
--shadow-md: 0 4px 12px rgba(27, 42, 74, 0.08);
--shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.12);
--radius: 8px;
--radius-lg: 12px;
--radius-xl: 16px;
--radius-pill: 100px;
--gold-line: rgba(200, 169, 78, 0.45);
--tabbar-h: 60px;
--nav-h: 73px;
--shell: 1200px;
}
html { scroll-behavior: smooth; }
.scroll-anchor { display: block; height: 0; scroll-margin-top: calc(var(--nav-h) + 8px); }
@font-face {
font-family: 'DM Sans Fallback';
src: local('Arial');
size-adjust: 100.06%;
ascent-override: 92.46%;
descent-override: 24.14%;
line-gap-override: 0%;
}
@font-face {
font-family: 'Playfair Fallback';
src: local('Times New Roman');
size-adjust: 111.5%;
ascent-override: 96.6%;
descent-override: 23.1%;
line-gap-override: 0%;
}
body {
font-family: 'DM Sans', 'DM Sans Fallback', -apple-system, sans-serif;
background: var(--cream);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
.site-header {
background: var(--sand) var(--hero-image, ) right center/cover no-repeat;
color: var(--ink);
min-height: 360px;
padding: 44px 24px 48px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
}
.site-header::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
var(--cream) 0%,
rgba(250, 246, 238, 0.92) 26%,
rgba(250, 246, 238, 0.35) 52%,
rgba(250, 246, 238, 0) 72%
);
}
.site-hero-inner {
position: relative;
width: 100%;
max-width: var(--shell);
margin: 0 auto;
}
.hero-heading {
margin: 0;
max-width: 15ch;
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-weight: 600;
font-size: clamp(2rem, 6.4vw, 3.4rem);
line-height: 1.06;
letter-spacing: -0.01em;
color: var(--ink);
}
.hero-sub {
margin: 14px 0 0;
max-width: 34ch;
font-size: 0.98rem;
line-height: 1.5;
color: var(--text);
}
.header-cta-btn {
display: inline-block;
padding: 9px 12px;
border: none;
background: none;
color: var(--text);
font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
font-size: 0.86rem;
font-weight: 500;
letter-spacing: 0.01em;
text-transform: none;
text-decoration: none;
border-radius: var(--radius);
border-bottom: 2px solid transparent;
transition: color 0.2s, border-color 0.2s;
cursor: pointer;
}
.header-cta-btn:hover { color: var(--ink); }
.header-cta-btn.active {
color: var(--ink);
font-weight: 600;
border-bottom-color: var(--gold);
border-radius: 0;
}
.site-nav {
background: var(--cream);
border-bottom: 1px solid var(--border);
padding: 10px 24px;
position: sticky;
top: 0;
z-index: 200;
}
.site-nav-inner {
max-width: var(--shell);
margin: 0 auto;
display: flex;
align-items: center;
gap: 12px;
}
.nav-logo-link {
display: flex;
align-items: center;
gap: 10px;
min-width: 0;
text-decoration: none;
flex-shrink: 1;
}
.nav-logo {
width: auto;
height: 52px;
max-width: 240px;
object-fit: contain;
}
.nav-links {
display: flex;
gap: 8px;
margin-left: auto;
flex-wrap: wrap;
}
.nav-hamburger {
display: none;
margin-left: auto;
background: none;
border: none;
cursor: pointer;
padding: 8px;
min-width: 44px;
min-height: 44px;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
}
.nav-hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--navy);
border-radius: 2px;
transition: transform 0.25s, opacity 0.25s;
}
.site-nav.nav-open .nav-hamburger span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.site-nav.nav-open .nav-hamburger span:nth-child(2) {
opacity: 0;
}
.site-nav.nav-open .nav-hamburger span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
.nav-hamburger { display: flex; }
.nav-links {
display: none;
flex-direction: column;
width: 100%;
gap: 0;
margin-left: 0;
}
.site-nav.nav-open .nav-links {
display: flex;
}
.site-nav-inner {
flex-wrap: wrap;
}
.nav-links {
margin-top: 10px;
border-top: 1px solid var(--border);
}
.nav-links .header-cta-btn {
width: 100%;
text-align: center;
border-radius: 0;
border-bottom: 1px solid var(--border-light);
padding: 14px 16px;
font-size: 0.95rem;
}
.nav-links .header-cta-btn.active {
color: var(--terra);
border-bottom-color: var(--border-light);
}
}
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown-toggle {
display: inline-flex;
align-items: center;
gap: 5px;
cursor: pointer;
}
.nav-caret { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; flex-direction: column; }
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
@media (min-width: 901px) {
.nav-dropdown-menu {
position: absolute;
top: calc(100% + 6px);
left: 0;
min-width: 210px;
background: var(--warm-white);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow-md);
padding: 6px;
z-index: 250;
}
.nav-dropdown-link {
display: block;
padding: 9px 12px;
border-radius: 6px;
color: var(--navy);
font-size: 0.85rem;
text-decoration: none;
white-space: nowrap;
}
.nav-dropdown-link:hover { background: var(--sand); color: var(--terra); }
}
@media (max-width: 900px) {
.nav-dropdown { display: block; width: 100%; }
.nav-dropdown-toggle { width: 100%; justify-content: center; }
.nav-dropdown-link {
display: block;
width: 100%;
text-align: center;
padding: 12px 16px;
color: var(--navy);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
text-decoration: none;
background: var(--warm-white);
border-top: 1px dashed var(--border);
}
.nav-dropdown-link:hover { background: var(--sand); }
}
.header-home-link {
color: inherit;
text-decoration: none;
}
.controls {
background: var(--warm-white);
border-bottom: 1px solid var(--border);
padding: 20px 24px;
position: sticky;
top: var(--nav-h);
z-index: 100;
box-shadow: var(--shadow-sm);
}
.controls-inner {
max-width: var(--shell);
margin: 0 auto;
}
.controls-row {
display: flex;
gap: 12px;
align-items: center;
flex-wrap: wrap;
}
.search-wrap {
position: relative;
flex: 1;
min-width: 200px;
}
.search-wrap svg {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
color: var(--text-light);
pointer-events: none;
}
.search-input {
width: 100%;
padding: 10px 14px 10px 40px;
border: 1px solid var(--border);
border-radius: var(--radius);
font-family: inherit;
font-size: 1rem;
background: var(--cream);
color: var(--ink);
transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
outline: none;
border-color: var(--gold);
box-shadow: 0 0 0 3px var(--gold-muted);
}
.search-input::placeholder { color: var(--text-light); }
.select-wrap {
position: relative;
}
.select-wrap select {
appearance: none;
padding: 10px 36px 10px 14px;
border: 1px solid var(--border);
border-radius: var(--radius);
font-family: inherit;
font-size: 1rem;
background: var(--cream);
color: var(--ink);
cursor: pointer;
transition: border-color 0.2s;
min-width: 160px;
}
.select-wrap select:focus {
outline: none;
border-color: var(--gold);
box-shadow: 0 0 0 3px var(--gold-muted);
}
.select-wrap::after {
content: '';
position: absolute;
right: 14px;
top: 50%;
transform: translateY(-50%);
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid var(--text-light);
pointer-events: none;
}
.toggles-scroll-wrap {
position: relative;
margin-top: 12px;
}
.toggles-arrow {
display: none;
}
.toggles-row {
display: flex;
gap: 8px;
align-items: center;
flex-wrap: wrap;
}
.toggle-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 12px 16px;
border: 1px solid var(--gold-line);
border-radius: var(--radius-pill);
font-family: inherit;
font-size: 0.82rem;
font-weight: 500;
background: var(--warm-white);
color: var(--text);
cursor: pointer;
transition: all 0.2s;
-webkit-user-select: none;
user-select: none;
white-space: nowrap;
}
@media (hover: hover) {
.toggle-btn:hover {
border-color: var(--gold);
color: var(--text);
}
}
.toggle-btn.active {
background: var(--terra);
color: #fff;
border-color: var(--terra);
}
.toggle-btn .icon {
font-size: 1rem;
line-height: 1;
}
.month-pager-btn,
.day-pager-btn {
display: none;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
flex: 0 0 auto;
border: 1px solid var(--border);
border-radius: 100px;
background: var(--warm-white);
color: var(--text-light);
font-size: 1.1rem;
cursor: pointer;
}
.month-pager-btn.visible,
.day-pager-btn {
display: inline-flex;
}
.month-pager-btn:disabled,
.day-pager-btn:disabled {
opacity: 0.4;
cursor: default;
}
.bottom-nav {
display: flex;
justify-content: center;
padding: 24px 0;
}
.bottom-nav-group {
display: none;
gap: 10px;
}
.bottom-nav-group.visible {
display: flex;
}
.bottom-nav-btn {
padding: 10px 18px;
border: 1px solid var(--border);
border-radius: 100px;
background: var(--warm-white);
color: var(--text);
font-family: inherit;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
}
.bottom-nav-btn:disabled {
opacity: 0.4;
cursor: default;
}
.date-scroll-row {
display: flex;
align-items: center;
gap: 8px;
}
.date-scroll-row .date-scroll {
flex: 1;
min-width: 0;
}
.near-me-btn {
border-color: var(--navy-light);
color: var(--navy);
}
.near-me-btn.active {
background: var(--sage);
border-color: var(--sage);
color: #fff;
}
.results-bar {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px;
padding-top: 10px;
border-top: 1px solid var(--border-light);
}
.results-count {
font-size: 0.82rem;
color: var(--text-light);
}
.results-count strong {
color: var(--navy);
font-weight: 600;
}
.clear-btn {
font-family: inherit;
font-size: 0.78rem;
color: var(--coral-text);
background: none;
border: none;
cursor: pointer;
text-decoration: underline;
text-underline-offset: 2px;
display: none;
}
.clear-btn.visible { display: inline; }
.main {
max-width: var(--shell);
margin: 0 auto;
padding: 24px 24px 80px;
}
.brewery-list {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
align-items: start;
min-height: var(--brew-reserve-d, 0);
}
@media (min-width: 640px) { .brewery-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .brewery-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) {
.card-body,
.ad-body { min-height: 160px; }
}
@media (max-width: 639px) {
.card-badges,
.ad-actions { height: auto; flex-wrap: wrap; }
}
@media (max-width: 768px) {
.brewery-list { min-height: var(--brew-reserve-m, 0); }
}
.brewery-card,
.ad-inline {
position: relative;
display: flex;
flex-direction: column;
background: var(--warm-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-xl);
padding: 8px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
content-visibility: auto;
contain-intrinsic-size: auto 420px;
}
@media (hover: hover) {
.brewery-card:hover,
.ad-inline:hover {
box-shadow: var(--shadow-md);
border-color: var(--gold);
transform: translateY(-2px);
}
}
.brewery-card.permanently-closed {
opacity: 0.72;
border-color: var(--border);
}
@media (hover: hover) {
.brewery-card.permanently-closed:hover {
border-color: var(--coral);
box-shadow: var(--shadow-sm);
}
}
.closed-banner {
background: #A84E41;
color: #fff;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
text-align: center;
padding: 5px 12px;
position: absolute;
top: 8px;
left: 8px;
right: 8px;
z-index: 2;
border-radius: 10px 10px 0 0;
}
.card-header {
display: flex;
flex-direction: column;
flex: 1;
cursor: pointer;
-webkit-user-select: none;
user-select: none;
}
.card-photo,
.ad-photo {
position: relative;
border-radius: 10px;
aspect-ratio: 16 / 9;
overflow: hidden;
background: linear-gradient(140deg, var(--sand) 0%, rgba(200, 169, 78, 0.32) 100%);
display: flex;
align-items: center;
justify-content: center;
}
.card-photo img,
.ad-photo img,
.ad-photo a {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.ad-photo img {
object-fit: contain;
padding: 10px;
}
.tile-initials {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: clamp(1.8rem, 8vw, 2.6rem);
font-weight: 600;
letter-spacing: 0.06em;
color: var(--terra);
opacity: 0.7;
}
.card-body,
.ad-body {
display: flex;
flex-direction: column;
flex: 1;
min-width: 0;
gap: 12px;
padding: 16px 14px 14px;
}
.card-title-row,
.ad-title-row {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
}
.ad-meta {
display: flex;
align-items: center;
flex-wrap: nowrap;
gap: 4px 16px;
font-size: 0.88rem;
}
.card-meta-icon { flex-shrink: 0; }
.card-name,
.ad-inline .ad-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.22rem;
font-weight: 600;
line-height: 1.2;
color: var(--ink);
min-width: 0;
min-height: 2.4em;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-name a {
color: inherit;
text-decoration: none;
}
.card-name a:hover {
color: var(--terra);
text-decoration: underline;
}
.card-location {
display: flex;
align-items: center;
gap: 6px;
color: var(--terra);
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.09em;
text-transform: uppercase;
min-height: 1.2rem;
min-width: 0;
}
.card-location-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card-badges,
.ad-actions {
display: flex;
gap: 7px;
align-content: flex-start;
height: 34px;
overflow: hidden;
margin-top: auto;
}
.badge {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 6px 13px;
border-radius: var(--radius-pill);
font-size: 0.8rem;
font-weight: 500;
line-height: 1.25;
letter-spacing: 0.01em;
}
.badge[hidden] { display: none; }
.badge-more {
align-self: center;
color: var(--text-light);
font-size: 0.8rem;
font-variant-numeric: tabular-nums;
}
.badge-dog { background: #E8F0E8; color: #3D6B3D; }
.badge-kid { background: #E8ECF4; color: #3D5480; }
.badge-outdoor { background: #FFF3E0; color: #6E5630; }
.badge-food { background: #FCE8E6; color: #8B4A42; }
.card-hours-brief {
position: absolute;
left: 10px;
bottom: 10px;
display: inline-flex;
align-items: center;
gap: 2px;
max-width: calc(100% - 20px);
padding: 6px 12px;
border-radius: var(--radius-pill);
background: rgba(28, 24, 18, 0.78);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
color: #FBF7EE;
font-size: 0.78rem;
font-weight: 500;
line-height: 1.4;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.expand-arrow {
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s, background 0.2s, border-color 0.2s;
flex-shrink: 0;
}
.expand-arrow svg {
width: 14px;
height: 14px;
color: var(--text-light);
transition: color 0.2s;
}
.brewery-card:hover .expand-arrow {
border-color: var(--gold);
}
.brewery-card:hover .expand-arrow svg {
color: var(--gold);
}
.brewery-card.open .expand-arrow {
transform: rotate(180deg);
background: var(--terra);
border-color: var(--terra);
}
.brewery-card.open .expand-arrow svg {
color: #fff;
}
.card-detail {
display: grid;
grid-template-rows: 0fr;
overflow: hidden;
transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-detail-inner {
overflow: hidden;
min-height: 0;
padding: 0 10px;
border-top: 0;
}
.brewery-card.open .card-detail {
grid-template-rows: 1fr;
}
.brewery-card.open .card-detail-inner {
padding: 0 10px 16px;
border-top: 1px solid var(--border-light);
}
.detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 16px;
}
.detail-desc {
grid-column: 1 / -1;
font-size: 0.92rem;
line-height: 1.7;
color: var(--text);
}
.detail-photo {
grid-column: 1 / -1;
display: flex;
justify-content: center;
}
.detail-photo img {
width: 100%;
max-width: 320px;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 10px;
border: 1px solid var(--border);
box-shadow: 0 2px 8px rgba(27, 42, 74, 0.08);
display: block;
}
.detail-section h3 {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-light);
margin-bottom: 6px;
font-weight: 600;
}
.detail-section p,
.detail-section a {
font-size: 0.88rem;
color: var(--ink);
line-height: 1.5;
}
.detail-section a {
color: var(--navy-light);
text-decoration: underline;
text-decoration-color: var(--gold-muted);
text-underline-offset: 2px;
transition: text-decoration-color 0.2s;
}
.detail-section a:hover {
text-decoration-color: var(--gold);
}
.detail-links {
grid-column: 1 / -1;
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 4px;
}
.detail-link-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 18px;
border-radius: var(--radius);
font-family: inherit;
font-size: 0.82rem;
font-weight: 500;
text-decoration: none;
transition: all 0.2s;
}
.detail-link-btn.primary {
background: var(--navy);
color: #fff;
}
.detail-link-btn.primary:hover {
background: var(--navy-light);
}
.detail-link-btn.secondary {
background: var(--sand);
color: var(--navy);
}
.detail-link-btn.secondary:hover {
background: var(--border);
}
.empty-state {
text-align: center;
padding: 60px 24px;
color: var(--text-light);
}
.empty-state p {
font-size: 1rem;
margin-bottom: 4px;
}
.events-header {
padding: 24px 24px 0;
background: var(--sand);
text-align: center;
}
.events-brand {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.55rem;
font-weight: 700;
color: var(--navy);
}
.events-brand span { color: var(--gold); }
.events-subtitle {
font-size: 0.82rem;
color: var(--text-light);
margin-top: 4px;
font-weight: 500;
letter-spacing: 0.4px;
text-transform: uppercase;
}
.date-scroll {
display: flex;
gap: 6px;
overflow-x: auto;
padding: 10px 0 12px;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.date-scroll::-webkit-scrollbar { display: none; }
.date-pill {
flex-shrink: 0;
text-align: center;
padding: 7px 13px;
min-height: 44px;
border-radius: var(--radius-pill);
cursor: pointer;
transition: background 0.2s, border-color 0.2s, color 0.2s;
background: var(--warm-white);
border: 1px solid var(--gold-line);
min-width: 50px;
user-select: none;
}
.date-pill:hover { border-color: var(--gold-soft); }
.date-pill.active {
background: var(--terra);
border-color: var(--terra);
color: #fff;
}
.date-pill .day-name {
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.4px;
opacity: 0.7;
}
.date-pill .day-num {
font-size: 1rem;
font-weight: 700;
margin-top: 1px;
}
.date-pill.active .day-name,
.date-pill.active .day-num { color: #fff; opacity: 1; }
.wave-divider {
width: 100%;
line-height: 0;
background: var(--sand);
}
.wave-divider svg {
width: 100%;
height: 32px;
display: block;
}
.wave-divider path { fill: var(--cream); }
.wave-divider path + path { fill: none; stroke: var(--border); }
.featured-event-card {
margin: 0 0 20px;
border-radius: var(--radius-lg);
overflow: hidden;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #3A5080 100%);
color: #fff;
padding: 22px 20px;
position: relative;
box-shadow: 0 4px 20px rgba(27, 42, 74, 0.3);
cursor: pointer;
}
.featured-event-card::before {
content: '';
position: absolute;
top: -30px; right: -30px;
width: 120px; height: 120px;
background: rgba(255,255,255,0.06);
border-radius: 50%;
}
.featured-event-card::after {
content: '';
position: absolute;
bottom: -40px; left: -20px;
width: 160px; height: 160px;
background: rgba(255,255,255,0.04);
border-radius: 50%;
}
.featured-badge {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(200, 169, 78, 0.3);
backdrop-filter: blur(4px);
padding: 5px 12px;
border-radius: 50px;
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
color: var(--gold-soft);
}
.featured-badge svg { width: 12px; height: 12px; }
.featured-event-card h3 {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 6px;
position: relative;
z-index: 1;
}
.featured-event-card .feat-host {
font-size: 0.85rem;
opacity: 0.85;
font-weight: 500;
margin-bottom: 10px;
position: relative;
z-index: 1;
}
.featured-event-card .feat-host a {
color: var(--gold-soft);
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 2px;
}
.featured-event-card .feat-date,
.featured-event-card .feat-time {
font-size: 0.82rem;
font-weight: 600;
opacity: 0.9;
margin-bottom: 8px;
position: relative;
z-index: 1;
}
.featured-event-card .feat-desc {
font-size: 0.85rem;
line-height: 1.5;
opacity: 0.88;
position: relative;
z-index: 1;
}
.featured-event-card .feat-cat {
display: inline-block;
margin-top: 10px;
padding: 3px 10px;
border-radius: 50px;
font-size: 0.7rem;
font-weight: 600;
background: rgba(255,255,255,0.15);
position: relative;
z-index: 1;
}
.featured-event-detail {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
z-index: 1;
}
.featured-event-card.open .featured-event-detail { max-height: 200px; }
.featured-event-detail-inner {
padding-top: 14px;
border-top: 1px solid rgba(255,255,255,0.15);
margin-top: 14px;
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.featured-event-detail-inner a {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 8px 16px;
border-radius: var(--radius);
font-size: 0.82rem;
font-weight: 500;
text-decoration: none;
transition: background 0.2s ease, transform 0.15s ease;
}
.featured-event-detail-inner .feat-event-link {
background: rgba(255,255,255,0.2);
color: #fff;
}
.featured-event-detail-inner .feat-event-link:hover {
background: rgba(255,255,255,0.3);
}
.featured-event-detail-inner .feat-brewery-link {
background: rgba(255,255,255,0.1);
color: #fff;
border: 1px solid rgba(255,255,255,0.3);
}
.featured-event-detail-inner .feat-brewery-link:hover {
background: rgba(255,255,255,0.2);
}
.more-events-heading {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 14px;
padding: 0 4px;
}
.event-card-header.time-block-layout {
grid-template-columns: 64px 1fr auto;
}
.event-time-block {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 64px;
text-align: center;
padding: 10px 6px;
background: var(--sand);
border-radius: var(--radius);
}
.event-time-block .time-hour {
font-size: 1rem;
font-weight: 700;
color: var(--navy);
}
.event-time-block .time-period {
font-size: 0.65rem;
font-weight: 600;
color: var(--text-light);
text-transform: uppercase;
}
.events-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.event-date-group { display: flex; flex-direction: column; gap: 12px; }
.event-date-group + .event-date-group { margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.event-date-group-header { display: flex; align-items: center; gap: 16px; padding: 4px 0; }
.event-date-group-label { display: flex; flex-direction: column; flex-shrink: 0; }
.event-date-group-display { font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.event-date-group-weekday { font-size: 0.78rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.event-date-group-cards { display: flex; flex-direction: column; gap: 12px; }
.event-card {
background: var(--warm-white);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
transition: box-shadow 0.25s, border-color 0.25s;
animation: fadeUp 0.35s ease both;
}
@media (hover: hover) {
.event-card:hover {
box-shadow: var(--shadow-md);
border-color: var(--gold-soft);
}
}
.event-card.featured {
border: 2px solid transparent;
background:
linear-gradient(135deg, var(--warm-white) 0%, rgba(200, 169, 78, 0.04) 100%) padding-box,
linear-gradient(90deg, var(--gold), var(--gold-soft), var(--cream), var(--gold-soft), var(--gold)) border-box;
background-size: 100% 100%, 300% 100%;
animation: fadeUp 0.35s ease both, shimmerBorder 4s linear infinite;
}
@keyframes shimmerBorder {
0%   { background-position: 0 0, 0% 0; }
100% { background-position: 0 0, 300% 0; }
}
.event-card-header {
display: grid;
grid-template-columns: 72px 1fr auto;
align-items: start;
gap: 16px;
padding: 20px 24px;
cursor: pointer;
-webkit-user-select: none;
user-select: none;
}
.event-date-block {
display: flex;
flex-direction: column;
align-items: stretch;
background: var(--warm-white);
border: 1px solid var(--gold-line);
border-radius: var(--radius);
overflow: hidden;
min-width: 64px;
text-align: center;
line-height: 1;
}
.event-card.featured .event-date-block {
border-color: var(--gold);
box-shadow: 0 2px 8px rgba(200, 169, 78, 0.25);
}
.event-date-month {
background: var(--terra);
color: #fff;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
padding: 5px 6px;
}
.event-card.featured .event-date-month { background: var(--gold); color: var(--ink); }
.event-date-day {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.7rem;
font-weight: 600;
line-height: 1;
color: var(--ink);
padding: 7px 6px 3px;
}
.event-date-weekday {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-light);
padding: 0 6px 7px;
}
.event-info { min-width: 0; }
.event-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.15rem;
font-weight: 600;
color: var(--ink);
margin-bottom: 4px;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: nowrap;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.event-card.featured .event-title::after {
content: 'Featured';
font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--gold-text);
background: var(--gold-muted);
padding: 2px 8px;
border-radius: 100px;
}
.event-venue {
font-size: 0.85rem;
color: var(--terra);
font-weight: 500;
margin-bottom: 6px;
}
.event-venue-link {
color: var(--terra);
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 2px;
transition: color 0.2s ease;
}
.event-venue-link:hover {
color: var(--navy);
}
.brewery-link {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 8px 16px;
background: #fff;
color: var(--navy);
border: 1.5px solid var(--navy);
border-radius: var(--radius);
font-size: 0.82rem;
font-weight: 500;
text-decoration: none;
transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.brewery-link:hover {
background: var(--navy);
color: #fff;
transform: translateY(-1px);
}
.event-meta {
display: flex;
gap: 12px;
align-items: center;
flex-wrap: wrap;
}
.event-time {
font-size: 0.82rem;
color: var(--text-light);
}
.event-cost {
font-size: 0.82rem;
color: var(--text-light);
}
.event-cost::before {
content: '';
display: inline-block;
width: 3px;
height: 3px;
background: var(--border);
border-radius: 50%;
vertical-align: middle;
margin-right: 12px;
}
.cat-badge {
display: inline-flex;
align-items: center;
padding: 3px 10px;
border-radius: 100px;
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.01em;
}
.cat-trivia { background: #E8ECF4; color: #3D5480; }
.cat-live_music { background: #F3E8F4; color: #6B3D80; }
.cat-beer_release { background: #FFF3E0; color: #8B6B3C; }
.cat-food_special { background: #FCE8E6; color: #8B4A42; }
.cat-market { background: #E8F0E8; color: #3D6B3D; }
.cat-fundraiser { background: #E8F0F4; color: #3D6480; }
.cat-class { background: #E8F4F0; color: #3D806B; }
.cat-sports { background: #F0E8E8; color: #804A3D; }
.cat-other { background: #ECECEC; color: #555; }
.cat-event { background: #ECECEC; color: #555; }
.event-card-right {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
flex-shrink: 0;
}
.event-detail {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-detail-inner {
padding: 0 24px 24px;
border-top: 1px solid var(--border-light);
}
.event-card.open .event-detail {
max-height: 600px;
}
.event-detail-content {
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 16px;
}
.event-description {
font-size: 0.92rem;
line-height: 1.7;
color: var(--text);
}
.event-detail-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.event-chevron {
display: inline-block;
width: 10px;
height: 10px;
border-right: 2px solid var(--text-light);
border-bottom: 2px solid var(--text-light);
transform: rotate(45deg);
transition: transform 0.3s ease;
margin-top: 4px;
}
.event-card.open .event-chevron {
transform: rotate(-135deg);
}
.event-link {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 8px 16px;
background: var(--navy);
color: #fff;
border-radius: var(--radius);
font-size: 0.82rem;
font-weight: 500;
text-decoration: none;
transition: background 0.2s ease, transform 0.15s ease;
}
.event-link:hover {
background: var(--navy-light);
transform: translateY(-1px);
}
.event-featured-btn { border-color: var(--gold); color: var(--gold-text); }
.event-featured-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
@media (max-width: 600px) {
.events-header { padding: 16px 16px 0; }
.events-brand { font-size: 1.3rem; }
.featured-event-card {
padding: 18px 16px;
}
.featured-event-card h3 { font-size: 1.1rem; }
.event-card-header {
grid-template-columns: 56px 1fr;
gap: 10px;
padding: 14px 16px;
}
.event-card-header.time-block-layout {
grid-template-columns: 52px 1fr;
}
.event-time-block {
width: 52px;
padding: 8px 4px;
}
.event-card-right {
grid-column: 1 / -1;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.event-date-block {
min-width: 48px;
padding: 8px 4px;
}
.event-date-day {
font-size: 1.3rem;
}
.event-detail-inner {
padding: 0 16px 16px;
}
.event-date-group-display { font-size: 1.1rem; }
.event-date-group + .event-date-group { margin-top: 4px; padding-top: 14px; }
}
.dist-section {
background: var(--cream);
padding: 52px 24px;
}
.dist-section-warm { background: var(--warm-white); }
.dist-inner {
max-width: 800px;
margin: 0 auto;
}
.section-rule {
display: flex;
align-items: center;
gap: 16px;
max-width: 800px;
margin: 0 auto;
padding: 0 24px;
}
.section-rule span {
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.diamond-sm {
width: 5px;
height: 5px;
background: var(--gold);
transform: rotate(45deg);
flex-shrink: 0;
}
.section-label {
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gold-text);
margin-bottom: 6px;
}
.section-title-navy {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.8rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 24px;
line-height: 1.25;
}
.section-title-white {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.8rem;
font-weight: 600;
color: #fff;
margin-bottom: 4px;
line-height: 1.25;
}
.hero-strip {
background: var(--sand);
padding: 52px 24px;
}
.hero-inner {
max-width: 800px;
margin: 0 auto;
}
.hero-lede {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-style: italic;
font-size: 1.55rem;
color: var(--navy);
line-height: 1.35;
margin-bottom: 16px;
}
.hero-body {
font-size: 0.95rem;
color: var(--text);
line-height: 1.7;
margin-bottom: 28px;
}
.stat-chips {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.stat-chip {
background: var(--warm-white);
border: 1px solid var(--border);
border-radius: 100px;
padding: 7px 16px;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--navy);
}
.trolley-section {
background: var(--navy);
color: var(--cream);
padding: 52px 24px;
}
.trolley-inner {
max-width: 800px;
margin: 0 auto;
}
.trolley-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-bottom: 28px;
}
@media (min-width: 640px) {
.trolley-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.trolley-chip {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--radius);
padding: 12px 14px;
}
.trolley-chip-label {
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(200,169,78,0.7);
margin-bottom: 3px;
}
.trolley-chip-value {
font-size: 0.88rem;
font-weight: 600;
color: #fff;
}
.trolley-rules-heading {
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--gold-text);
margin-bottom: 10px;
}
.trolley-rules {
list-style: none;
display: flex;
flex-direction: column;
gap: 7px;
margin-bottom: 24px;
}
.trolley-rules li {
font-size: 0.86rem;
color: rgba(255,255,255,0.75);
padding-left: 18px;
position: relative;
line-height: 1.5;
}
.trolley-rules li::before {
content: '—';
color: var(--gold);
position: absolute;
left: 0;
}
.trolley-cta {
display: inline-block;
background: var(--gold);
color: var(--navy);
font-weight: 600;
font-size: 0.86rem;
padding: 11px 22px;
border-radius: 100px;
text-decoration: none;
transition: background 0.2s;
}
.trolley-cta:hover { background: var(--gold-soft); }
.route-line {
position: relative;
padding-left: 40px;
margin-top: 24px;
}
.route-line::before {
content: '';
position: absolute;
left: 14px;
top: 8px;
bottom: 8px;
width: 3px;
background: linear-gradient(to bottom, var(--navy), var(--gold));
border-radius: 2px;
}
.route-stop {
position: relative;
padding: 0 0 28px;
}
.route-stop:last-child { padding-bottom: 0; }
.stop-dot {
position: absolute;
left: -40px;
top: 4px;
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--navy);
border: 3px solid var(--navy);
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.stop-num {
font-size: 0.72rem;
font-weight: 700;
color: #fff;
line-height: 1;
}
.stop-content {
background: var(--warm-white);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 18px 20px;
box-shadow: var(--shadow-sm);
transition: border-color 0.25s, box-shadow 0.25s;
}
@media (hover: hover) {
.stop-content:hover {
border-color: var(--gold-soft);
box-shadow: var(--shadow-md);
}
}
.stop-top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 10px;
margin-bottom: 4px;
}
.stop-content h4 {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--navy);
line-height: 1.25;
}
.dist-brewery-badge {
background: var(--gold-muted);
color: var(--terra);
font-size: 0.68rem;
font-weight: 600;
border-radius: 100px;
padding: 3px 10px;
white-space: nowrap;
flex-shrink: 0;
}
.stop-area {
font-size: 0.76rem;
color: var(--text-light);
font-weight: 500;
margin-bottom: 6px;
}
.stop-desc {
font-size: 0.86rem;
color: var(--text);
line-height: 1.6;
margin-bottom: 8px;
}
.dist-brewery-link {
font-size: 0.78rem;
color: var(--navy-light);
text-decoration: underline;
text-underline-offset: 2px;
transition: color 0.2s;
}
.dist-brewery-link:hover { color: var(--navy); }
.dist-info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin-bottom: 36px;
}
@media (min-width: 600px) {
.dist-info-grid { grid-template-columns: 1fr 1fr; }
}
.dist-info-card {
background: var(--cream);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 22px;
}
.dist-info-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 14px;
}
.dist-tip-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.dist-tip-list li {
font-size: 0.86rem;
color: var(--text);
line-height: 1.55;
padding-left: 16px;
position: relative;
}
.dist-tip-list li::before {
content: '';
position: absolute;
left: 0;
top: 7px;
width: 5px;
height: 5px;
background: var(--gold);
border-radius: 50%;
}
.dist-info-body {
font-size: 0.86rem;
color: var(--text);
line-height: 1.65;
}
.dist-food-heading {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 14px;
}
.dist-food-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.dist-food-item {
display: flex;
align-items: center;
gap: 12px;
background: var(--cream);
border: 1px solid var(--border-light);
border-radius: var(--radius);
padding: 11px 14px;
}
.dist-food-name {
font-size: 0.86rem;
font-weight: 600;
color: var(--navy);
flex: 1;
}
.dist-food-status {
font-size: 0.75rem;
font-weight: 600;
border-radius: 100px;
padding: 3px 12px;
white-space: nowrap;
}
.dist-food-kitchen { background: rgba(91,123,94,0.15); color: var(--sage); }
.dist-food-trucks  { background: var(--gold-muted); color: var(--terra); }
.dist-food-pizza   { background: var(--gold-muted); color: var(--terra); }
.dist-food-byo     { background: rgba(90,101,119,0.1); color: var(--slate); }
.contact-container {
max-width: 560px;
margin: 0 auto;
padding: 40px 24px 60px;
}
.contact-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.6rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 8px;
}
.contact-intro {
font-size: 0.92rem;
color: var(--text);
margin-bottom: 28px;
line-height: 1.6;
}
.contact-success {
background: rgba(91,123,94,0.12);
color: var(--sage);
border: 1px solid rgba(91,123,94,0.25);
border-radius: var(--radius);
padding: 14px 18px;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 20px;
}
.contact-error-summary {
background: rgba(192,103,90,0.1);
color: var(--coral-text);
border: 1px solid rgba(192,103,90,0.25);
border-radius: var(--radius);
padding: 14px 18px;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 18px;
}
.contact-field label {
display: block;
font-size: 0.82rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 5px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
width: 100%;
font-family: inherit;
font-size: 0.9rem;
padding: 10px 14px;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--warm-white);
color: var(--text);
transition: border-color 0.2s;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
outline: none;
border-color: var(--gold);
}
.contact-field textarea {
resize: vertical;
min-height: 100px;
}
.contact-field-error {
display: block;
font-size: 0.78rem;
color: var(--coral-text);
margin-top: 4px;
}
.contact-submit {
display: inline-block;
padding: 12px 28px;
background: var(--gold);
color: var(--navy);
font-family: inherit;
font-size: 0.9rem;
font-weight: 600;
border: none;
border-radius: var(--radius);
cursor: pointer;
transition: background 0.2s, box-shadow 0.2s;
align-self: flex-start;
}
.contact-submit:hover {
background: var(--gold-soft);
box-shadow: var(--shadow-sm);
}
.events-list .event-card:nth-child(1) { animation-delay: 0s; }
.events-list .event-card:nth-child(2) { animation-delay: 0.03s; }
.events-list .event-card:nth-child(3) { animation-delay: 0.06s; }
.events-list .event-card:nth-child(4) { animation-delay: 0.09s; }
.events-list .event-card:nth-child(5) { animation-delay: 0.12s; }
.events-list .event-card:nth-child(6) { animation-delay: 0.15s; }
.breadcrumbs {
max-width: 900px;
margin: 0 auto;
padding: 12px 24px 0;
}
.breadcrumbs ol {
list-style: none;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0;
font-size: 0.82rem;
}
.breadcrumb-item + .breadcrumb-item::before {
content: '\203A';
margin: 0 8px;
color: var(--text-light);
}
.breadcrumb-item a {
color: var(--gold-text);
text-decoration: none;
font-weight: 500;
}
.breadcrumb-item a:hover {
text-decoration: underline;
}
.breadcrumb-current {
color: var(--text-light);
}
.site-footer {
text-align: center;
padding: 40px 24px;
border-top: 1px solid var(--border);
color: var(--text-light);
font-size: 0.8rem;
}
.footer-cta {
background: var(--navy);
text-align: center;
padding: 48px 24px;
}
.footer-cta-inner {
max-width: 600px;
margin: 0 auto;
}
.footer-cta-heading {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--cream);
margin-bottom: 8px;
}
.footer-cta-text {
font-size: 0.9rem;
color: var(--gold-soft);
margin-bottom: 20px;
}
.footer-cta-btn-link {
display: inline-block;
padding: 10px 28px;
background: var(--gold);
color: var(--navy);
font-family: inherit;
font-size: 0.88rem;
font-weight: 600;
border: none;
border-radius: var(--radius);
text-decoration: none;
cursor: pointer;
transition: background 0.2s, box-shadow 0.2s;
}
.footer-cta-btn-link:hover {
background: var(--gold-soft);
box-shadow: var(--shadow-sm);
}
.footer-logo {
width: 80px;
height: 80px;
object-fit: contain;
margin-bottom: 8px;
}
.site-footer .footer-brand {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-style: italic;
color: var(--terra);
font-size: 0.9rem;
margin-bottom: 4px;
}
@media (max-width: 768px) {
.site-header { padding: 28px 18px 32px; min-height: 300px; background-image: var(--hero-image-mobile); }
.site-header::before {
background: linear-gradient(
168deg,
var(--cream) 0%,
rgba(250, 246, 238, 0.88) 34%,
rgba(250, 246, 238, 0.25) 68%,
rgba(250, 246, 238, 0) 92%
);
}
.hero-sub { font-size: 0.9rem; }
.controls { padding: 12px 16px; transition: padding 0.25s ease; }
.controls-row { flex-direction: column; align-items: stretch; }
.search-wrap { min-width: 0; overflow: hidden; max-height: 44px; transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease; }
.search-wrap,
.controls-row {
transition: max-height 0.25s ease, opacity 0.18s ease, margin 0.25s ease;
}
.controls.scrolled .search-wrap { max-height: 0; opacity: 0; margin: 0; pointer-events: none; overflow: hidden; }
.controls.scrolled #eventControls .controls-row {
max-height: 0;
opacity: 0;
margin: 0;
pointer-events: none;
overflow: hidden;
}
.controls.scrolled { padding-top: 8px; padding-bottom: 8px; }
.toggles-scroll-wrap { margin-top: 8px; }
.toggles-row {
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding: 2px 0;
}
.toggles-row::-webkit-scrollbar { display: none; }
.toggles-arrow {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 24px;
height: 32px;
background: var(--warm-white);
border: 1px solid var(--border);
border-radius: 6px;
font-size: 1.1rem;
color: var(--text-light);
cursor: pointer;
z-index: 2;
box-shadow: var(--shadow-sm);
transition: opacity 0.2s;
padding: 0;
}
.toggles-arrow:active { transform: translateY(-50%) scale(0.95); }
.toggles-arrow-left { left: -4px; }
.toggles-arrow-right { right: -4px; }
.toggles-arrow.hidden { opacity: 0; pointer-events: none; }
.results-bar { margin-top: 8px; padding-top: 6px; }
.main { padding: 16px 16px 60px; }
.card-body { padding: 14px 12px 12px; }
.ad-body { padding: 13px 8px 6px; }
.card-name { font-size: 1.14rem; }
.detail-grid {
grid-template-columns: 1fr;
}
.card-detail-inner { padding: 0 8px; }
.brewery-card.open .card-detail-inner { padding: 0 8px 14px; }
.event-card-header {
grid-template-columns: 60px 1fr;
gap: 12px;
padding: 16px 18px;
}
.event-card-right {
grid-column: 1 / -1;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.event-title { font-size: 1.02rem; }
.event-detail-inner { padding: 0 18px 18px; }
}
@media (max-width: 480px) {
.toggle-btn { padding: 10px 14px; font-size: 0.8rem; }
.badge { font-size: 0.68rem; padding: 2px 8px; }
.cat-badge { font-size: 0.68rem; padding: 2px 8px; }
}
.ad-image {
display: block;
border-radius: var(--radius);
margin-bottom: 12px;
}
.ad-image-banner {
max-width: 100%;
max-height: 160px;
object-fit: contain;
margin-left: auto;
margin-right: auto;
}
.ad-image-inline {
border-radius: 0;
margin-bottom: 0;
}
.ad-inline .ad-label {
flex-shrink: 0;
align-self: flex-start;
padding: 4px 10px;
border-radius: var(--radius-pill);
background: var(--gold-muted);
font-size: 0.62rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--terra);
}
.ad-inline .ad-desc {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: var(--text);
}
.ad-inline .ad-cta {
display: inline-block;
align-self: flex-start;
padding: 7px 18px;
background: var(--gold);
color: var(--navy);
font-family: inherit;
font-size: 0.8rem;
font-weight: 600;
border: none;
border-radius: var(--radius);
text-decoration: none;
cursor: pointer;
transition: background 0.2s;
}
.ad-inline .ad-cta:hover {
background: var(--gold-soft);
}
@media (max-width: 768px) {
.ad-inline { padding: 16px 18px; }
.ad-inline .ad-title { font-size: 1rem; }
}
.ad-sticky-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
background: var(--sand);
border-top: 2px solid var(--gold);
padding: 0;
display: flex;
align-items: stretch;
justify-content: center;
box-shadow: 0 -2px 12px rgba(27, 42, 74, 0.1);
animation: slideUpFooter 0.4s ease;
}
@keyframes slideUpFooter {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}
.ad-sticky-content {
display: flex;
flex: 1;
justify-content: center;
}
.ad-sticky-content a {
display: flex;
width: 100%;
justify-content: center;
}
.ad-sticky-image {
width: 100%;
height: auto;
max-height: 80px;
object-fit: contain;
display: block;
}
.ad-sticky-close {
position: absolute;
top: 4px;
right: 4px;
background: rgba(0, 0, 0, 0.5);
border: none;
font-size: 1.2rem;
color: #fff;
cursor: pointer;
padding: 0;
line-height: 1;
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.ad-sticky-close:hover {
color: var(--navy);
}
@media (max-width: 768px) {
.ad-sticky-footer { padding: 0; }
}
.ad-popup-overlay {
position: fixed;
inset: 0;
background: rgba(27, 42, 74, 0.72);
backdrop-filter: blur(3px);
z-index: 2000;
display: flex;
align-items: center;
justify-content: center;
animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay {
from { opacity: 0; }
to { opacity: 1; }
}
.ad-popup-modal {
background: var(--cream);
border: 1px solid var(--gold-line);
border-radius: var(--radius-lg);
padding: 44px 28px 28px;
max-width: 420px;
width: calc(100vw - 48px);
text-align: center;
position: relative;
box-shadow: 0 24px 60px rgba(27, 42, 74, 0.35);
animation: scaleInModal 0.3s ease;
}
@keyframes scaleInModal {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
.ad-popup-close {
position: absolute;
top: 8px;
right: 8px;
background: none;
border: none;
font-size: 1.6rem;
color: var(--text-light);
cursor: pointer;
line-height: 1;
padding: 8px;
min-width: 44px;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.ad-popup-close:hover {
color: var(--navy);
}
.ad-popup-image {
width: auto;
max-width: 100%;
max-height: 280px;
object-fit: contain;
background: #fff;
padding: 8px;
border: 1px solid var(--gold-line);
border-radius: var(--radius);
box-shadow: 0 4px 14px rgba(27, 42, 74, 0.12);
margin: 0 auto 18px;
}
.ad-popup-modal .ad-label {
display: inline-block;
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--gold-text);
background: var(--gold-muted);
padding: 4px 10px;
border-radius: var(--radius-pill);
margin-bottom: 14px;
}
.ad-popup-modal .ad-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.45rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 10px;
}
.ad-popup-modal .ad-desc {
text-align: left;
font-size: 0.85rem;
color: var(--text);
margin-bottom: 20px;
line-height: 1.6;
}
.ad-popup-modal .ad-cta {
display: inline-block;
padding: 12px 32px;
background: var(--navy);
color: var(--cream);
box-shadow: 0 4px 12px rgba(27, 42, 74, 0.25);
font-family: inherit;
font-size: 0.88rem;
font-weight: 600;
border: none;
border-radius: var(--radius);
text-decoration: none;
cursor: pointer;
transition: background 0.2s, box-shadow 0.2s;
}
.ad-popup-modal .ad-cta:hover {
background: #24375f;
box-shadow: 0 6px 18px rgba(27, 42, 74, 0.35);
}
.ad-sponsored-event {
border-left: 4px solid var(--gold);
background: rgba(200, 169, 78, 0.06);
}
.ad-sponsored-badge {
display: inline-block;
background: var(--gold);
color: var(--navy);
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
padding: 3px 8px;
border-radius: 4px;
line-height: 1.2;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.brewery-card {
animation: fadeUp 0.35s ease both;
}
.brewery-list .brewery-card:nth-child(1) { animation-delay: 0s; }
.brewery-list .brewery-card:nth-child(2) { animation-delay: 0.03s; }
.brewery-list .brewery-card:nth-child(3) { animation-delay: 0.06s; }
.brewery-list .brewery-card:nth-child(4) { animation-delay: 0.09s; }
.brewery-list .brewery-card:nth-child(5) { animation-delay: 0.12s; }
.brewery-list .brewery-card:nth-child(6) { animation-delay: 0.15s; }
@media (min-width: 769px) {
.search-input { font-size: 0.9rem; }
.select-wrap select { font-size: 0.85rem; }
}
.toggle-open-now.active {
background: var(--sage);
border-color: var(--sage);
color: #fff;
}
.controls-selects-row {
display: flex;
gap: 8px;
}
.controls-selects-row .select-wrap {
flex: 1;
}
.controls-selects-row .select-wrap select {
width: 100%;
min-width: 0;
}
.card-header,
.toggle-btn,
.expand-arrow {
-webkit-tap-highlight-color: transparent;
}
.card-header:active { background: var(--sand); transition: background 0.15s; }
.toggle-btn:active { transform: scale(0.97); }
.open-now-dot,
.closing-soon-dot,
.closed-dot {
display: inline-block;
width: 7px;
height: 7px;
border-radius: 50%;
margin-right: 4px;
vertical-align: middle;
flex-shrink: 0;
}
.open-now-dot    { background: #4ade80; }
.closing-soon-dot { background: #facc15; }
.closed-dot      { background: #f87171; }
.badge-distance {
background: #EEF0F8;
color: #2A3D66;
font-weight: 600;
font-variant-numeric: tabular-nums;
}
.location-toast {
position: fixed;
bottom: calc(24px + env(safe-area-inset-bottom, 0px));
left: 50%;
transform: translateX(-50%) translateY(80px);
background: var(--navy);
color: #fff;
padding: 12px 20px;
border-radius: var(--radius);
font-size: 0.875rem;
font-weight: 500;
box-shadow: var(--shadow-lg);
z-index: 9999;
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
opacity: 0;
pointer-events: none;
white-space: nowrap;
max-width: calc(100vw - 48px);
text-align: center;
}
.location-toast.visible  { transform: translateX(-50%) translateY(0); opacity: 1; }
.location-toast.toast-error { background: var(--coral); }
.profile-back {
background: var(--navy);
padding: 14px 24px;
}
.profile-back a {
color: var(--gold-soft);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
}
.profile-back a:hover { text-decoration: underline; }
.profile-hero {
background: var(--navy);
color: var(--cream);
padding: 32px 24px 40px;
text-align: center;
}
.profile-hero-inner {
max-width: 700px;
margin: 0 auto;
}
.profile-neighborhood {
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--gold-soft);
margin-bottom: 8px;
}
.profile-name {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 2.2rem;
font-weight: 600;
line-height: 1.2;
}
.profile-body {
max-width: 800px;
margin: 0 auto;
padding: 32px 24px 48px;
}
.profile-desc {
font-size: 0.95rem;
line-height: 1.7;
color: var(--text);
margin-bottom: 32px;
}
.profile-desc p + p { margin-top: 1em; }
.profile-photo {
margin: 0 0 32px;
display: flex;
justify-content: center;
}
.profile-photo img,
.profile-photo .tile-initials {
width: 100%;
max-width: 460px;
aspect-ratio: 4 / 3;
object-fit: cover;
border-radius: var(--radius-lg);
border: 1px solid var(--gold-line);
box-shadow: var(--shadow-md);
display: block;
}
.profile-photo .tile-initials {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(140deg, var(--sand) 0%, rgba(200, 169, 78, 0.32) 100%);
font-size: clamp(3rem, 12vw, 5rem);
}
.profile-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 32px;
}
.profile-section {
font-size: 0.88rem;
line-height: 1.8;
color: var(--text);
}
.profile-section a {
color: var(--terra);
text-decoration: none;
}
.profile-section a:hover { text-decoration: underline; }
.profile-section-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.05rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 8px;
padding-bottom: 6px;
border-bottom: 2px solid var(--gold-muted);
}
.profile-footer-nav {
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid var(--border-light);
text-align: center;
}
.profile-footer-nav a {
color: var(--navy);
font-size: 0.88rem;
font-weight: 500;
text-decoration: none;
}
.profile-footer-nav a:hover { text-decoration: underline; }
.brewery-events {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid var(--border-light);
}
.brewery-events-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.15rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 16px;
}
.brewery-event-item {
display: flex;
align-items: baseline;
gap: 16px;
padding: 12px 0;
border-bottom: 1px solid var(--border-light);
flex-wrap: wrap;
}
.brewery-event-item:last-child { border-bottom: none; }
.brewery-event-date {
font-size: 0.82rem;
font-weight: 600;
color: var(--navy);
white-space: nowrap;
min-width: 80px;
}
.brewery-event-title {
font-size: 0.92rem;
font-weight: 500;
color: var(--text);
flex: 1;
min-width: 0;
}
.brewery-event-time {
font-size: 0.82rem;
color: var(--text-light);
white-space: nowrap;
}
.brewery-event-link {
font-size: 0.78rem;
color: var(--terra);
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 2px;
white-space: nowrap;
}
.brewery-event-link:hover { color: var(--navy); }
.tier-featured {
border-left: 3px solid var(--gold, #C8A94E);
}
.badge-featured {
background: linear-gradient(135deg, var(--gold, #C8A94E), var(--gold-soft, #D4B86A));
color: var(--navy, #1B2A4A);
font-weight: 600;
}
.tier-upgrade-cta {
text-align: center;
padding: 1rem;
color: var(--text-light, #666666);
font-size: 0.85rem;
}
.tier-upgrade-cta p {
margin: 0 0 0.75rem;
}
.profile-featured-badge {
display: inline-block;
background: linear-gradient(135deg, var(--gold, #C8A94E), var(--gold-soft, #D4B86A));
color: #fff;
font-size: 0.7rem;
font-weight: 600;
padding: 0.2rem 0.6rem;
border-radius: 9999px;
margin-left: 0.5rem;
vertical-align: middle;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.profile-hero-featured {
border-bottom: 3px solid var(--gold, #C8A94E);
}
.profile-upgrade-banner {
background: var(--sand, #F0E8D8);
border-radius: 12px;
padding: 1.5rem;
text-align: center;
margin-bottom: 1.5rem;
}
.profile-upgrade-heading {
font-weight: 600;
color: var(--navy, #1B2A4A);
margin: 0 0 0.5rem;
}
.profile-upgrade-text {
color: var(--text-light, #666666);
font-size: 0.9rem;
margin: 0 0 1rem;
}
.profile-upgrade-btn {
display: inline-block;
padding: 0.6rem 1.5rem;
background: var(--gold, #C8A94E);
color: #fff;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: background 0.15s;
}
.profile-upgrade-btn:hover {
background: var(--gold-soft, #D4B86A);
}
.events-list .ad-inline {
flex-direction: row;
align-items: center;
gap: 14px;
}
.events-list .ad-photo {
flex: 0 0 104px;
width: 104px;
aspect-ratio: 4 / 3;
}
.events-list .ad-body { padding: 4px 6px 4px 0; }
.events-list .ad-title { min-height: 0; }
.events-list .ad-meta { margin-top: 4px; }
.events-list .ad-actions {
height: auto;
padding-top: 10px;
margin-top: 6px;
}
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
#main-content:focus { outline: none; }
.skip-link {
position: absolute;
left: 12px;
top: -100px;
z-index: 1000;
padding: 10px 16px;
background: var(--navy);
color: #fff;
border-radius: var(--radius);
font-weight: 600;
text-decoration: none;
}
.skip-link:focus { top: 12px; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
.footer-areas {
margin: 12px auto 16px;
max-width: 640px;
}
.footer-areas-title {
font-weight: 600;
margin-bottom: 6px;
}
.footer-areas ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 4px 14px;
}
.footer-areas a {
color: var(--text-light, #666666);
text-decoration: underline;
text-underline-offset: 2px;
}
.footer-areas a:hover {
color: var(--terra, #8B5E3C);
}
.home-intro {
max-width: 760px;
margin: 1.25rem auto 1rem;
padding: 0 1rem;
text-align: center;
}
.home-intro p {
color: var(--text, #3D3D3D);
line-height: 1.6;
margin: 0;
}
.events-intro {
max-width: 760px;
margin: 1.25rem auto 1rem;
padding: 0 1rem;
text-align: center;
}
.events-intro p {
color: var(--text, #3D3D3D);
line-height: 1.6;
margin: 0;
}
.profile-area-link {
color: inherit;
text-decoration: underline;
text-underline-offset: 3px;
}
.profile-footer-sep {
margin: 0 8px;
color: var(--text-light, #666666);
}
.other-areas {
max-width: 760px;
margin: 2.5rem auto 1rem;
padding: 0 1rem;
text-align: center;
}
.other-areas h2 {
font-size: 1.05rem;
margin-bottom: 0.6rem;
}
.other-areas ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
}
.other-areas a {
display: inline-block;
padding: 4px 12px;
border: 1px solid var(--border, #E2D9C8);
border-radius: 999px;
background: var(--warm-white, #FFFCF5);
color: var(--text, #3D3D3D);
font-size: 0.85rem;
text-decoration: none;
}
.other-areas a:hover {
border-color: var(--gold, #C8A94E);
color: var(--terra, #8B5E3C);
}
.guide {
max-width: 1080px;
margin: 0 auto;
padding: 0 1.25rem 2rem;
}
.guide-masthead {
max-width: 720px;
margin: 1.5rem auto 0;
text-align: center;
}
.guide-kicker {
font-size: 0.72rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--terra, #8B5E3C);
font-weight: 600;
margin-bottom: 0.75rem;
}
.guide-title {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-weight: 600;
font-size: clamp(2.1rem, 5.5vw, 3.4rem);
line-height: 1.08;
color: var(--navy, #1B2A4A);
margin: 0;
}
.guide-standfirst {
margin-top: 0.85rem;
color: var(--text-light, #666);
font-size: 0.95rem;
letter-spacing: 0.01em;
}
.guide-count {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
color: var(--gold, #C8A94E);
font-weight: 700;
font-size: 1.1rem;
}
.guide-rule {
display: block;
width: 56px;
height: 2px;
margin: 1.4rem auto 0;
background: var(--gold, #C8A94E);
}
.guide-lead {
max-width: 660px;
margin: 2rem auto 2.75rem;
}
.guide-lead p {
color: var(--text, #3D3D3D);
line-height: 1.8;
font-size: 1.05rem;
margin: 0 0 1.1rem;
}
.guide-lead-first::first-letter {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 3.4rem;
line-height: 0.78;
float: left;
padding: 0.06em 0.12em 0 0;
color: var(--gold, #C8A94E);
font-weight: 700;
}
.guide-grid {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 14px;
}
.guide-card-link {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
background: var(--warm-white, #FFFCF5);
border: 1px solid var(--border-light, #EDE6D8);
border-radius: var(--radius-xl, 16px);
box-shadow: var(--shadow-sm);
padding: 8px;
text-decoration: none;
overflow: hidden;
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.guide-card-link:hover {
transform: translateY(-5px);
border-color: var(--gold, #C8A94E);
box-shadow: var(--shadow-lg, 0 8px 30px rgba(27, 42, 74, 0.12));
}
.guide-card-link:focus-visible {
outline: 2px solid var(--gold, #C8A94E);
outline-offset: 2px;
}
.guide-card-num {
position: absolute;
top: 16px;
left: 16px;
z-index: 1;
padding: 3px 9px;
border-radius: var(--radius-pill, 100px);
background: rgba(250, 246, 238, 0.9);
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 0.9rem;
font-weight: 700;
line-height: 1.2;
color: var(--terra, #8B5E3C);
transition: background 0.25s ease, color 0.25s ease;
}
.guide-card-link:hover .guide-card-num {
background: var(--gold, #C8A94E);
color: var(--ink, #2C2C2C);
}
.guide-card-arrow {
position: absolute;
top: 18px;
right: 18px;
z-index: 1;
color: var(--gold, #C8A94E);
font-size: 1.05rem;
opacity: 0;
transform: translate(-3px, 3px);
transition: opacity 0.25s ease, transform 0.25s ease;
}
.guide-card-link:hover .guide-card-arrow {
opacity: 1;
transform: translate(0, 0);
}
.guide-card-body {
position: relative;
z-index: 1;
padding: 13px 10px 8px;
}
.guide-card-hood {
display: block;
font-size: 0.66rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--terra, #8B5E3C);
font-weight: 600;
margin-bottom: 0.3rem;
}
.guide-card-name {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.12rem;
line-height: 1.2;
color: var(--ink, #2C2C2C);
font-weight: 600;
min-height: 2.4em;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.guide-card-detail {
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-top: 0.45rem;
min-height: 2.8em;
font-size: 0.82rem;
line-height: 1.4;
color: var(--text-light, #666);
}
@media (max-width: 520px) {
.guide-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.guide-card-body { padding: 11px 8px 6px; }
.guide-card-name { font-size: 1rem; }
}
.faq {
max-width: 760px;
margin: 2rem auto 1rem;
padding: 0 1rem;
}
.faq-heading {
font-size: 1.2rem;
margin: 0 0 0.75rem;
color: var(--primary, #1B2A4A);
}
.faq-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.faq-item {
border: 1px solid var(--border, #E2D9C8);
border-radius: 10px;
background: var(--warm-white, #FFFCF5);
padding: 0 14px;
}
.faq-q {
cursor: pointer;
list-style: none;
padding: 12px 24px 12px 0;
font-weight: 600;
color: var(--text, #3D3D3D);
position: relative;
}
.faq-q::-webkit-details-marker {
display: none;
}
.faq-q::after {
content: '+';
position: absolute;
right: 2px;
top: 50%;
transform: translateY(-50%);
font-size: 1.2rem;
color: var(--gold, #C8A94E);
}
.faq-item[open] .faq-q::after {
content: '–';
}
.faq-a {
margin: 0;
padding: 0 0 14px;
line-height: 1.6;
color: var(--text, #3D3D3D);
}
.guide-page-back {
text-align: center;
margin-top: 2.5rem;
}
.guide-page-back a {
color: var(--terra, #8B5E3C);
text-decoration: none;
font-size: 0.9rem;
}
.guide-page-back a:hover {
text-decoration: underline;
}
.home-browse {
max-width: 1100px;
margin: 0 auto;
padding: 40px 24px 8px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 28px 32px;
}
.home-browse-block h2 {
font-size: 0.82rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light, #666666);
margin: 0 0 10px;
}
.home-browse-block ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 7px;
}
.home-browse-block a {
color: var(--navy, #1B2A4A);
text-decoration: none;
border-bottom: 1px solid transparent;
}
.home-browse-block a:hover {
border-bottom-color: var(--gold, #C8A94E);
}
.tour-operators {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}
.tour-operator {
background: var(--warm-white, #FBF9F5);
border: 1px solid var(--border, #E3DED4);
border-radius: 10px;
padding: 20px 22px;
}
.tour-operator-name {
font-size: 1.05rem;
margin: 0 0 10px;
}
.tour-operator-meta {
list-style: none;
margin: 0 0 12px;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 4px 18px;
font-size: 0.86rem;
}
.tour-operator-meta .label {
color: var(--text-light, #666666);
margin-right: 5px;
}
.tour-operator-meta .value { font-weight: 600; }
.tour-operator-desc { margin: 0 0 12px; }
.tour-areas {
list-style: none;
margin: 20px 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 8px 20px;
}
.guide-footer-links {
max-width: 800px;
margin: 8px auto 48px;
padding: 0 24px;
}
.guide-footer-links p {
font-weight: 600;
margin-bottom: 8px;
}
.guide-footer-links ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 6px 18px;
}
.hero-search {
position: relative;
display: flex;
align-items: center;
max-width: 520px;
margin: 22px 0 0;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-pill);
box-shadow: var(--shadow-md);
padding: 0 18px;
}
.hero-search svg { color: var(--text-light); flex-shrink: 0; }
.hero-search-input {
flex: 1;
min-width: 0;
border: none;
background: none;
outline: none;
font-family: inherit;
font-size: 1rem;
color: var(--text);
padding: 16px 10px;
}
.hero-search-input::placeholder { color: var(--text-light); }
.hero-search:focus-within { border-color: var(--gold); }
.home-sections {
max-width: var(--shell);
margin: 0 auto;
padding: 28px 24px 4px;
}
.home-section { margin-bottom: 30px; }
.section-head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 16px;
margin-bottom: 14px;
}
.section-head h2 {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: clamp(1.2rem, 3.4vw, 1.55rem);
font-weight: 600;
color: var(--ink);
line-height: 1.2;
}
.section-link {
flex-shrink: 0;
font-size: 0.88rem;
font-weight: 500;
color: var(--terra);
text-decoration: none;
}
.section-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.pill-row {
display: flex;
gap: 10px;
list-style: none;
overflow-x: auto;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
padding-bottom: 2px;
}
.pill-row::-webkit-scrollbar { display: none; }
.pill-row a {
display: inline-block;
white-space: nowrap;
padding: 9px 18px;
border: 1px solid var(--gold-line);
border-radius: var(--radius-pill);
background: var(--warm-white);
color: var(--ink);
font-size: 0.88rem;
font-weight: 500;
text-decoration: none;
transition: background 0.2s, border-color 0.2s;
}
@media (hover: hover) {
.pill-row a:hover { background: var(--sand); border-color: var(--gold); }
}
.featured-rail {
display: grid;
grid-auto-flow: column;
grid-auto-columns: 62%;
gap: 14px;
list-style: none;
overflow-x: auto;
scroll-snap-type: x mandatory;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
padding-bottom: 4px;
}
.featured-rail::-webkit-scrollbar { display: none; }
.rail-card { scroll-snap-align: start; }
.rail-card a {
display: flex;
flex-direction: column;
height: 100%;
background: var(--warm-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-sm);
padding: 8px;
overflow: hidden;
text-decoration: none;
transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
@media (hover: hover) {
.rail-card a:hover {
box-shadow: var(--shadow-md);
border-color: var(--gold);
transform: translateY(-2px);
}
}
.rail-card-photo {
display: flex;
align-items: center;
justify-content: center;
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: 10px;
background: linear-gradient(140deg, var(--sand) 0%, rgba(200, 169, 78, 0.32) 100%);
}
.rail-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rail-card-name {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
line-height: 1.22;
color: var(--ink);
padding: 13px 10px 3px;
min-height: calc(2.44em + 16px);
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.rail-card-meta {
font-size: 0.85rem;
color: var(--text-light);
padding: 0 10px 8px;
margin-top: auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (min-width: 600px) {
.featured-rail {
grid-auto-flow: row;
grid-template-columns: repeat(3, 1fr);
overflow: visible;
}
}
@media (min-width: 1000px) {
.featured-rail { grid-template-columns: repeat(4, 1fr); }
}
.teaser-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.teaser {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 14px;
padding: 12px 16px;
background: var(--warm-white);
border: 1px solid var(--gold-line);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-decoration: none;
transition: box-shadow 0.25s, border-color 0.25s;
}
@media (hover: hover) {
.teaser:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
}
.teaser-date {
display: flex;
flex-direction: column;
min-width: 58px;
border: 1px solid var(--gold-line);
border-radius: var(--radius);
overflow: hidden;
text-align: center;
line-height: 1;
}
.teaser-month {
background: var(--terra);
color: #fff;
font-size: 0.62rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
padding: 5px 6px;
}
.teaser-day {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 1.55rem;
font-weight: 600;
color: var(--ink);
padding: 7px 6px;
}
.teaser-body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.teaser-title {
font-weight: 600;
font-size: 1rem;
color: var(--ink);
line-height: 1.3;
}
.teaser-meta {
font-size: 0.85rem;
color: var(--text-light);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.teaser-chevron {
width: 9px;
height: 9px;
border-right: 2px solid var(--text-light);
border-bottom: 2px solid var(--text-light);
transform: rotate(-45deg);
flex-shrink: 0;
}
@media (min-width: 900px) {
.teaser-list { display: grid; grid-template-columns: repeat(2, 1fr); }
}
.guide-card-photo {
display: flex;
align-items: center;
justify-content: center;
aspect-ratio: 4 / 3;
overflow: hidden;
background: linear-gradient(140deg, var(--sand) 0%, rgba(200, 169, 78, 0.32) 100%);
border-radius: 10px;
}
.guide-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tabbar {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 300;
display: grid;
grid-template-columns: repeat(4, 1fr);
background: var(--warm-white);
border-top: 1px solid var(--border);
padding-bottom: env(safe-area-inset-bottom);
}
.tab {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
min-height: var(--tabbar-h);
padding: 8px 4px;
background: none;
border: none;
font-family: inherit;
font-size: 0.68rem;
font-weight: 500;
color: var(--text-light);
text-decoration: none;
cursor: pointer;
}
.tab svg { width: 22px; height: 22px; }
.tab.active { color: var(--gold-text); }
.tab.active span { font-weight: 600; }
@media (min-width: 769px) { .tabbar { display: none; } }
@media (max-width: 768px) {
body { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
.ad-sticky-footer { bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
}
.more-sheet { position: fixed; inset: 0; z-index: 400; }
.more-sheet[hidden] { display: none; }
.more-sheet-backdrop {
position: absolute;
inset: 0;
background: rgba(27, 42, 74, 0.45);
animation: fadeInOverlay 0.2s ease both;
}
.more-sheet-panel {
position: absolute;
left: 0;
right: 0;
bottom: 0;
max-height: 82vh;
overflow-y: auto;
background: var(--cream);
border-radius: var(--radius-xl) var(--radius-xl) 0 0;
padding: 10px 20px calc(24px + var(--tabbar-h) + env(safe-area-inset-bottom));
box-shadow: var(--shadow-lg);
animation: slideUpFooter 0.25s ease both;
}
.more-sheet-grip {
width: 40px;
height: 4px;
border-radius: 2px;
background: var(--border);
margin: 0 auto 12px;
}
.more-sheet-close {
position: absolute;
top: 8px;
right: 12px;
width: 36px;
height: 36px;
border: none;
background: none;
font-size: 1.5rem;
line-height: 1;
color: var(--text-light);
cursor: pointer;
}
.more-sheet-install {
width: 100%;
margin-top: 8px;
padding: 12px 18px;
border: 1px solid var(--gold-line);
border-radius: var(--radius-pill);
background: var(--warm-white);
color: var(--ink);
font: inherit;
font-size: 0.92rem;
cursor: pointer;
}
.more-sheet-title {
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-light);
margin: 16px 0 8px;
}
.more-sheet-links { list-style: none; }
.more-sheet-links a {
display: block;
padding: 12px 4px;
border-bottom: 1px solid var(--border-light);
color: var(--ink);
font-size: 0.98rem;
text-decoration: none;
}
.more-sheet-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.more-sheet-chips a {
display: inline-block;
padding: 7px 14px;
border: 1px solid var(--gold-line);
border-radius: var(--radius-pill);
background: var(--warm-white);
color: var(--ink);
font-size: 0.83rem;
text-decoration: none;
}
.error-page { text-align: center; padding: 4rem 1rem; }
.error-page h1 {
font-family: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
font-size: 3rem;
color: var(--ink);
margin-bottom: 0.5rem;
}
.error-page p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2rem; }
.error-page a {
display: inline-block;
padding: 12px 22px;
background: var(--terra);
color: #fff;
border-radius: var(--radius-pill);
text-decoration: none;
font-weight: 500;
}
.guide-title,
.section-title-navy,
.dist-section-title,
.dist-info-title,
.dist-food-heading,
.more-events-heading,
.brewery-events-title,
.profile-section-title,
.events-brand,
.event-date-group-display,
.faq-heading,
.home-browse-block h2 {
color: var(--ink);
}
