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

:root {
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-light: #f5f5f0;
  --gray-mid: #e0ddd6;
  --gray-text: #666660;
  --rust: #b85c38;
  --jade: #3a7a5c;
  --caramel: #c4854a;
  --aqua: #2e8a9e;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

/* ── HEADER ─────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.78rem;
  color: var(--gray-text);
  font-style: italic;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 2rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--rust);
}

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--gray-light);
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--aqua);
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #246d80;
}

/* ── SERVICES GRID ───────────────────────── */
.services {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-card .card-body {
  padding: 1.5rem 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card .card-can {
  width: 80px;
  height: auto;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card .card-swipe {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}

/* Kontakt card is a full clickable link */
.service-card .card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* ── PHOTO STRIP ─────────────────────────── */
.photo-strip {
  background: var(--gray-light);
  padding: 3rem 2rem;
  text-align: center;
}

.photo-strip img {
  max-width: 100%;
  max-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--black);
  color: #ccc;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.9;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

footer .footer-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* ── CONTACT PAGE ───────────────────────── */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-page .lead {
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-method {
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.contact-method .method-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-method h3 {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-method a,
.contact-method span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.contact-method a:hover {
  color: var(--aqua);
}

/* Form */
.contact-form-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.form-group label .required {
  color: var(--rust);
  margin-left: 2px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aqua);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-address {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.form-address input:last-child {
  width: 100px;
}

.submit-btn {
  background: var(--aqua);
  color: var(--white);
  border: none;
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #246d80;
}

.form-success {
  display: none;
  background: #eaf7f0;
  border: 1px solid #a0d8bc;
  border-radius: 6px;
  padding: 1.25rem;
  color: #1a5c3a;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 600px) {
  header {
    padding: 0.75rem 1rem;
  }

  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  .logo-text .tagline {
    display: none;
  }

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

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

  .form-address input:last-child {
    width: 100%;
  }
}
