/*
Theme Name: PlateRating
Theme URI: https://platerating.com
Author: PlateRating
Author URI: https://platerating.com
Description: Offizielles WordPress-Theme fuer die PlateRating iOS-App - das elegante Journal fuer Wein, Essen und Genuss.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: platerating
Tags: app, food, wine, elegant, dark
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --espresso:    #2C1A0E;
  --espresso-dark: #1A1208;
  --amber:       #C8813A;
  --amber-light: #E8A85A;
  --cream:       #F5F0E8;
  --warm-white:  #FDFAF5;
  --charcoal:    #1C1C1E;
  --sage:        #7A9B76;
  --wine:        #7B2D4E;
  --gold:        #D4A843;
  --ai-purple:   #8A5AC8;
  --tls-teal:    #2A8A7A;
  --mid-gray:    #8A8A8E;
  --light-gray:  #E5E0D8;
  --alert:       #D64E3A;
  --spring:      #7EC8A0;
  --summer:      #F5C842;
  --autumn:      #C8813A;
  --winter:      #6EB4D4;

  --shadow:    0 8px 32px rgba(44,26,14,0.14);
  --shadow-sm: 0 2px 12px rgba(44,26,14,0.08);
  --shadow-lg: 0 24px 64px rgba(44,26,14,0.18);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --max-width: 1160px;
  --section-gap: 100px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--espresso);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-light); }
button { cursor: pointer; font-family: inherit; border: none; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.3rem; font-weight: 600; }

.display { font-family: 'Cormorant Garamond', serif; }
.display em { color: var(--amber); font-style: italic; }

p { color: var(--mid-gray); line-height: 1.7; }

.label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.label-light { color: rgba(255,255,255,0.5); }
.label-gray  { color: var(--mid-gray); }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--espresso-dark); }
.section-espresso { background: var(--espresso); }
.section-cream { background: var(--cream); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  :root { --section-gap: 64px; }
}

/* ═══════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}
#site-header.scrolled {
  background: rgba(26,18,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,129,58,0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.logo-text em { color: var(--amber); font-style: italic; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  text-decoration: none;
}
.site-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.site-nav a.current-menu-item { color: var(--amber); }

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  background: var(--amber) !important;
  color: white !important;
  border-radius: 24px !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  margin: 4px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(26,18,8,0.97);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(200,129,58,0.2);
    align-items: flex-start;
    gap: 4px;
  }
  .site-nav.open a { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .mobile-menu-toggle { display: block; }
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: white; box-shadow: 0 8px 24px rgba(200,129,58,0.4); }
.btn-primary:hover { background: var(--amber-light); color: white; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,129,58,0.5); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: #3A2418; color: var(--cream); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-dark { background: transparent; color: var(--espresso); border: 1.5px solid var(--light-gray); }
.btn-outline-dark:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}
.appstore-btn:hover { background: #2C2C2E; color: white; transform: translateY(-2px); }
.appstore-btn .asb-icon { font-size: 1.8rem; }
.appstore-btn .asb-text { display: flex; flex-direction: column; }
.appstore-btn .asb-sub { font-size: 0.65rem; opacity: 0.7; letter-spacing: 0.04em; }
.appstore-btn .asb-name { font-size: 1rem; font-weight: 600; }

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.card-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: var(--radius);
  padding: 28px;
  color: white;
}

/* Feature card */
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .fc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h4 { color: var(--espresso); margin-bottom: 8px; font-size: 1.1rem; font-weight: 600; font-family: 'Cormorant Garamond', serif; }
.feature-card p { font-size: 0.88rem; line-height: 1.6; }

/* Stat card */
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   PHONE MOCKUP
═══════════════════════════════════════════════ */
.phone-mockup {
  position: relative;
  display: inline-block;
}
.phone-frame {
  width: 280px;
  background: var(--warm-white);
  border-radius: 42px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 0 0 2px rgba(255,255,255,0.15);
  position: relative;
}
.phone-frame img { width: 100%; display: block; }
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: var(--charcoal);
  border-radius: 20px;
  z-index: 10;
}

/* ═══════════════════════════════════════════════
   SCREEN PREVIEW (inline app screens)
═══════════════════════════════════════════════ */
.screen-preview {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 260px;
  flex-shrink: 0;
}
.sp-statusbar {
  height: 36px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--light-gray);
}
.sp-time { font-size: 0.7rem; font-weight: 600; color: var(--charcoal); }
.sp-body { padding: 14px; }

/* ═══════════════════════════════════════════════
   HERO SECTIONS
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--espresso-dark) 0%, #2C1A0E 60%, #1A2A1A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,129,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,155,118,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,129,58,0.15);
  border: 1px solid rgba(200,129,58,0.25);
  border-radius: 24px;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-eyebrow span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: italic; }
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -40px;
  position: relative;
  z-index: 2;
}

/* Page inner hero */
.page-hero {
  background: linear-gradient(160deg, var(--espresso-dark) 0%, var(--espresso) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,129,58,0.1) 0%, transparent 65%);
}
.page-hero h1 { color: var(--cream); position: relative; z-index: 1; }
.page-hero h1 em { color: var(--amber); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 16px auto 0; position: relative; z-index: 1; font-size: 1.05rem; }
.page-hero .label { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FEATURE HIGHLIGHT SECTIONS
═══════════════════════════════════════════════ */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-highlight.reverse { direction: rtl; }
.feature-highlight.reverse > * { direction: ltr; }
.fh-content .label { margin-bottom: 12px; display: block; }
.fh-content h2 { color: var(--espresso); margin-bottom: 16px; }
.fh-content p { margin-bottom: 24px; }
.fh-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .feature-highlight { grid-template-columns: 1fr; gap: 48px; }
  .feature-highlight.reverse { direction: ltr; }
  .fh-visual { order: -1; }
}

/* ═══════════════════════════════════════════════
   FEATURE LIST (checkmarks)
═══════════════════════════════════════════════ */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--espresso);
}
.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200,129,58,0.12);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list.dark li { color: rgba(255,255,255,0.85); }
.feature-list.dark li::before { background: rgba(200,129,58,0.2); }

/* ═══════════════════════════════════════════════
   CATEGORY BADGES
═══════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
}
.badge-amber  { background: rgba(200,129,58,0.12); color: var(--amber); border: 1px solid rgba(200,129,58,0.2); }
.badge-wine   { background: rgba(123,45,78,0.12); color: var(--wine); border: 1px solid rgba(123,45,78,0.2); }
.badge-sage   { background: rgba(122,155,118,0.12); color: var(--sage); border: 1px solid rgba(122,155,118,0.2); }
.badge-purple { background: rgba(138,90,200,0.12); color: var(--ai-purple); border: 1px solid rgba(138,90,200,0.2); }
.badge-teal   { background: rgba(42,138,122,0.12); color: var(--tls-teal); border: 1px solid rgba(42,138,122,0.2); }
.badge-winter { background: rgba(110,180,212,0.12); color: var(--winter); border: 1px solid rgba(110,180,212,0.2); }

/* ═══════════════════════════════════════════════
   RATING DEMO
═══════════════════════════════════════════════ */
.rating-demo {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.rating-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.rd-thumb {
  width: 54px; height: 62px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4A1030, #7B2D4E);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.rd-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--espresso); }
.rd-sub { font-size: 0.72rem; color: var(--mid-gray); margin-top: 2px; }
.rd-score {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-gray);
}
.rating-row:last-child { border-bottom: none; }
.rc-name { font-size: 0.82rem; color: var(--espresso); }
.rc-bar { display: flex; align-items: center; gap: 8px; }
.rc-stars { font-size: 0.85rem; }
.star-filled { color: var(--gold); }
.star-empty  { color: var(--light-gray); }

/* ═══════════════════════════════════════════════
   SCREENSHOT GALLERY
═══════════════════════════════════════════════ */
.screenshots-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 32px;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshot-item {
  flex-shrink: 0;
  text-align: center;
}
.screenshot-frame {
  width: 240px;
  background: var(--warm-white);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  padding: 8px;
}
.screenshot-inner {
  border-radius: 28px;
  overflow: hidden;
  background: var(--warm-white);
  min-height: 420px;
  position: relative;
}
.screenshot-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════
   AI SECTION
═══════════════════════════════════════════════ */
.ai-section-bg {
  background: linear-gradient(160deg, #1A0A2E 0%, var(--espresso) 50%, #0A1A1A 100%);
  position: relative;
  overflow: hidden;
}
.ai-section-bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,90,200,0.15) 0%, transparent 65%);
}
.ai-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(138,90,200,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.ai-card h4 { color: white; margin-bottom: 8px; }
.ai-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.ai-dot-anim {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}
.ai-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ai-purple);
  animation: bounce 1.2s infinite ease-in-out;
}
.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   ICLOUD SECTION
═══════════════════════════════════════════════ */
.icloud-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,113,227,0.1);
  border: 1px solid rgba(0,113,227,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: #4499EE;
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL / QUOTE
═══════════════════════════════════════════════ */
.quote-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--espresso);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.quote-author { font-size: 0.8rem; color: var(--mid-gray); display: flex; align-items: center; gap: 8px; }
.quote-stars { color: var(--gold); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#site-footer {
  background: var(--espresso-dark);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(200,129,58,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 14px; line-height: 1.7; }
.footer-brand .site-logo { margin-bottom: 12px; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--amber); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════ */
.divider-amber {
  width: 48px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider-center { margin: 16px auto 24px; }

/* ═══════════════════════════════════════════════
   PAGE CONTENT (GDPR / Impressum)
═══════════════════════════════════════════════ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.6rem;
  color: var(--espresso);
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}
.prose h2:first-child { border-top: none; margin-top: 0; }
.prose h3 { font-size: 1.2rem; color: var(--espresso); margin: 24px 0 10px; }
.prose p { color: var(--espresso); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 12px 0 14px 20px; }
.prose ul li { color: var(--espresso); font-size: 0.95rem; line-height: 1.7; margin-bottom: 6px; }
.prose a { color: var(--amber); }
.prose .info-box {
  background: var(--cream);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.prose .info-box p { margin: 0; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-cream  { color: var(--cream); }
.text-white  { color: white; }
.text-gray   { color: var(--mid-gray); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.gap-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   WORDPRESS CORE
═══════════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ═══════════════════════════════════════════════
   CONTENT BODY (for page.php)
═══════════════════════════════════════════════ */
.entry-content { padding: 64px 0 80px; }
