/* breslau-restaurant-tipps.de — Weiß Magazin Design */
/* Clean, image-forward. Sans-serif display + serif body. White, copper, pill shapes. */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Breslau Palette */
  --black: #2C2C2C;
  --black-soft: #3D3D3D;
  --black-dark: #1A1A1A;

  --copper: #B85C38;
  --copper-soft: #D4714E;
  --copper-dark: #9A4A2D;
  --copper-faint: #FBF3EF;

  --white: #ffffff;
  --off-white: #FAFAFA;
  --gray-dark: #4A4A4A;
  --gray: #717171;
  --gray-light: #A0A0A0;
  --border: #E8E8E8;
  --border-light: #F2F2F2;

  /* Typography — Space Grotesk (display) + Lora (body) */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-xxl: 4rem;
  --space-xxxl: 6rem;

  /* Layout — wider for 2-col cards */
  --max-width: 720px;
  --max-width-wide: 960px;

  /* Pill radius */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--black);
  background-color: var(--white);
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  margin-top: var(--space-xxl);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-top: var(--space-xl);
}

h4 {
  font-size: 1.0625rem;
  margin-top: var(--space-lg);
  font-weight: 500;
}

p {
  margin-bottom: var(--space-lg);
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--copper-dark);
}

strong {
  font-weight: 600;
}

/* ============================================================
   SITE HEADER — Minimal, logo left, nav right
   ============================================================ */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
}

.site-logo:hover {
  color: var(--copper);
}

/* ============================================================
   NAVIGATION — Pill-shaped active state
   ============================================================ */

.site-nav {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  padding: 0.375rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.site-nav a:hover {
  color: var(--black);
  background: var(--off-white);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--black);
}

/* ============================================================
   HERO — Full-width image with overlay
   ============================================================ */

.hero {
  background: var(--black-dark);
  padding: var(--space-xxxl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 680px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  font-weight: 400;
  color: var(--copper-soft);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS — Pill-shaped, filled or outlined
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--black);
  border-color: var(--black);
}

.hero .btn-primary {
  background: var(--copper);
  color: var(--white);
}

.hero .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

main {
  min-height: calc(100vh - 300px);
}

/* ============================================================
   ARTICLE — Reading column
   ============================================================ */

article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-xl);
}

article h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: var(--space-xs);
}

article h2 {
  padding-top: var(--space-md);
}

article h3 {
  color: var(--copper);
}

.article-meta {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
  font-weight: 400;
}

.article-meta time::before {
  content: "\2014";
  margin-right: var(--space-md);
  color: var(--border);
}

/* Lead paragraph */
.lead {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-lg);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.625em;
}

/* ============================================================
   ARTICLE IMAGES — Rounded
   ============================================================ */

.article-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.article-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.article-inline-image {
  margin: var(--space-xl) 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.article-inline-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-inline-image figcaption,
.image-credit {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gray-light);
  padding: var(--space-sm) 0;
  font-weight: 400;
}

/* Image Gallery Row */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}

.image-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-gallery figcaption {
  font-size: 0.6875rem;
  color: var(--gray-light);
  padding: var(--space-xs) 0;
  text-align: center;
  font-family: var(--font-display);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: var(--space-xxl) var(--space-xl);
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: left;
  max-width: var(--max-width-wide);
  margin: 0 auto var(--space-xl);
  padding: 0;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.section-header p {
  color: var(--gray);
  font-size: 1.0625rem;
  margin-bottom: 0;
  max-width: 540px;
}

/* ============================================================
   CARD GRID — 2-column at full width
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.card-grid.single-col {
  grid-template-columns: 1fr;
  max-width: var(--max-width);
}

/* ============================================================
   CARD — Pill-rounded image, clean stack
   ============================================================ */

.card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.card:hover {
  border-color: var(--copper-soft);
  box-shadow: 0 8px 24px rgba(184, 92, 56, 0.08);
  transform: translateY(-2px);
}

.card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
}

.card {
  cursor: pointer;
}

.card-image {
  height: 200px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--copper);
  color: var(--white);
  padding: 0.25rem 0.875rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 2;
  border-radius: var(--radius);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
}

.card h3 {
  font-size: 1.25rem;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.card h3 a {
  color: var(--black);
  transition: color 0.2s ease;
}

.card:hover h3 a {
  color: var(--copper);
}

.card p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.65;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gray-light);
  font-weight: 400;
}

.card-meta span::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
  margin-right: var(--space-sm);
  vertical-align: middle;
}

.card-meta span:first-child::before {
  display: none;
}

/* ============================================================
   VENUE CARD — Restaurant/bar listing
   ============================================================ */

.venue-card {
  background: transparent;
  padding: var(--space-xl) 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.venue-card:last-child {
  border-bottom: none;
}

.venue-card.featured {
  background: var(--copper-faint);
  border-radius: var(--radius);
  padding: var(--space-xl);
  margin: var(--space-md) 0;
  border-bottom: none;
  position: relative;
}

.venue-card.featured::before {
  content: 'Jule-Tipp';
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  padding: 0.2rem 0.875rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
}

.venue-card h3 {
  font-size: 1.375rem;
  margin: 0 0 var(--space-xs);
  font-weight: 600;
}

.venue-card h3 a {
  color: var(--black);
  transition: color 0.2s ease;
}

.venue-card h3 a:hover {
  color: var(--copper);
}

.venue-meta {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-weight: 400;
}

.venue-meta span::before {
  content: "\00b7";
  margin-right: var(--space-sm);
  color: var(--gray-light);
}

.venue-meta span:first-child::before {
  display: none;
}

.venue-card p {
  margin-bottom: var(--space-md);
  line-height: 1.75;
  color: var(--gray-dark);
}

.venue-details {
  display: grid;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.venue-detail {
  display: flex;
  gap: var(--space-md);
  font-size: 0.9375rem;
}

.venue-detail strong {
  font-family: var(--font-display);
  color: var(--copper);
  min-width: 100px;
  font-weight: 500;
  font-size: 0.8125rem;
}

/* Venue image */
.venue-image {
  margin: var(--space-lg) 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.venue-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Venue rank */
.venue-rank {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--copper);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.venue-card.featured .venue-rank {
  font-size: 2.25rem;
}

/* ============================================================
   TABLE
   ============================================================ */

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: var(--space-xl) 0;
  font-size: 0.9375rem;
}

.table th,
.table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  font-family: var(--font-display);
  font-weight: 500;
  background: transparent;
  color: var(--copper);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--copper);
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: var(--copper-faint);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  margin: var(--space-xxl) 0;
  padding: var(--space-xl) 0;
  border-top: 2px solid var(--black);
}

.faq h2 {
  margin-top: 0;
  color: var(--black);
  font-size: 1.625rem;
  margin-bottom: var(--space-xl);
}

.faq-item {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.0625rem;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--black);
  font-weight: 600;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-xl) 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gray-light);
  font-weight: 400;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.375rem;
  color: var(--border);
}

.breadcrumbs a {
  color: var(--gray-light);
}

.breadcrumbs a:hover {
  color: var(--copper);
}

/* ============================================================
   BLOCKQUOTE — Copper left accent, pill shape
   ============================================================ */

blockquote {
  margin: var(--space-xxl) 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--copper);
  background: var(--copper-faint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   LINKS SECTION — Related content
   ============================================================ */

.links-section {
  margin: var(--space-xxl) 0;
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: var(--radius);
}

.links-section h3 {
  margin-top: 0;
  font-size: 1.0625rem;
  color: var(--black);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.links-section ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.links-section li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.links-section li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--copper);
}

/* ============================================================
   TAGS — Pill-shaped
   ============================================================ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--copper);
  color: var(--copper);
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.tag:hover {
  background: var(--copper);
  color: var(--white);
}

/* ============================================================
   CTA BAND — Copper on white
   ============================================================ */

.cta-band {
  background: var(--black-dark);
  padding: var(--space-xxxl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band > * {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  font-size: 0.9375rem;
}

/* ============================================================
   SITE FOOTER — Dark, clean
   ============================================================ */

.site-footer {
  background: var(--black-dark);
  color: var(--white);
  padding: var(--space-xxxl) var(--space-xl) var(--space-xl);
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xxl);
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  margin-top: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--copper-soft);
}

.footer-bottom {
  max-width: var(--max-width-wide);
  margin: var(--space-xxl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: left;
  font-family: var(--font-display);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   HORIZONTAL RULE
   ============================================================ */

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xxl) 0;
}

/* ============================================================
   FOCUS STYLES
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: var(--copper);
  color: var(--white);
}

/* ============================================================
   SKIP LINK
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--black);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  z-index: 999;
  font-size: 0.875rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ============================================================
   ARTICLE CONTENT WRAPPER
   ============================================================ */

.article-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Hero image (full-width article banner) */
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
  .header-inner {
    padding: 0 var(--space-lg);
  }

  .hero {
    padding: var(--space-xxl) var(--space-lg);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }

  article {
    padding: var(--space-xl) var(--space-lg);
  }

  .section {
    padding: var(--space-xl) var(--space-lg);
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .card-image {
    height: 180px;
  }

  .article-image img {
    height: 280px;
  }

  .venue-card.featured {
    padding: var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .cta-band {
    padding: var(--space-xxl) var(--space-lg);
  }

  .site-footer {
    padding: var(--space-xxl) var(--space-lg) var(--space-lg);
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .image-gallery img {
    height: 160px;
  }

  .table th,
  .table td {
    padding: var(--space-sm) var(--space-md);
  }

  .venue-card {
    padding: var(--space-lg) 0;
  }

  .breadcrumbs {
    padding: var(--space-md) var(--space-lg) 0;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--space-md);
  }

  .site-nav {
    width: 100%;
    gap: var(--space-xs);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .site-nav a {
    font-size: 0.8125rem;
    padding: 0.3rem 0.75rem;
    white-space: nowrap;
  }

  .site-logo {
    font-size: 1.125rem;
  }

  .hero {
    padding: var(--space-xl) var(--space-md);
  }

  article {
    padding: var(--space-xl) var(--space-md);
  }

  .section {
    padding: var(--space-xl) var(--space-md);
  }

  .card-image {
    height: 160px;
  }

  .article-image img {
    height: 220px;
  }

  .hero-image img {
    height: 200px;
  }

  .venue-detail {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .venue-detail strong {
    min-width: auto;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .image-gallery img {
    height: 200px;
  }

  blockquote {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }

  .cta-band {
    padding: var(--space-xl) var(--space-md);
  }

  .site-footer {
    padding: var(--space-xl) var(--space-md) var(--space-md);
  }

  .breadcrumbs {
    padding: var(--space-md) var(--space-md) 0;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  :root {
    --white: #ffffff;
    --black: #000000;
  }

  .site-header,
  .site-footer,
  .cta-band,
  .hero-cta,
  .breadcrumbs {
    display: none;
  }

  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  article {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }

  .article-image img,
  .article-inline-image img,
  .hero-image img {
    max-height: 300px;
    object-fit: contain;
  }

  .venue-card,
  .card {
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
}
