/* ============================================================
   rbm – Rita Bernhart-Mader
   Diplom-Dolmetscherin & Übersetzerin
   Style Sheet
   ============================================================ */

/* === CSS Variables === */
:root {
  --primary:        #1E3A5F;
  --primary-light:  #2D5A8E;
  --primary-dark:   #122440;
  --primary-faint:  #EBF0F7;
  --accent:         #C9A87C;
  --accent-light:   #E0CEAD;
  --bg:             #FAFAF8;
  --bg-warm:        #F5F1EC;
  --surface:        #FFFFFF;
  --text:           #2A2829;
  --text-muted:     #6B6370;
  --border:         #E4DDD8;

  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Raleway', 'Segoe UI', sans-serif;

  --shadow-xs:  0 1px 4px rgba(30, 58, 95, 0.07);
  --shadow-sm:  0 2px 12px rgba(30, 58, 95, 0.09);
  --shadow-md:  0 6px 28px rgba(30, 58, 95, 0.13);
  --shadow-lg:  0 14px 50px rgba(30, 58, 95, 0.16);

  --radius-sm:  3px;
  --radius:     6px;
  --radius-lg:  14px;

  --max-w:      1100px;
  --header-h:   88px;
  --ease:       0.25s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.3rem; }

/* === Layout === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 4rem 0; }
section.section-sm { padding: 2.5rem 0; }
main { padding-top: var(--header-h); }

/* === Utility === */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* === Animations === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #b8935e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 46px; width: auto; filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(130%) brightness(87%); }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
.logo-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-right: 1.25rem;
}
.nav-links a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem; right: 0.75rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  border-left: 1px solid var(--border);
  padding-left: 1rem;
  margin-left: 0.25rem;
}
.lang-btn {
  padding: 0.2rem 0.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
}
.lang-btn:hover, .lang-btn.active { color: var(--primary); }
.lang-sep { color: var(--border); font-size: 0.65rem; user-select: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--ease);
}
/* Mobile language switcher (inside hamburger menu) */
.nav-lang-mobile { display: none; }

/* === Section Eyebrow / Divider === */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.divider {
  width: 44px; height: 2px;
  background: var(--accent);
  margin: 0.9rem 0 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.75rem;
}
.section-lead-center { margin-left: auto; margin-right: auto; text-align: center; }

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  max-height: 820px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2rem 3.5rem 5%;
  max-width: 660px;
}
.hero-content .eyebrow { margin-bottom: 1.2rem; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--primary-dark);
  line-height: 1.08;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}
.hero-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
}

/* === Values Strip === */
.values-strip {
  background: linear-gradient(135deg, #071525 0%, #0f2035 28%, var(--primary-dark) 50%, #0f2035 72%, #071525 100%);
  padding: 4rem 0;
  border-top: 3px solid rgba(201,168,124,0.55);
  border-bottom: 1px solid rgba(201,168,124,0.2);
  position: relative;
}
.values-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.values-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0 3.5rem;
  color: rgba(255,255,255,0.95);
}
.value-item:not(:last-child) {
  border-right: 1px solid rgba(201,168,124,0.4);
}
.value-icon {
  font-size: 2.1rem;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(201,168,124,0.8));
}
.value-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: white;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45), 0 0 28px rgba(201,168,124,0.18);
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2.2rem;
  transition: all var(--ease);
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 50px; height: 50px;
  background: var(--primary-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--primary);
  font-size: 1.3rem;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.service-card p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-card .btn { font-size: 0.76rem; }

/* === About Section === */
.about-section { background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 110px;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.35;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.about-bullets li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* === CTA Banner === */
.cta-section {
  background: var(--primary);
  text-align: center;
}
.cta-section h2  { color: #fff; margin-bottom: 1rem; }
.cta-section p   { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2.2rem; }
.cta-section .btn-accent { font-size: 0.88rem; padding: 0.9rem 2.2rem; }

/* === Page Header (inner pages) === */
.page-header {
  background: var(--bg-warm);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* === Two-Col Layout === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === Content Body (for inner pages) === */
.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.content-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}
.content-body ul { padding-left: 1.4rem; }
.content-body li { color: var(--text-muted); margin-bottom: 0.4rem; }
.content-body p  { color: var(--text-muted); }

.highlight-box {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  padding: 1.4rem 1.8rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.highlight-box p:last-child { margin-bottom: 0; }

/* === Icon List (services detail) === */
.icon-list { list-style: none; padding: 0; }
.icon-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.icon-list li:last-child { border-bottom: none; }
.icon-list-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* === Contact Page === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { padding-top: 0.5rem; }
.contact-info-block h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--primary-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-detail-body { font-size: 0.93rem; line-height: 1.55; }
.contact-detail-body strong {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-detail-body a { color: var(--text); }
.contact-detail-body a:hover { color: var(--primary); }

/* Map / Directions box */
.directions-box {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.directions-box strong { color: var(--text); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }

/* Contact Form */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-card .form-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
/* Auto-append * to labels of required fields */
.form-group label:has(+ input[required])::after,
.form-group label:has(+ textarea[required])::after {
  content: ' *';
  color: #c0392b;
  font-size: 1.3em;
  line-height: 1;
  vertical-align: middle;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.68rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.10);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[type="file"] { padding: 0.5rem; cursor: pointer; }
.form-required-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.form-file-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}
.form-checkbox input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-checkbox label a { color: var(--primary); text-decoration: underline; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-feedback--success {
  background: #edf7f0;
  border: 1px solid #b8dfc4;
  color: #1f5c36;
}

.form-feedback--error {
  background: #fdf0f0;
  border: 1px solid #e8b4b4;
  color: #8b1e1e;
}

/* === Prices page === */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.price-card h3 { margin-bottom: 0.75rem; }
.price-card p  { color: var(--text-muted); font-size: 0.95rem; }
.price-card .highlight-box { margin-top: auto; }
.price-card .btn { margin-top: 1.5rem; }

/* Equal-height two-col variant */
.two-col-stretch { align-items: stretch; }

/* === Legal pages === */
.legal-body { max-width: 760px; }
.legal-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
}
.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.legal-body p,
.legal-body li { font-size: 0.9rem; color: var(--text-muted); }
.legal-body ul  { padding-left: 1.2rem; }
.legal-body a   { color: var(--primary); }

/* === Footer Strip === */
.footer-strip {
  background: var(--primary-dark);
  padding: 0.9rem 0;
}
.footer-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.footer-strip-item svg { color: var(--accent-light); flex-shrink: 0; }
.footer-strip-item a { color: rgba(255,255,255,0.9); }
.footer-strip-item a:hover { color: var(--accent-light); }

/* === Footer === */
.site-footer { background: var(--primary-dark); }
.footer-main {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-logo {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.footer-nav-links { list-style: none; padding: 0; }
.footer-nav-links li { margin-bottom: 0.45rem; }
.footer-nav-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-nav-links a:hover { color: #fff; }
.footer-contact-line {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
.footer-contact-line a { color: rgba(255,255,255,0.6); }
.footer-contact-line a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* === WhatsApp Float Button === */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  z-index: 900;
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  color: #fff;
}
.whatsapp-float svg { color: #fff; }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 108px; }

  /* ── Always-visible nav strip (no hamburger) ── */
  .nav-toggle { display: none; }

  .site-header { height: auto; }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.55rem 1.25rem 0;
    align-items: center;
  }

  .site-logo { flex: 1; }

  .site-nav {
    width: 100%;
    border-top: 1px solid var(--border);
    margin-top: 0.4rem;
  }

  .nav-links {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    flex-direction: row;
    flex-wrap: wrap;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    padding: 0.2rem 0 0.5rem;
    margin-right: 0;
    gap: 0;
    transition: none;
  }
  .nav-links a {
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
    border-bottom: none;
    white-space: nowrap;
  }
  .nav-links a::after { display: none; }

  .lang-switcher {
    display: flex;
    border-left: none;
    padding-left: 0;
    margin-left: auto;
  }

  .nav-lang-mobile { display: none; }

  .values-strip { padding: 2.5rem 0; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    height: 62vw;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    object-position: center 12%;
  }
  .hero-image::after { display: none; }
  .hero-content { padding: 3rem 2rem; }

  .values-row { flex-wrap: wrap; gap: 0.5rem; }
  .value-item {
    padding: 0.5rem 1.2rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    width: 48%;
    justify-content: center;
  }

  .services-grid,
  .about-grid,
  .two-col,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-img-wrap img,
  .two-col-img img    { height: auto; aspect-ratio: unset; }
  .about-img-accent { display: none; }
  .about-stats { justify-content: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom-row { flex-direction: column; gap: 0.6rem; text-align: center; }
  .footer-strip-row { justify-content: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
  .value-item { width: 100%; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 2.5rem 1.25rem; }
  .hero-title { white-space: normal; }
  .contact-form-card { padding: 2rem 1.5rem; }
  /* Logo shrink */
  .logo-name  { font-size: 0.92rem; }
  .logo-title { font-size: 0.58rem; }
  /* Stats */
  .stat-num { font-size: 2.2rem; }
  /* Page header */
  .page-header { padding: 2.5rem 0 1.5rem; }
  /* Values strip */
  .values-strip { padding: 1.8rem 0; }
  /* Cards */
  .price-card   { padding: 1.6rem 1.4rem; }
  .service-card { padding: 1.6rem 1.4rem; }
}
