/* =========================================================
   Physiotherapie Grigorij Seredenkov – Stylesheet
   ========================================================= */

:root {
  --blue-900: #1B4C5E;
  --blue-800: #234F63;
  --blue-700: #2C6E85;
  --blue-600: #4A9DB8;
  --blue-100: #E3EEF1;
  --blue-50: #F5F3EF;
  --beige-100: #E8E4DD;
  --charcoal: #26241F;
  --text-dark: #2A2A2A;
  --text-gray: #6B675F;
  --white: #ffffff;
  --border: #E2DED4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(38, 36, 31, 0.08);
  --shadow-hover: 0 16px 40px rgba(38, 36, 31, 0.14);
  --max-width: 1180px;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--blue-900);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-gray); }

.eyebrow {
  display: inline-block;
  color: var(--blue-700);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p {
  margin-top: 12px;
}

.bg-light {
  background: var(--blue-50);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(13, 95, 163, 0.3);
}

.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13, 95, 163, 0.38);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-700);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.btn-outline-blue:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.job-banner {
  display: block;
  background: var(--blue-100);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.job-banner:hover {
  background: var(--beige-100);
}

.job-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 24px;
  text-align: center;
}

.job-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--blue-900);
}

.job-banner-text svg { flex-shrink: 0; }

.job-banner-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-700);
  white-space: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--blue-900);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .brand-logo img {
  filter: brightness(0) invert(1);
}

.brand-text span {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-gray);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-700);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue-800);
  white-space: nowrap;
}

.nav-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue-900);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 70%);
  color: var(--text-dark);
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(44,110,133,0.07) 0, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(44,110,133,0.05) 0, transparent 40%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  border: 1px solid var(--border);
  color: var(--blue-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--blue-900);
  margin-bottom: 20px;
}

.hero p.lead {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .art-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 380px;
}

.hero-art .art-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.hero-stats div {
  text-align: center;
  border-radius: 14px;
  background: var(--beige-100);
  border: 1px solid var(--border);
  padding: 14px 8px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--blue-900);
}

.hero-stats span {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.hero-logo-frame {
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(180deg, var(--blue-50), var(--white));
  color: var(--text-dark);
  padding: 70px 0 60px;
  text-align: center;
}

.page-hero h1 { color: var(--blue-900); margin-bottom: 12px; }
.page-hero p { color: var(--text-gray); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 14px;
}

.breadcrumb a { color: var(--blue-700); font-weight: 600; }

.page-banner {
  max-width: var(--max-width);
  margin: -44px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.page-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  display: block;
  border: 4px solid var(--white);
}

/* =========================================================
   Cards / Grids
   ========================================================= */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.96rem;
}

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  color: var(--blue-700);
  font-size: 0.92rem;
}

/* Service detail rows (Leistungen page) */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child { border-bottom: none; }

.service-row .card-icon {
  width: 70px;
  height: 70px;
}

.service-row h3 {
  margin-bottom: 8px;
}

/* Why-us / feature list */
.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item .check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h4 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.93rem;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-portrait {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--beige-100), var(--white));
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
}

.about-portrait .avatar-circle {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(10,74,128,0.18);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 15%;
  box-sizing: border-box;
}

.about-portrait .avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.about-text p { margin-bottom: 16px; }

.quote-block {
  border-left: 4px solid var(--blue-700);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-weight: 500;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.credentials .feature-item p { display: none; }

/* Team / expertise photo block */
.team-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.team-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Google reviews */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.rating-summary .score {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1;
}

.stars {
  color: #f5a623;
  display: flex;
  gap: 2px;
}

.rating-summary .rating-meta {
  font-size: 0.88rem;
  color: var(--text-gray);
}

.rating-summary .google-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  height: 100%;
}

.review-card .stars {
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.94rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 600;
}

.review-card .reviewer .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  margin: 0 24px;
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.86); max-width: 500px; margin: 0 auto 28px; }

/* =========================================================
   Karriere page
   ========================================================= */

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.job-tag {
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.job-section {
  margin-bottom: 28px;
}

.job-section h3 {
  margin-bottom: 14px;
}

.job-section ul {
  display: grid;
  gap: 10px;
}

.job-section li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-gray);
  font-size: 0.97rem;
}

.job-section li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blue-700);
}

.apply-box {
  background: var(--blue-50);
  border: 1px dashed var(--blue-600);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-top: 8px;
}

.apply-box p { margin-bottom: 18px; }

/* =========================================================
   Kontakt page
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }

.info-row .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.info-row h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: var(--blue-900);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--text-dark);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--blue-900); }
.hours-table td:last-child { text-align: right; color: var(--text-gray); }

.hours-table tr.closed td:last-child { color: #b3474c; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-placeholder {
  height: 100%;
  min-height: 420px;
  background: var(--blue-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 18px;
}

.map-placeholder svg { color: var(--blue-700); }
.map-placeholder p { font-size: 0.9rem; max-width: 320px; }
.map-placeholder a { color: var(--blue-700); text-decoration: underline; }

/* Cookie / consent banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 22px 26px;
  z-index: 2000;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.cookie-banner a { color: var(--blue-700); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

/* Job popup (persistent side widget) */
.job-popup {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  z-index: 1900;
  display: none;
}

.job-popup.visible { display: block; }

.job-popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-gray);
  padding: 4px;
}

.job-popup-close:hover { color: var(--text-dark); }

.job-popup-link {
  display: block;
  text-decoration: none;
  padding-right: 10px;
}

.job-popup-title {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--blue-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.job-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-700);
}

@media (max-width: 480px) {
  .job-popup { right: 12px; width: 190px; padding: 16px 16px 14px; }
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand .brand-text span { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--blue-600); }

.footer-legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal a { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--blue-600); }

.footer-col .info-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-col .info-item svg { flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.6); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .navbar { gap: 10px; }
  .navbar .btn-primary { padding: 11px 18px; font-size: 0.9rem; }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 1000;
  }
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .page-banner { margin-top: -28px; }
  .page-banner img { height: 200px; border-radius: 16px; }
  .rating-summary { padding: 20px; gap: 14px; }
  .rating-summary .google-badge { margin-left: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone span.phone-text { display: none; }
  .navbar { gap: 10px; }
  .nav-actions { gap: 10px; }
  .navbar .btn-primary { padding: 11px 16px; font-size: 0.88rem; }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .section { padding: 56px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 26px 0; }
  .service-row .card-icon { width: 52px; height: 52px; }
  .cta-band { margin: 0 16px; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .job-card { padding: 28px 22px; }
  .job-header { flex-direction: column; }
  .credentials { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 80px; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .navbar { padding: 14px 16px; }
  .brand-text { display: none; }
  .nav-phone { display: none; }
  .navbar .btn-primary { padding: 10px 14px; font-size: 0.82rem; }
  .section-header { margin-bottom: 32px; }
}
