/*
Theme Name: Hala Na Míru
Theme URI: https://halanamiru.cz
Author: APREBI s.r.o.
Description: Profesionální téma pro Hala Na Míru – průmyslové a skladové haly na zakázku.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: halanamiru
*/

:root {
  --primary: #1a1a2e;
  --accent: #e8a838;
  --accent-dark: #c98b28;
  --steel: #2d3a4a;
  --light: #f5f0e8;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e0dbd3;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: 80px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(232,168,56,0.15);
}
.nav.scrolled { background: rgba(26,26,46,0.99); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1340px; margin:0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px; color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 40px; height: 40px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a, .nav-link {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  padding: 8px 16px; border-radius: 6px;
  transition: all 0.3s ease; cursor: pointer;
  display: inline-block;
}
.nav-links a:hover, .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 16px !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  background: none !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(232,168,56,0.15) !important;
  color: var(--accent) !important;
}
.nav-cta {
  background: var(--accent) !important; color: var(--primary) !important; padding: 10px 24px !important;
  border-radius: 6px !important; font-weight: 700 !important; font-size: 13px !important;
  letter-spacing: 1px !important; text-transform: uppercase !important; text-decoration: none !important;
  transition: all 0.3s !important; border: 2px solid var(--accent) !important;
}
.nav-cta:hover { background: transparent !important; color: var(--accent) !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:10px; }
.hamburger span { width:24px; height:2px; background:#fff; transition:0.3s; }
.mobile-menu {
  display:none; position:fixed; top:80px; left:0; right:0; bottom:0;
  background: var(--primary); padding:40px; overflow-y:auto; z-index:999;
}
.mobile-menu.open { display:block; }
.mobile-menu a {
  display:block; color:rgba(255,255,255,0.8); text-decoration:none;
  padding:14px 0; font-size:16px; border-bottom:1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a.mobile-sub { padding-left: 24px; font-size: 14px; color: rgba(255,255,255,0.6); }
.mobile-menu ul .sub-menu li a { padding-left: 20px; font-size: 14px; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 80px 40px 80px; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--steel) 100%);
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px);
  color: var(--white); letter-spacing: 2px;
}
.page-header p {
  color: rgba(255,255,255,0.6); font-size: 16px; max-width: 600px;
  margin: 16px auto 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 50%, var(--steel) 100%);
  position: relative; overflow: hidden;
  margin-top: -80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://halanamiru.cz/wp-content/uploads/2024/12/WhatsApp-Image-2024-12-09-at-12.15.09.jpeg') center/cover;
  opacity: 0.15; mix-blend-mode: luminosity;
}
.hero::after {
  content: ''; position: absolute; bottom:0; left:0; right:0; height:200px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-grid {
  position: relative; z-index: 2; max-width: 1340px; margin: 0 auto;
  padding: 60px 40px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-block; padding: 6px 16px; background: rgba(232,168,56,0.15);
  border: 1px solid rgba(232,168,56,0.3); border-radius: 40px;
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 88px);
  color: var(--white); line-height: 0.95; letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--accent); display: block; }
.hero p {
  color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8;
  margin-bottom: 40px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative;
}
.hero-images img {
  width:100%; border-radius: 12px; object-fit:cover;
  box-shadow: var(--shadow-lg);
}
.hero-images img:first-child { height: 320px; grid-column: 1/-1; }
.hero-images img:nth-child(2) { height: 200px; }
.hero-images img:nth-child(3) { height: 200px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--primary); padding: 16px 36px;
  border-radius: 8px; font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; border: 2px solid var(--accent);
}
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── STATS BAR ─── */
.stats-bar {
  position: relative; z-index: 3;
  max-width: 1100px; margin: -60px auto 0; padding: 0 40px;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light); }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: rgba(232,168,56,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.stat-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: 0.5px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 40px; max-width: 1340px; margin: 0 auto;
}
.section-dark { background: var(--primary); max-width: 100%; }
.section-dark .section-inner { max-width: 1340px; margin: 0 auto; padding: 100px 40px; }
.section-accent { background: var(--light); max-width: 100%; }
.section-accent .section-inner { max-width: 1340px; margin: 0 auto; padding: 100px 40px; }
.section-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(232,168,56,0.12); border-radius: 4px;
  color: var(--accent-dark); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-dark .section-tag { background: rgba(232,168,56,0.15); color: var(--accent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px);
  color: var(--primary); line-height: 1.05; letter-spacing: 1px; margin-bottom: 20px;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  font-size: 16px; color: var(--text-light); max-width: 600px; line-height: 1.8;
  margin-bottom: 48px;
}
.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover img { transform: scale(1.05); }
.product-card-img { overflow: hidden; position: relative; }
.product-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: var(--primary);
  padding: 4px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.product-card-body { padding: 32px; }
.product-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 12px;
}
.product-card p {
  color: var(--text-light); font-size: 14px; line-height: 1.8; margin-bottom: 20px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-dark); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: gap 0.3s;
}
.card-link:hover { gap: 14px; }

/* ─── CONTENT BLOCKS ─── */
.content-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin: 60px 0;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block-img {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.content-block-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.content-block-text h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 16px;
}
.content-block-text p {
  color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 16px;
}

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; }
.feature-list li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 500;
}
.feature-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: rgba(232,168,56,0.12);
  color: var(--accent-dark); border-radius: 6px; font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; position: relative;
  cursor: pointer; aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.5), transparent);
  opacity: 0; transition: 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  color: #fff; font-size: 12px; font-weight: 500; z-index: 2;
  opacity: 0; transition: 0.3s; transform: translateY(8px);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ─── RENTAL CARDS ─── */
.rental-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px;
}
.rental-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 400px; cursor: pointer; text-decoration: none; display: block;
}
.rental-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.rental-card:hover img { transform: scale(1.08); }
.rental-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.rental-card-overlay h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--white); letter-spacing: 1px;
}
.rental-card-overlay p {
  color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 8px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 80px 40px;
  background: linear-gradient(135deg, var(--primary), var(--steel));
  border-radius: 20px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(232,168,56,0.08);
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px);
  color: var(--white); letter-spacing: 2px; margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 36px;
}

/* ─── ABOUT VALUES ─── */
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.about-value {
  background: var(--white); padding: 32px; border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all 0.3s;
}
.about-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.about-value-icon { font-size: 32px; margin-bottom: 16px; }
.about-value h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 10px;
}
.about-value p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ─── TREATMENTS ─── */
.treatments-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0;
}
.treatment-item {
  background: var(--light); padding: 20px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  border-left: 3px solid var(--accent);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--primary); margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item-icon {
  width: 48px; height: 48px; background: rgba(232,168,56,0.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-item-text span, .contact-item-text a {
  color: var(--text-light); font-size: 14px; text-decoration: none;
}
.contact-item-text a:hover { color: var(--accent); }
.contact-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); }
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  color: var(--primary); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 14px;
  color: var(--text); background: var(--cream); transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--accent); color: var(--primary);
  border: none; border-radius: 8px; font-family: inherit; font-size: 14px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: var(--accent-dark); }

/* ─── FOOTER ─── */
.footer {
  background: var(--primary); padding: 80px 40px 0;
}
.footer-inner {
  max-width: 1340px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand p {
  color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.8; margin-top: 20px;
}
.footer h4 {
  color: var(--white); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.footer a {
  display: block; color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.3s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1340px; margin: 40px auto 0; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 30px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ─── WPCF7 form ─── */
.wpcf7 .wpcf7-form { display: contents; }
.wpcf7-form p { margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-images { max-width: 600px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr 1fr; }
  .rental-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .section-dark .section-inner, .section-accent .section-inner { padding: 60px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { margin: 40px 20px; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-header { padding: 80px 20px 60px; }
  .treatments-grid { grid-template-columns: 1fr; }
}

/* ─── LEGAL PAGES CONTENT ─── */
.section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--primary); letter-spacing: 1px; margin: 40px 0 12px; }
.section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--primary); letter-spacing: 1px; margin: 28px 0 10px; }
.section p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.section ul, .section ol { color: var(--text-light); font-size: 15px; line-height: 1.8; margin: 0 0 16px 24px; }
.section a { color: var(--accent-dark); }
.section a:hover { color: var(--accent); }

/* ─── MOBILE SUB LINKS ─── */
.mobile-menu a.mobile-sub { padding-left: 28px; font-size: 14px; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.04); }

/* ─── LEGAL CONTENT ─── */
.legal-content {
  max-width: 860px; margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 2px solid var(--accent);
}
.legal-content h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--primary); letter-spacing: 1px;
  margin: 36px 0 12px;
}
.legal-content p {
  color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 14px;
}
.legal-content ul {
  margin: 8px 0 16px 24px; color: var(--text); font-size: 15px; line-height: 1.9;
}
.legal-content a { color: var(--accent-dark); }
.legal-content a:hover { color: var(--accent); }
