/* danzig-essensguide.de — Berliner Magazin Editorial Design */
/* Clean editorial, generous whitespace, sharp corners, asymmetric flow */

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

:root {
  /* Danzig Palette */
  --green: #2B5F3A;
  --green-soft: #3A7A4E;
  --green-dark: #1E4429;
  --green-faint: #EDF5EF;

  --terracotta: #E85D3A;
  --terracotta-soft: #F0775A;
  --terracotta-dark: #C84A2B;

  --cream: #FAF8F5;
  --cream-warm: #F3F0EA;
  --white: #ffffff;
  --dark: #1A1A1A;
  --gray-dark: #3A3A3A;
  --gray: #6A6A6A;
  --gray-light: #9A9A9A;
  --border: #E8E5E0;
  --border-light: #F0EDE8;

  /* Typography — DM Serif Display + Inter */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing — generous editorial rhythm */
  --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 — narrow reading column */
  --max-width: 680px;
  --max-width-wide: 1040px;

  /* No rounded corners — sharp editorial */
  --radius: 0px;
}

/* ============================================================
   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.7;
  color: var(--dark);
  background-color: var(--cream);
  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: 400;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-top: var(--space-xxl);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  margin-top: var(--space-xl);
}

h4 {
  font-size: 1.125rem;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-weight: 600;
}

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

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

a:hover {
  color: var(--terracotta);
}

strong {
  font-weight: 600;
}

/* ============================================================
   SITE HEADER — Minimal bar, serif name left, links right
   ============================================================ */

.site-header {
  background: var(--cream);
  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: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

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

/* ============================================================
   NAVIGATION — Clean text links, underline animation
   ============================================================ */

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

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--dark);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

/* ============================================================
   HERO — Full-width with green gradient overlay
   ============================================================ */

.hero {
  background: var(--green-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.35;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 45%, rgba(43, 95, 58, 0.85) 100%);
  opacity: 0.92;
}

.hero:has(.hero-bg)::before {
  opacity: 0.78;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(232, 93, 58, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: var(--terracotta-soft);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.01em;
}

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

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

/* ============================================================
   BUTTONS — Text-based with underline animation, not filled
   ============================================================ */

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

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
  transform-origin: left;
}

.btn:hover::after {
  transform: scaleX(1.05);
}

.btn-primary {
  color: var(--terracotta);
}

.btn-primary:hover {
  color: var(--terracotta-dark);
}

/* In hero context, primary button is white */
.hero .btn-primary {
  color: var(--white);
}

.hero .btn-primary:hover {
  color: var(--terracotta-soft);
}

.btn-secondary {
  color: var(--gray);
}

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

.hero .btn-secondary {
  color: rgba(255, 255, 255, 0.6);
}

.hero .btn-secondary:hover {
  color: var(--white);
}

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

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

/* ============================================================
   ARTICLE — Narrow reading column with generous whitespace
   ============================================================ */

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

article h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

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

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

.article-meta {
  font-family: var(--font-body);
  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;
  letter-spacing: 0.02em;
}

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

/* Lead paragraph — editorial intro */
.lead {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  line-height: 1.65;
  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
   ============================================================ */

.article-image {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

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

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

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

.article-inline-image figcaption,
.image-credit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-light);
  padding: var(--space-sm) 0;
  letter-spacing: 0.01em;
  font-style: italic;
}

/* 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;
}

.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-style: italic;
}

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

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

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

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

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

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}

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

/* ============================================================
   CARD GRID — Narrow column, stacked, no boxed cards
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Two-column variant for wider layouts */
.card-grid.two-col {
  max-width: var(--max-width-wide);
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* ============================================================
   CARD — Borderless editorial style, bottom separator
   ============================================================ */

.card {
  background: transparent;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

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

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

.card {
  cursor: pointer;
}

.card:hover {
  background: transparent;
}

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

.card-image {
  height: 220px;
  background: var(--green-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.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.03);
}

.card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--terracotta);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.375rem;
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

.card-meta {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.01em;
}

.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 — Editorial restaurant listing, borderless
   ============================================================ */

.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:hover {
  background: transparent;
}

.venue-card.featured {
  border-left: 3px solid var(--terracotta);
  padding-left: var(--space-xl);
  background: var(--white);
  margin-left: calc(var(--space-xl) * -1);
  padding-right: var(--space-xl);
  position: relative;
}

.venue-card.featured::before {
  content: 'Empfehlung';
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.125rem 0.625rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.venue-card h3 {
  font-size: 1.5rem;
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

.venue-meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

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

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

.venue-card p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  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-body);
  color: var(--green);
  min-width: 100px;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   TABLE — Clean editorial 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-body);
  font-weight: 600;
  background: transparent;
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--green);
}

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

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

/* ============================================================
   FAQ — Clean, open layout
   ============================================================ */

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

.faq h2 {
  margin-top: 0;
  color: var(--dark);
  font-size: 1.75rem;
  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.125rem;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-xl) 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.01em;
}

.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(--green);
}

/* ============================================================
   BLOCKQUOTE — Terracotta left accent
   ============================================================ */

blockquote {
  margin: var(--space-xxl) 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 2px solid var(--terracotta);
  background: transparent;
  font-style: italic;
  font-size: 1.1875rem;
  font-family: var(--font-display);
  color: var(--gray-dark);
  line-height: 1.5;
}

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

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

.links-section {
  margin: var(--space-xxl) 0;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.links-section h3 {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 400;
  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(--terracotta);
}

/* ============================================================
   TAGS
   ============================================================ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  transition: all 0.2s ease;
}

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

.tag-accent {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

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

/* ============================================================
   NEWSLETTER — Forest green band
   ============================================================ */

.newsletter {
  background: var(--green-dark);
  padding: var(--space-xxxl) var(--space-xl);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 93, 58, 0.04) 100%);
}

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

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

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

.newsletter-form {
  max-width: 480px;
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  color: var(--terracotta-soft);
  padding: var(--space-md) var(--space-lg);
  white-space: nowrap;
}

.newsletter-form .btn::after {
  bottom: var(--space-md);
}

.newsletter-form .btn:hover {
  color: var(--white);
}

/* ============================================================
   SITE FOOTER — Dark, minimal, editorial
   ============================================================ */

.site-footer {
  background: var(--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-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  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.6;
  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(--terracotta-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;
  letter-spacing: 0.01em;
}

.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 — Accessibility
   ============================================================ */

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

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

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

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

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

.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) — alias for .article-image */
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  margin-bottom: var(--space-xl);
}

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

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

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

/* Venue rank number */
.venue-rank {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

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

/* ============================================================
   CATEGORY GRID — Simple link cards
   ============================================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.category-card {
  display: block;
  padding: var(--space-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-card:hover {
  border-color: var(--green);
  background: var(--green-faint);
}

.category-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.category-card span {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ============================================================
   FAQ SECTION — alias for .faq
   ============================================================ */

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

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

/* ============================================================
   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-tagline {
    font-size: 1rem;
  }

  .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);
  }

  .section-header {
    padding: 0;
  }

  .card-grid.two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card-image {
    height: 180px;
  }

  .article-image img,
  .hero-image img {
    height: 240px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .venue-card.featured {
    margin-left: 0;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }

  .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 {
    font-size: 0.875rem;
  }

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

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

  .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-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
  }

  .site-nav a {
    font-size: 0.8125rem;
  }

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

  .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,
  .hero-image img {
    height: 200px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  .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: 1.0625rem;
  }

  .newsletter {
    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 {
    --cream: #ffffff;
    --dark: #000000;
  }

  .site-header,
  .site-footer,
  .newsletter,
  .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 {
    page-break-inside: avoid;
  }

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

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

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