/*
Theme Name: Tierarztpraxis Dr. Vockert
Theme URI: https://www.tierarztpraxis-dr-almut-vockert.de/
Author: Tierarztpraxis Dr. Vockert
Author URI: https://www.tierarztpraxis-dr-almut-vockert.de/
Description: Maßgeschneidertes WordPress-Theme für die Tierarztpraxis Dr. med. vet. Almut Vockert in Edertal. DSGVO-konform, barrierefrei (EU-Richtlinie 2019/882), SEO-optimiert und vollständig responsiv. Alle Inhalte über den Customizer und Inline-Editing bearbeitbar.
Version: 1.2.1
Tested up to: 6.8
Requires at least: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tierarztpraxis
Tags: one-column, custom-logo, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --color-blue: #3756B3;
  --color-blue-dark: #2d4899;
  --color-blue-link: #0C60AF;
  --color-gold: #EABF3D;
  --color-gold-dark: #d4ab2e;
  --color-black: #000000;
  --color-dark: #1a1a1a;
  --color-footer-bg: #1c2d4f;
  --color-footer-bottom: #152442;
  --color-text: #383838;
  --color-text-light: #505050;
  --color-gray-500: #626262;
  --color-gray-border: #c7c7c7;
  --color-gray-200: #d1d1d1;
  --color-gray-150: #e8e8e8;
  --color-gray-100: #f0f0f0;
  --color-offwhite: #f8f8f8;
  --color-white: #ffffff;
  --color-footer-text: #cdd5e5;
  --font-heading: 'Montserrat', system-ui, -apple-system, 'Segoe UI', 'Arial', sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --focus-color: #4A90D9;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-blue-dark); }
ul, ol { list-style: none; }

/* Accessibility: Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--color-blue); color: var(--color-white);
  padding: 12px 24px; z-index: 100000; font-weight: 700;
  border-radius: 0 0 4px 4px; font-family: var(--font-heading);
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.skip-link:focus { top: 0; color: var(--color-white); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-blue); margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--color-text-light); max-width: 600px; line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--color-blue);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: var(--color-blue-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height); max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.header-brand { display: flex; align-items: center; gap: 14px; }
.header-logo { width: 48px; height: auto; transition: transform var(--transition); }
.header-brand:hover .header-logo { transform: scale(1.05); }
.header-brand-text { display: flex; flex-direction: column; }
.header-brand-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--color-white); }
.header-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  position: relative; padding: 8px 16px; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.8); letter-spacing: 0.03em; text-transform: uppercase;
  transition: color var(--transition); font-family: var(--font-heading);
}
.nav-desktop a:hover,
.nav-desktop a.active,
.nav-desktop .current-menu-item > a,
.nav-desktop .current_page_item > a { color: var(--color-white); }
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--color-gold);
  transform: scaleX(0); transform-origin: center; transition: transform var(--transition);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after,
.nav-desktop .current-menu-item > a::after,
.nav-desktop .current_page_item > a::after { transform: scaleX(1); }

/* WordPress menu items - remove list styling */
.nav-desktop .menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-desktop .menu li { list-style: none; }
.nav-desktop .menu li a {
  position: relative; padding: 8px 16px; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.8); letter-spacing: 0.03em; text-transform: uppercase;
  transition: color var(--transition); font-family: var(--font-heading);
}
.nav-desktop .menu li a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--color-gold);
  transform: scaleX(0); transform-origin: center; transition: transform var(--transition);
}
.nav-desktop .menu li a:hover::after,
.nav-desktop .menu .current-menu-item > a::after,
.nav-desktop .menu .current_page_item > a::after { transform: scaleX(1); }
.nav-desktop .menu li a:hover,
.nav-desktop .menu .current-menu-item > a,
.nav-desktop .menu .current_page_item > a { color: var(--color-white); }

.nav-cta,
.nav-desktop .menu-item-kontakt > a {
  display: inline-flex !important; align-items: center; gap: 8px; margin-left: 16px;
  padding: 10px 24px !important; background: var(--color-gold);
  color: var(--color-text) !important; font-size: 0.8rem !important; font-weight: 700 !important;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px;
  transition: background var(--transition), transform var(--transition); font-family: var(--font-heading);
}
.nav-cta:hover,
.nav-desktop .menu-item-kontakt > a:hover { background: var(--color-gold-dark); transform: translateY(-1px); }
.nav-cta::after,
.nav-desktop .menu-item-kontakt > a::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none; z-index: 1001;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-white); transition: transform var(--transition), opacity var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-blue-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a,
.nav-mobile .menu li a { font-family: var(--font-heading); font-size: 1.5rem; color: rgba(255,255,255,0.8); padding: 12px 24px; display: block; }
.nav-mobile a:hover, .nav-mobile a.active,
.nav-mobile .menu li a:hover,
.nav-mobile .menu .current-menu-item > a { color: var(--color-white); }
.nav-mobile .menu { list-style: none; margin: 0; padding: 0; text-align: center; }
.nav-mobile .menu li { list-style: none; }

/* ==========================================================================
   Announcement / Vacation Banner
   ========================================================================== */
.announcement-banner {
  background: var(--color-gold);
  color: var(--color-text);
  padding: 14px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 999;
  margin-top: var(--header-height);
}
.announcement-banner + main .hero { margin-top: 0; }
.announcement-banner p { margin: 0; }
.announcement-banner a { color: var(--color-blue); text-decoration: underline; font-weight: 700; }
.announcement-banner .close-announcement {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 1.2rem; cursor: pointer;
  color: var(--color-text); padding: 4px 8px; line-height: 1;
}
.announcement-banner .close-announcement:hover { opacity: 0.7; }

.announcement-banner--urgent {
  background: #dc3545;
  color: var(--color-white);
}
.announcement-banner--urgent a { color: var(--color-gold); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--color-gold);
  padding-top: var(--header-height);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 60px 24px 80px; }
.hero-logo { width: 120px; margin: 0 auto 2rem; animation: fadeInUp 1s ease 0.2s both; }
.hero h1 { color: var(--color-white); font-weight: 700; margin-bottom: 0.5rem; animation: fadeInUp 1s ease 0.4s both; text-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; animation: fadeInUp 1s ease 0.6s both; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.8s both; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer; transition: all var(--transition);
}
.btn-primary { background: var(--color-blue); color: var(--color-white); }
.btn-primary:hover { background: var(--color-blue-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(55,86,179,0.3); color: var(--color-white); }
.btn-outline { background: transparent; color: var(--color-white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.15); color: var(--color-white); }
.btn-gold { background: var(--color-gold); color: var(--color-text); }
.btn-gold:hover { background: var(--color-gold-dark); color: var(--color-text); transform: translateY(-2px); }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll span { display: block; width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.hero-scroll span::after { content: ''; width: 4px; height: 10px; background: rgba(255,255,255,0.7); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollDown 2s infinite; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDown { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(14px); } }

/* ==========================================================================
   Page Hero (Sub-pages)
   ========================================================================== */
.page-hero { position: relative; height: 50vh; min-height: 350px; display: flex; align-items: flex-end; background: var(--color-black); overflow: hidden; margin-top: var(--header-height); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); }
.page-hero-content { position: relative; z-index: 2; padding-bottom: 60px; width: 100%; }
.page-hero h1 { color: var(--color-white); font-weight: 400; }
.page-hero h1 strong { font-weight: 700; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1rem; font-family: var(--font-heading); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb .sep { opacity: 0.4; }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 80px 0; }
.section-dark { background: var(--color-black); color: var(--color-footer-text); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark a { color: var(--color-gold); }
.section-dark a:hover { color: var(--color-gold-dark); }
.section-blue { background: var(--color-blue); color: rgba(255,255,255,0.9); }
.section-blue h2, .section-blue h3, .section-blue h4 { color: var(--color-white); }
.section-alt { background: var(--color-offwhite); }

/* Info Cards */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 3rem; }
.info-card { padding: 40px; background: var(--color-white); border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid var(--color-gray-150); transition: box-shadow var(--transition), transform var(--transition); }
.info-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.info-card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--color-blue); border-radius: 8px; margin-bottom: 1.5rem; }
.info-card-icon svg { width: 22px; height: 22px; fill: var(--color-white); }
.info-card h3 { margin-bottom: 1rem; }
.info-card p { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.8; }
.info-card .btn-outline { color: var(--color-blue); border-color: var(--color-gray-200); }
.info-card .btn-outline:hover { border-color: var(--color-blue); background: rgba(55,86,179,0.05); color: var(--color-blue); }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--color-gray-150); }
.section-dark .hours-table tr { border-bottom-color: rgba(255,255,255,0.08); }
.hours-table td { padding: 12px 0; font-size: 0.95rem; }
.hours-table td:first-child { font-weight: 600; width: 140px; }
.hours-table td:last-child { text-align: right; color: var(--color-text-light); }
.section-dark .hours-table td:last-child { color: rgba(255,255,255,0.7); }

/* Two-Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-text { padding: 20px 0; }
.two-col-image { border-radius: 6px; overflow: hidden; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.two-col-image:hover img { transform: scale(1.03); }

/* Feature List */
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; line-height: 1.6; }
.feature-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--color-gold); display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.feature-icon svg { width: 12px; height: 12px; fill: var(--color-text); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* Equipment Grid */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.equip-card { position: relative; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; }
.equip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.equip-card:hover img { transform: scale(1.05); }
.equip-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%); display: flex; align-items: flex-end; padding: 20px; }
.equip-card-overlay h4 { color: var(--color-white); font-size: 1rem; }

/* Map */
.map-wrapper { width: 100%; height: 400px; border-radius: 6px; overflow: hidden; margin-top: 2rem; border: 1px solid var(--color-gray-150); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.map-consent {
  width: 100%; height: 400px; border-radius: 6px; overflow: hidden;
  margin-top: 2rem; border: 1px solid var(--color-gray-150);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-offwhite); text-align: center; padding: 40px;
}
.map-consent p { margin-bottom: 1rem; color: var(--color-text-light); max-width: 400px; }
.map-consent .btn { margin-top: 0.5rem; }

/* Contact */
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 3rem; }
.contact-item h4 { margin-bottom: 0.8rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.8; }
.phone-link { color: var(--color-blue-link); font-weight: 600; }
.phone-link:hover { text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding: 80px 0 0; }
.site-footer a { color: var(--color-footer-text); }
.site-footer a:hover { color: var(--color-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(205,213,229,0.7); max-width: 280px; }
.footer-col h5 { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.9rem; padding: 4px 0; transition: color var(--transition), padding-left var(--transition); }
.footer-col a:hover { padding-left: 4px; }
.footer-col .menu { list-style: none; margin: 0; padding: 0; }
.footer-col .menu li { list-style: none; }
.footer-col .menu li a { display: block; font-size: 0.9rem; padding: 4px 0; }
.footer-bottom { margin-top: 60px; padding: 20px 0; background: var(--color-footer-bottom); border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; color: rgba(205,213,229,0.5); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-legal { display: flex; gap: 24px; }

/* ==========================================================================
   Cookie / Consent Banner (GDPR)
   ========================================================================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000; background: var(--color-footer-bottom); color: var(--color-footer-text); padding: 20px 24px; display: none; box-shadow: 0 -4px 30px rgba(0,0,0,0.3); border-top: 2px solid var(--color-gold); }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.88rem; line-height: 1.6; }
.cookie-text a { color: var(--color-gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 10px 24px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: all var(--transition); font-family: var(--font-heading); }
.cookie-accept { background: var(--color-gold); color: var(--color-text); }
.cookie-accept:hover { background: var(--color-gold-dark); }
.cookie-reject { background: transparent; color: var(--color-footer-text); border: 1px solid rgba(255,255,255,0.15); }
.cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: var(--color-white); }

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-content { padding: 140px 0 100px; min-height: 70vh; }
.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-content p, .legal-content li { font-size: 0.95rem; line-height: 1.8; color: var(--color-text-light); margin-bottom: 0.8rem; }
.legal-content ul { margin-left: 1.5rem; list-style: disc; }
.legal-content a { color: var(--color-blue-link); text-decoration: underline; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-row { grid-template-columns: 1fr; gap: 24px; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: 100svh; }
  .hero-logo { width: 90px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .page-hero { height: 40vh; min-height: 280px; }
  .page-hero-content { padding-bottom: 40px; }
  .info-card { padding: 28px; }
  .equip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .map-wrapper, .map-consent { height: 300px; }
  .announcement-banner { padding: 12px 40px 12px 24px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .header-brand-text { display: none; }
  .hero h1 { font-size: 1.7rem; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* Print */
@media print {
  .site-header, .cookie-banner, .hero-scroll, .announcement-banner { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  section { padding: 30px 0; }
  .page-hero { margin-top: 0; }
}

/* WordPress Admin Bar fix */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
