/*
Theme Name: Cut & Color-Deluxe Friseur – Brutalism
Theme URI: https://cut-color-deluxe-friseur-1.lead.bummeltech.com/
Author: Cut & Color-Deluxe Friseur
Description: Brutalist theme for Cut & Color-Deluxe Friseur – raw, high contrast, bold.
Version: 1.0.0
Text Domain: ccd-friseur
*/

/* === IMPORT SPACE MONO === */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --color-black:   #000000;
  --color-white:   #FFFFFF;
  --color-red:     #FF0000;
  --color-blue:    #0000FF;
  --color-yellow:  #FFFF00;
  --color-green:   #00FF00;

  --color-primary:    var(--color-red);
  --color-secondary:  var(--color-blue);
  --color-accent:     var(--color-yellow);
  --color-bg:         var(--color-white);
  --color-fg:         var(--color-black);

  --border: 3px solid var(--color-black);
  --border-thick: 5px solid var(--color-black);
  --font-main: 'Space Mono', monospace, system-ui;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
  transition: none !important;
  animation-timing-function: step-end !important;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-main);
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 700;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  text-decoration: none;
}

a:focus {
  outline: 3px solid var(--color-red);
  outline-offset: 2px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-weight: 400; line-height: 1.7; }

/* === LAYOUT UTILS === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.brutalist-block {
  border: var(--border);
  padding: 24px;
  background: var(--color-white);
}

/* === HEADER & NAVBAR === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-black);
  border-bottom: var(--border-thick);
  border-bottom-color: var(--color-red);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  min-height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-white);
}

.site-logo a:hover {
  background: none;
  color: var(--color-red);
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu-wrap ul {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-menu-wrap ul li a {
  display: block;
  padding: 8px 16px;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-left: 2px solid transparent;
}

.nav-menu-wrap ul li a:hover {
  background: var(--color-red);
  color: var(--color-white);
  border-left-color: var(--color-yellow);
}

.nav-menu-wrap ul li a:focus {
  outline: 3px solid var(--color-yellow);
  outline-offset: -3px;
}

.nav-cta {
  margin-left: 16px;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border: 3px solid var(--color-black);
  text-decoration: none;
  cursor: pointer;
  background: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-black);
  color: var(--color-yellow);
  border-color: var(--color-black);
}

.btn-secondary {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-yellow);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* BURGER MENU */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--color-white);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  height: 3px;
  background: var(--color-white);
  width: 100%;
}

.burger-btn:focus {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

/* MOBILE NAV OVERLAY */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  z-index: 2000;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

#mobile-nav.is-open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--color-red);
  padding-bottom: 16px;
}

.mobile-nav-close {
  background: none;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#mobile-nav ul li a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 2px solid #333;
  letter-spacing: 0.05em;
}

#mobile-nav ul li a:hover {
  color: var(--color-yellow);
  background: none;
}

#mobile-nav .mobile-nav-cta {
  margin-top: 40px;
}

/* === HERO SLIDER === */
#hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: var(--border-thick);
  background: var(--color-black);
  min-height: 500px;
}

.slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  min-height: 500px;
}

.slide-item.is-active {
  display: block;
}

.slide-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.8);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: var(--color-black);
  border-top: 5px solid var(--color-red);
}

.slide-label {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.slide-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 8px;
}

.slide-excerpt {
  color: #ccc;
  font-weight: 400;
  font-size: 0.9rem;
  max-width: 600px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-yellow);
  border-top: var(--border);
  padding: 12px 40px;
}

.slider-btn {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 16px;
  height: 16px;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
}

.slider-counter {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-black);
}

/* === SECTIONS GENERAL === */
.section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.section-label-red {
  background: var(--color-red);
  color: var(--color-white);
}

.section-label-yellow {
  background: var(--color-yellow);
  color: var(--color-black);
}

.section-label-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 700px;
}

/* === VALUE PROP (HERO TEXT) === */
#hero-text {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 0;
  border-bottom: 5px solid var(--color-yellow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border: var(--border-thick);
  border-color: var(--color-yellow);
}

.hero-main {
  padding: 48px;
  border-right: 5px solid var(--color-yellow);
}

.hero-headline {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-red);
}

.hero-subtext {
  color: #ccc;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-side {
  padding: 48px 32px;
  background: var(--color-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-side h3 {
  color: var(--color-black);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.hero-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-black);
}

.hero-contact-list .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--color-black);
}

/* === SERVICES SECTION === */
#services {
  background: var(--color-white);
  border-bottom: var(--border-thick);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: var(--border);
}

.service-card {
  border: var(--border);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(odd) {
  background: var(--color-white);
}

.service-card:nth-child(even) {
  background: var(--color-black);
  color: var(--color-white);
}

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: var(--border);
  filter: contrast(1.1) saturate(0.7);
}

.service-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  z-index: 1;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:nth-child(even) .service-card-body a {
  color: var(--color-yellow);
}

.service-card-title {
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
}

.service-card-excerpt {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.service-card:nth-child(even) .service-card-excerpt {
  color: #ccc;
}

.service-card-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  align-self: flex-start;
  color: var(--color-blue);
}

/* === ABOUT STRIP === */
#about-strip {
  background: var(--color-red);
  color: var(--color-white);
  padding: 60px 0;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  border-color: var(--color-black);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-strip-text {
  padding: 40px;
  border-right: 3px solid var(--color-white);
}

.about-strip-text h2 {
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.about-strip-text p {
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 24px;
}

.about-strip-facts {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fact-item {
  border-left: 5px solid var(--color-yellow);
  padding-left: 16px;
}

.fact-item strong {
  display: block;
  font-size: 2rem;
  color: var(--color-yellow);
  line-height: 1;
}

.fact-item span {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

/* === HOURS SECTION === */
#hours {
  background: var(--color-yellow);
  padding: 80px 0;
  border-bottom: var(--border-thick);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-thick);
  border-color: var(--color-black);
}

.hours-left {
  padding: 48px;
  background: var(--color-black);
  color: var(--color-white);
  border-right: var(--border-thick);
}

.hours-left h2 {
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.hours-left p {
  color: #ccc;
  font-weight: 400;
}

.hours-right {
  padding: 48px;
  background: var(--color-yellow);
}

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

.hours-table tr {
  border-bottom: 2px solid var(--color-black);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  vertical-align: middle;
}

.hours-table .day {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 40%;
}

.hours-table .closed {
  color: var(--color-red);
  font-weight: 700;
}

/* === CTA SECTION === */
#cta-section {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
  border-bottom: var(--border-thick);
}

#cta-section h2 {
  color: var(--color-yellow);
  margin-bottom: 24px;
}

#cta-section p {
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
#site-footer {
  background: var(--color-black);
  color: var(--color-white);
  border-top: 5px solid var(--color-yellow);
}

.footer-top {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: var(--border);
  border-color: #333;
}

.footer-col {
  padding: 0 32px;
  border-right: 1px solid #333;
}

.footer-col:first-child {
  padding-left: 0;
}

.footer-col:last-child {
  border-right: none;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-slogan {
  color: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--color-yellow);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-nav li a:hover {
  color: var(--color-yellow);
  background: none;
}

.footer-address {
  font-size: 0.85rem;
  font-weight: 400;
  color: #ccc;
  line-height: 1.8;
}

.footer-address strong {
  color: var(--color-white);
  display: block;
  margin-bottom: 4px;
}

.footer-phone {
  display: block;
  margin-top: 12px;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
}

.footer-legal-nav {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-legal-nav li a {
  font-size: 0.75rem;
  color: #666;
  text-decoration: none;
}

.footer-legal-nav li a:hover {
  color: var(--color-yellow);
  background: none;
}

/* === PAGE HEADER === */
.page-header {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 48px;
  border-bottom: 5px solid var(--color-red);
}

.page-header .breadcrumb {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-header .breadcrumb a {
  color: var(--color-yellow);
  text-decoration: none;
}

.page-header h1 {
  color: var(--color-white);
}

.page-header .page-intro {
  color: #aaa;
  font-weight: 400;
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;
}

/* === PAGE CONTENT === */
.page-content-wrap {
  padding: 80px 0;
}

.entry-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-black);
}

.entry-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.entry-content p {
  margin-bottom: 20px;
  font-weight: 400;
}

.entry-content ul, .entry-content ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.entry-content li {
  margin-bottom: 8px;
  font-weight: 400;
}

.entry-content a {
  color: var(--color-blue);
}

.entry-content strong {
  font-weight: 700;
  background: var(--color-yellow);
  padding: 0 2px;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-thick);
  margin-top: 48px;
}

.contact-info-panel {
  background: var(--color-black);
  color: var(--color-white);
  padding: 48px;
  border-right: var(--border-thick);
}

.contact-info-panel h2 {
  color: var(--color-yellow);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--color-yellow);
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  color: var(--color-yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.contact-info-text span, .contact-info-text a {
  font-weight: 400;
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--color-yellow);
  background: none;
}

.contact-form-panel {
  background: var(--color-white);
  padding: 48px;
}

.contact-form-panel h2 {
  margin-bottom: 32px;
}

.wpcf7, .contact-form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === LEISTUNGEN PAGE === */
.services-list-section {
  padding: 80px 0;
}

.service-detail-card {
  border: var(--border-thick);
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.service-detail-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.service-detail-card:nth-child(even) .sdc-image {
  order: 2;
}

.service-detail-card:nth-child(even) .sdc-body {
  order: 1;
  border-left: none;
  border-right: var(--border-thick);
}

.sdc-image {
  overflow: hidden;
}

.sdc-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.8);
}

.sdc-body {
  padding: 48px;
  border-left: var(--border-thick);
  background: var(--color-white);
}

.service-detail-card:nth-child(even) .sdc-body {
  background: var(--color-black);
  color: var(--color-white);
}

.service-detail-card:nth-child(even) .sdc-body h3 {
  color: var(--color-yellow);
}

.service-detail-card:nth-child(even) .sdc-body p {
  color: #ccc;
}

.sdc-body h3 {
  margin-bottom: 16px;
  color: var(--color-black);
}

.sdc-body p {
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.7;
}

.sdc-body .btn {
  display: inline-block;
}

/* === ÜBER UNS PAGE === */
.about-hero-section {
  padding: 80px 0;
  background: var(--color-black);
  color: var(--color-white);
  border-bottom: 5px solid var(--color-yellow);
}

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

.about-hero-text h2 {
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.about-hero-text p {
  color: #ccc;
  font-weight: 400;
  margin-bottom: 16px;
}

.about-hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 5px solid var(--color-yellow);
  filter: contrast(1.1) saturate(0.8);
}

.about-values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border-thick);
}

.value-item {
  padding: 40px 32px;
  border-right: var(--border);
}

.value-item:last-child {
  border-right: none;
}

.value-item:nth-child(2) {
  background: var(--color-yellow);
}

.value-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 16px;
}

.value-item:nth-child(2) .value-num {
  color: var(--color-black);
}

.value-item h4 {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.value-item p {
  font-weight: 400;
  font-size: 0.9rem;
}

/* === KARRIERE PAGE === */
.karriere-intro {
  padding: 80px 0;
  background: var(--color-yellow);
  border-bottom: var(--border-thick);
}

.karriere-intro h2 {
  margin-bottom: 24px;
}

.karriere-intro p {
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 700px;
}

.karriere-form-section {
  padding: 80px 0;
}

/* === SINGLE SERVICE === */
.single-service-wrap {
  padding: 80px 0;
}

.single-service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-thick);
  margin-bottom: 60px;
}

.single-service-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-right: var(--border-thick);
  filter: contrast(1.1) saturate(0.8);
}

.single-service-info {
  padding: 48px;
  background: var(--color-black);
  color: var(--color-white);
}

.single-service-info h2 {
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.single-service-info .entry-content {
  color: #ccc;
}

.single-service-info .entry-content h2,
.single-service-info .entry-content h3 {
  color: var(--color-yellow);
}

.single-service-info .entry-content strong {
  background: none;
  color: var(--color-yellow);
}

/* === WP CLASSES === */
.wp-block-image {
  margin: 24px 0;
}

.wp-block-image img {
  border: var(--border);
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col {
    padding: 0 24px 40px;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  .footer-col:first-child { padding-left: 24px; }
}

@media (max-width: 900px) {
  .nav-menu-wrap,
  .nav-cta {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    border-right: none;
    border-top: 5px solid var(--color-yellow);
  }

  .hero-main {
    border-right: none;
    padding: 32px;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
  }

  .about-strip-text {
    border-right: none;
    border-bottom: 3px solid var(--color-white);
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hours-left {
    border-right: none;
    border-bottom: var(--border-thick);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: var(--border-thick);
  }

  .service-detail-card,
  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(even) .sdc-image,
  .service-detail-card:nth-child(even) .sdc-body {
    order: unset;
  }

  .service-detail-card:nth-child(even) .sdc-body {
    border-right: none;
    border-left: none;
    border-top: var(--border-thick);
  }

  .sdc-body {
    border-left: none;
    border-top: var(--border-thick);
  }

  .single-service-hero {
    grid-template-columns: 1fr;
  }

  .single-service-img img {
    border-right: none;
    border-bottom: var(--border-thick);
    height: 300px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: var(--border);
  }

  .value-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .slide-image { height: 320px; }
  .slide-overlay { padding: 20px 24px; }
  .slider-controls { padding: 12px 24px; }
  .hero-main { padding: 24px; }
  .hero-side { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { padding: 0 0 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-nav { flex-wrap: wrap; gap: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-info-panel, .contact-form-panel { padding: 32px 24px; }
  .sdc-body { padding: 32px 24px; }
  .page-content-wrap { padding: 60px 0; }
  .navbar-inner { padding: 0 16px; }
}

@media (max-width: 375px) {
  .logo-main { font-size: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
