/* styles.css */

/* ====== Palette (dein Vorschlag) ====== */
:root {
  --bg: #0f1214;
  --surface: #161b1f;
  --text: #f2f2ee;
  --muted: #b7bdb6;
  --green: #1f3a2e;
  /* Signature */
  --metal: #c2a25a;
  /* Messing sparsam */
  --line: #2a3238;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --container: 1120px;
}

/* ====== Base ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(31, 58, 46, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(194, 162, 90, 0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: rgba(22, 27, 31, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 26px;
  max-width: 70ch;
}

.section-head.left {
  max-width: 62ch;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 18, 20, 0.68);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, 0.25);
}

.brand-text {
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(42, 50, 56, 0.35);
}

.nav-cta {
  border: 1px solid rgba(194, 162, 90, 0.45);
  color: var(--text) !important;
  background: rgba(194, 162, 90, 0.08);
}

.nav-cta:hover {
  background: rgba(194, 162, 90, 0.14) !important;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(31, 58, 46, 0.95), rgba(31, 58, 46, 0.72));
  border-color: rgba(31, 58, 46, 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(31, 58, 46, 1), rgba(31, 58, 46, 0.78));
}

.btn-secondary {
  width: 100%;
  margin-top: 12px;
  background: rgba(22, 27, 31, 0.55);
  border-color: rgba(194, 162, 90, 0.42);
}

.btn-secondary:hover {
  background: rgba(22, 27, 31, 0.75);
}

.btn-ghost {
  background: rgba(22, 27, 31, 0.35);
  border-color: rgba(42, 50, 56, 0.9);
}

.btn-ghost:hover {
  background: rgba(22, 27, 31, 0.55);
}

/* ====== Hero ====== */
.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  color: rgba(194, 162, 90, 0.95);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(22, 27, 31, 0.5);
  border: 1px solid rgba(42, 50, 56, 0.85);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, 0.22);
}

.dot-metal {
  background: var(--metal);
  box-shadow: 0 0 0 3px rgba(194, 162, 90, 0.16);
}

.hero-card {
  background: linear-gradient(180deg, rgba(22, 27, 31, 0.82), rgba(22, 27, 31, 0.55));
  border: 1px solid rgba(42, 50, 56, 0.9);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  margin-bottom: 10px;
}

.card-title {
  margin: 0;
  font-size: 18px;
}

.card-sub {
  margin: 6px 0 0;
  color: var(--muted);
}

.hours .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(42, 50, 56, 0.85);
  color: var(--muted);
  font-weight: 600;
}

.hours .row:last-child {
  border-bottom: none;
}

.divider {
  height: 1px;
  background: rgba(42, 50, 56, 0.9);
  margin: 12px 0;
}

.bullets {
  margin: 0 0 10px;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.bullets li {
  margin: 6px 0;
}

.fineprint {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(183, 189, 182, 0.75);
}

/* ====== Grids / Cards ====== */
.grid {
  display: grid;
  gap: 14px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(22, 27, 31, 0.55);
  border: 1px solid rgba(42, 50, 56, 0.9);
  border-radius: var(--radius);
  padding: 18px;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31, 58, 46, 0.28);
  border: 1px solid rgba(31, 58, 46, 0.7);
  margin-bottom: 12px;
  font-size: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(42, 50, 56, 0.9);
  background: rgba(22, 27, 31, 0.35);
  color: var(--muted);
}

/* ====== Preise ====== */
.price-3 {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  background: rgba(22, 27, 31, 0.55);
  border: 1px solid rgba(42, 50, 56, 0.9);
  border-radius: var(--radius);
  padding: 18px;
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.price {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.list {
  margin: 0 0 14px;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.list li {
  margin: 7px 0;
}

.featured {
  border-color: rgba(194, 162, 90, 0.55);
  background: linear-gradient(180deg, rgba(31, 58, 46, 0.18), rgba(22, 27, 31, 0.62));
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(194, 162, 90, 0.14);
  border: 1px solid rgba(194, 162, 90, 0.55);
  color: rgba(242, 242, 238, 0.95);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fine-row {
  margin-top: 12px;
}

/* ====== Galerie ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ph {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid rgba(42, 50, 56, 0.9);
  background:
    linear-gradient(135deg, rgba(31, 58, 46, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(22, 27, 31, 0.85), rgba(22, 27, 31, 0.35));
}

/* ====== Kontakt ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  background: rgba(22, 27, 31, 0.55);
  border: 1px solid rgba(42, 50, 56, 0.9);
  border-radius: var(--radius);
  padding: 16px;
}

.contact-card h3 {
  margin: 0 0 10px;
}

.contact-card p {
  margin: 0 0 10px;
}

.muted {
  color: rgba(183, 189, 182, 0.8);
}

.form {
  background: rgba(22, 27, 31, 0.6);
  border: 1px solid rgba(42, 50, 56, 0.9);
  border-radius: var(--radius);
  padding: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: rgba(242, 242, 238, 0.92);
  margin-bottom: 12px;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(42, 50, 56, 0.95);
  background: rgba(15, 18, 20, 0.55);
  color: var(--text);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(183, 189, 182, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(194, 162, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(194, 162, 90, 0.12);
}

button.btn {
  width: 100%;
}

/* ====== Footer ====== */
.site-footer {
  margin-top: 38px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(183, 189, 182, 0.8);
  font-size: 13px;
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .price-3,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .section {
    padding: 68px 0;
  }

  .cards-3,
  .price-3,
  .gallery {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 28px;
  }
}