/*
Theme Name: MK Consulting HB
Theme URI: https://www.mk-consultinghb.de
Author: Martin Krause
Author URI: https://www.mk-consultinghb.de
Description: Individuelles WordPress-Theme für MK Consulting HB (Rhetorik-, Bewerbungs- und Life-Coaching in Bremen).
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: mkconsultinghb
*/

/* =========================================================
   MK Consulting HB – Stylesheet
   Farben & Formen abgeleitet aus dem Logo (Aquamarin + Gold)
   ========================================================= */

:root {
  --aqua-dark: #055F6A;
  --aqua-bright: #0ABFBC;
  --gold-light: #EDD07A;
  --gold-mid: #C9922B;
  --gold-dark: #8B6214;
  --gold-line: #D4AF5A;
  --ink: #10282B;
  --paper: #FAF9F6;
  --paper-alt: #F0EEE7;
  --max-width: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em 0;
  color: var(--aqua-dark);
}

h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em 0; }

a { color: var(--aqua-dark); text-decoration: none; }
a:hover { color: var(--gold-dark); }

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

.script-gold {
  font-family: 'Alex Brush', 'Brush Script MT', cursive;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-light), var(--gold-mid) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold-mid);
  line-height: 1.1;
  margin-bottom: 0.3em;
}

/* ---------- Skip Link (Barrierefreiheit) ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-light);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(100deg, var(--aqua-dark), var(--aqua-bright));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(5, 30, 33, 0.15);
  overflow: hidden;
}

.header-graphic {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.brand-text span { display: block; font-family: Arial, sans-serif; font-style: normal; font-size: 0.6rem; letter-spacing: 3px; color: var(--gold-light); opacity: 0.85; }

.brand-text-white {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.55rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.brand-text-white em { font-style: italic; color: var(--gold-light); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.2px;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  background: rgba(237, 208, 122, 0.18);
  color: var(--gold-light);
}

.lang-switch {
  display: flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(237, 208, 122, 0.3);
}

.lang-dropdown { position: relative; }

.lang-dropdown summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.lang-dropdown summary::-webkit-details-marker { display: none; }
.lang-dropdown summary::after { content: "\25BE"; font-size: 0.75rem; margin-left: 2px; opacity: 0.8; }
.lang-dropdown summary:hover { background: rgba(237, 208, 122, 0.18); }
.lang-dropdown summary img { display: block; border-radius: 2px; }

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.15);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(5, 30, 33, 0.18);
  padding: 6px;
  min-width: 140px;
  z-index: 50;
}
.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.lang-dropdown-menu a:hover { background: var(--paper-alt); color: var(--ink); }
.lang-dropdown-menu a.active { color: var(--aqua-dark); font-weight: 700; }
.lang-dropdown-menu a img { border-radius: 2px; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold-light);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
}

/* ---------- Wave divider (Signatur-Element) ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  margin: 0;
}
.wave-divider path { fill: none; stroke: var(--gold-line); stroke-width: 1.4; opacity: 0.55; }
.wave-divider.flip { transform: scaleY(-1); }

/* ---------- Hero ---------- */
.hero {
  background: var(--paper-alt);
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(5, 30, 33, 0.18);
}

.lead {
  font-size: 1.15rem;
  color: var(--ink);
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--paper-alt); }

.section-title-wrap { max-width: 720px; margin-bottom: 32px; }

.eyebrow {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Cards / Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.card ul { padding-left: 1.1em; margin: 0; }
.card li { margin-bottom: 8px; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-dark), var(--aqua-bright));
  margin-bottom: 14px;
}

/* ---------- Referenzen ---------- */
.ref-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(5, 95, 106, 0.12);
}
.ref-item:last-child { border-bottom: none; }
.ref-logo {
  flex: none;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-line);
}
.ref-logo img { width: 100%; height: 100%; object-fit: contain; background: var(--paper); }
.ref-text h3 { margin-bottom: 4px; }
.ref-tag { font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }
.ref-quote { font-style: italic; color: var(--ink); margin: 6px 0 8px; }

/* ---------- Cookie-Consent-Banner ---------- */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 16px;
}
#cookie-consent-banner .cc-box {
  max-width: 720px;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: 0 -8px 30px rgba(5, 30, 33, 0.25);
  padding: 22px 26px;
}
.cc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--aqua-dark);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}
.cc-text { font-size: 0.92rem; margin: 0 0 14px 0; }
.cc-settings {
  border-top: 1px solid rgba(5, 95, 106, 0.15);
  padding-top: 12px;
  margin-bottom: 14px;
}
.cc-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.cc-option input { margin: 0; }
.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cc-actions .btn { padding: 10px 20px; font-size: 0.92rem; }

@media (max-width: 560px) {
  .cc-actions { flex-direction: column; }
  .cc-actions .btn { width: 100%; text-align: center; }
}

/* ---------- Produkte ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-tile {
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(5, 30, 33, 0.12);
}
.product-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--aqua-dark), var(--aqua-bright));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-tile.gold .product-icon {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
}
.product-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.product-tile h3 { font-size: 1.15rem; margin-bottom: 10px; }
.product-tile p { font-size: 0.95rem; flex-grow: 1; }
.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-tile .btn-outline {
  margin-top: 14px;
  border-color: var(--aqua-dark);
  color: var(--aqua-dark);
  align-self: center;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Termine ---------- */
[id] { scroll-margin-top: 110px; }

.product-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}
.product-detail .card { height: 100%; }
.price-box {
  background: var(--paper-alt);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 18px 0;
  font-weight: 700;
  color: var(--aqua-dark);
}
.price-box span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--ink); margin-top: 2px; }

.termine-list { list-style: none; padding: 0; margin: 0 0 12px 0; }
.termine-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(5, 95, 106, 0.12);
}
.termine-item:last-child { border-bottom: none; }
.termine-date { font-weight: 600; color: var(--aqua-dark); font-size: 0.95rem; }
.termine-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.termine-status.frei { background: rgba(10, 191, 188, 0.15); color: var(--aqua-dark); }
.termine-status.belegt { background: rgba(139, 98, 20, 0.12); color: var(--gold-dark); }
.termine-note { font-size: 0.85rem; color: var(--ink); margin-top: 10px; }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 50px 18px 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--aqua-dark);
  font-size: 1.05rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-family: Arial, sans-serif;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid rgba(5, 95, 106, 0.12); }
.faq-answer { padding: 4px 22px 20px 22px; }
.faq-answer p { margin: 0; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card img { width: 100%; height: auto; display: block; }
.blog-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { font-size: 0.8rem; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.95rem; flex-grow: 1; }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { margin-top: 1.6em; }
.article-body figure { margin: 28px 0; text-align: center; }
.article-body figure img { max-width: 100%; border-radius: var(--radius); }
.article-body figcaption { font-size: 0.85rem; color: var(--gold-dark); margin-top: 10px; }
.article-meta { font-size: 0.85rem; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Formular: Radiobuttons & Validierung ---------- */
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.radio-option input { margin: 0; }

.field-error {
  display: block;
  color: #a33b28;
  font-size: 0.82rem;
  margin-top: 5px;
  min-height: 1.1em;
}
.field-invalid { border-color: #c8503c !important; outline-color: #c8503c !important; }

[data-conditional] {
  border-top: 1px dashed rgba(5, 95, 106, 0.2);
  margin-top: 22px;
  padding-top: 18px;
}

.btn-placeholder {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-placeholder-note {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 8px;
}

/* ---------- Video-Platzhalter ---------- */
.video-placeholder {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--aqua-dark), var(--aqua-bright));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner {
  text-align: center;
  color: var(--paper);
}
.video-placeholder-inner svg { display: block; margin: 0 auto 12px; }
.video-placeholder-inner p { margin: 0; font-weight: 600; opacity: 0.9; }

.video-placeholder.small { max-width: 100%; aspect-ratio: 16 / 9; margin: 0; }

/* ---------- Portfolio: Feature-Bänder (statt Kacheln) ---------- */
.feature-band {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(5, 95, 106, 0.12);
}
.feature-band:last-child { border-bottom: none; }

.feature-band-icon {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-band-icon.aqua { background: linear-gradient(135deg, var(--aqua-dark), var(--aqua-bright)); }
.feature-band-icon.gold { background: linear-gradient(135deg, var(--gold-mid), var(--gold-light)); }
.feature-band-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.8; }

.feature-band-content { flex: 1; min-width: 0; }
.feature-band-content h2 { margin-bottom: 10px; }

.chip-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 18px 0 10px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--paper-alt);
  border: 1px solid rgba(212, 175, 90, 0.45);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--aqua-dark);
  transition: background 0.2s ease, color 0.2s ease;
}
.chip:hover { background: var(--gold-light); color: var(--ink); }

@media (max-width: 700px) {
  .feature-band { flex-direction: column; gap: 16px; }
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--paper);
  border: 1px solid rgba(5, 95, 106, 0.12);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  position: relative;
}
.testimonial::before {
  content: "\201E";
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  color: var(--gold-line);
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
  opacity: 0.6;
}
.testimonial-quote {
  font-style: italic;
  color: var(--ink);
  margin: 20px 0 14px;
  padding-left: 4px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Partner ---------- */
.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
}
.partner-list li {
  background: var(--paper);
  border: 1px solid rgba(212, 175, 90, 0.4);
  border-radius: var(--radius);
  padding: 22px 18px;
  font-weight: 600;
  color: var(--aqua-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.partner-logo {
  display: block;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-line);
  flex: none;
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; background: var(--paper); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(100deg, var(--aqua-dark), var(--aqua-bright));
  color: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.cta-band h2 { color: var(--gold-light); }
.cta-band p { color: var(--paper); }

.btn {
  display: inline-block;
  background: var(--gold-line);
  color: var(--ink);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(139, 98, 20, 0.3); color: var(--ink); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-light);
  color: var(--gold-light);
}

/* ---------- Formular ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; color: var(--aqua-dark); }
.required { color: var(--gold-dark); }

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(5, 95, 106, 0.3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}
input:focus, textarea:focus {
  outline: 3px solid var(--gold-line);
  outline-offset: 1px;
  border-color: var(--aqua-bright);
}

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; }
.checkbox-row input { margin-top: 5px; }
.checkbox-row label { font-weight: 400; margin-bottom: 0; }

#form-success, #form-error {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}
#form-success { background: rgba(10, 191, 188, 0.15); color: var(--aqua-dark); border: 1px solid var(--aqua-bright); }
#form-error { background: rgba(200, 60, 40, 0.1); color: #8a2c1d; border: 1px solid #c8503c; }

/* ---------- Kontakt-Infos ---------- */
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper-alt);
  padding: 40px 0 24px;
  margin-top: 40px;
}
.site-footer a { color: var(--gold-light); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.footer-note { font-size: 0.85rem; opacity: 0.75; margin-top: 18px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 280px; margin: 0 auto; }
  .grid-2, .grid-3, .partner-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--aqua-dark);
    display: none;
    flex-direction: column;
    padding: 8px 24px 20px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  nav.main-nav a { display: block; padding: 12px 8px; }
  .lang-switch { border-left: none; border-top: 1px solid rgba(237, 208, 122, 0.3); padding-left: 0; padding-top: 14px; margin-top: 6px; width: 100%; }
  .nav-toggle { display: inline-block; }
  .site-header { position: relative; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
