/* ============================================================
   Uhrmacher Zeitlos – Uhrmacher Hamburg
   Gemeinsames Stylesheet für alle Seiten
   Design: Klassisches Uhrmacher-Handwerk – tiefes Marineblau,
   warmes Elfenbein, Messing-Akzente, elegante Serifen.
   Mobile First.
   ============================================================ */

:root {
  --ink: #141d2b;        /* tiefes Marineblau-Schwarz */
  --ink-2: #1d2940;
  --paper: #f6f1e7;      /* warmes Elfenbein */
  --paper-2: #efe8d9;
  --brass: #b08d57;      /* Messing */
  --brass-light: #d3b98a;
  --text: #2c3140;
  --text-light: #ece7db;
  --muted: #6b6f7c;
  --line: rgba(20, 29, 43, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); }

img, svg { max-width: 100%; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Oberleiste ---------- */
.topbar {
  background: var(--ink);
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.5rem; padding-top: 0.45rem; padding-bottom: 0.45rem;
}
.topbar a { color: var(--brass-light); text-decoration: none; }
.topbar .topbar-hours { display: none; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }

.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em; }
.brand .brand-sub { font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass); }

/* Hamburger (Checkbox-Hack, kein JS nötig) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; cursor: pointer; padding: 10px;
}
.nav-toggle-label span {
  display: block; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.nav-toggle:checked ~ .main-nav { max-height: 420px; }
.main-nav ul { list-style: none; padding: 0.5rem 1.25rem 1.25rem; }
.main-nav a {
  display: block; padding: 0.7rem 0.25rem;
  text-decoration: none; color: var(--text);
  font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--brass); }
.main-nav li:last-child a { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(176, 141, 87, 0.22), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #101724 100%);
  color: var(--text-light);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(211,185,138,0.05) 0 1px, transparent 1px 90px);
}
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero .kicker {
  font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 1rem;
}
.hero h1 { color: var(--text-light); font-size: 2.5rem; margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero p.lead { font-size: 1.05rem; max-width: 34rem; color: rgba(236, 231, 219, 0.85); margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn {
  display: inline-block; padding: 0.85rem 1.7rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--brass);
  transition: background 0.25s, color 0.25s;
}
.btn-solid { background: var(--brass); color: var(--ink); }
.btn-solid:hover { background: var(--brass-light); border-color: var(--brass-light); }
.btn-ghost { color: var(--text-light); }
.btn-ghost:hover { background: rgba(211, 185, 138, 0.12); }
.btn-dark { border-color: var(--ink); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--paper); }

/* Laufende Uhr (SVG) */
.clock-box { justify-self: center; position: relative; }
.clock-box svg { width: 230px; height: 230px; display: block; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45)); }
.clock-caption {
  text-align: center; margin-top: 1rem; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(236,231,219,0.6);
}

/* ---------- Sektionen ---------- */
.section { padding: 4rem 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: var(--text-light); }

.section-head { text-align: center; max-width: 44rem; margin: 0 auto 3rem; }
.section-head .kicker {
  font-size: 0.72rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--brass); display: block; margin-bottom: 0.7rem;
}
.section-head h2 { font-size: 2.1rem; margin-bottom: 0.8rem; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: rgba(236,231,219,0.7); }

.ornament { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin: 0 auto 1.2rem; }
.ornament::before, .ornament::after { content: ""; height: 1px; width: 56px; background: var(--brass); opacity: 0.6; }
.ornament span { color: var(--brass); font-size: 1rem; }

/* Karten / Leistungen */
.cards { display: grid; gap: 1.5rem; }
.card {
  background: #fbf8f1; border: 1px solid var(--line);
  padding: 2rem 1.6rem; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20,29,43,0.10); }
.card .card-icon { margin-bottom: 1.1rem; color: var(--brass); }
.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--muted); }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  opacity: 0; transition: opacity 0.25s;
}
.card:hover::before { opacity: 1; }

/* Zahlen / Vertrauen */
.stats { display: grid; gap: 1.5rem; text-align: center; }
.stat .stat-value { font-family: var(--serif); font-size: 2.8rem; color: var(--brass-light); line-height: 1; }
.stat .stat-label { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(236,231,219,0.65); margin-top: 0.5rem; }

/* Bewertungen */
.rating-hero { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.rating-value { font-family: var(--serif); font-size: 4rem; color: var(--brass-light); line-height: 1; }
.stars { color: var(--brass-light); font-size: 1.5rem; letter-spacing: 0.2em; }
.rating-count { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(236,231,219,0.7); }
.rating-source { font-size: 0.75rem; color: rgba(236,231,219,0.45); }

.reviews { display: grid; gap: 1.5rem; }
.review {
  background: rgba(246, 241, 231, 0.05);
  border: 1px solid rgba(211, 185, 138, 0.25);
  padding: 1.8rem 1.6rem;
}
.review .review-stars { color: var(--brass-light); letter-spacing: 0.2em; margin-bottom: 0.7rem; }
.review blockquote { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--text-light); margin-bottom: 0.9rem; }
.review cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,231,219,0.55); }
.review-example-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px dashed rgba(211,185,138,0.6); color: var(--brass-light);
  padding: 0.15rem 0.55rem; margin-bottom: 0.8rem;
}

/* Zwei-Spalten (Text / Liste) */
.split { display: grid; gap: 2.5rem; align-items: start; }
.split h2 { font-size: 2rem; margin-bottom: 1rem; }
.split p { margin-bottom: 1rem; }
.split p:last-child { margin-bottom: 0; }

.feature-list { list-style: none; }
.feature-list li {
  padding: 0.9rem 0 0.9rem 2rem; position: relative;
  border-bottom: 1px solid var(--line); font-size: 0.98rem;
}
.feature-list li::before {
  content: "◆"; position: absolute; left: 0; top: 0.95rem;
  color: var(--brass); font-size: 0.6rem;
}
.feature-list li:last-child { border-bottom: none; }

/* Preis-Hinweis / Prozess */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  flex: 0 0 52px; height: 52px; border: 1px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; color: var(--brass);
  border-radius: 50%;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.93rem; color: var(--muted); }

/* Kontakt */
.contact-grid { display: grid; gap: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-item .ci-icon { flex: 0 0 46px; height: 46px; border: 1px solid var(--brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brass); }
.contact-item h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-size: 0.98rem; color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--brass); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; }
.hours-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }

.map-panel {
  background: linear-gradient(150deg, var(--ink), var(--ink-2));
  color: var(--text-light); padding: 2.5rem 2rem; text-align: center;
}
.map-panel h3 { color: var(--text-light); font-size: 1.5rem; margin-bottom: 0.8rem; }
.map-panel p { color: rgba(236,231,219,0.75); margin-bottom: 1.4rem; }
.map-panel address { font-style: normal; font-family: var(--serif); font-size: 1.25rem; color: var(--brass-light); margin-bottom: 1.4rem; }

/* CTA-Band */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(176,141,87,0.18), transparent 60%),
    var(--ink);
  color: var(--text-light); text-align: center; padding: 3.5rem 0;
}
.cta-band h2 { color: var(--text-light); font-size: 1.9rem; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(236,231,219,0.75); margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0e141f; color: rgba(236,231,219,0.75); padding: 3.5rem 0 1.5rem; font-size: 0.9rem; }
.footer-grid { display: grid; gap: 2.2rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: var(--brass-light); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(236,231,219,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--brass-light); }
.footer-brand-name { font-family: var(--serif); font-size: 1.4rem; color: var(--text-light); display: block; margin-bottom: 0.4rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.45rem; }
.footer-legal {
  border-top: 1px solid rgba(236,231,219,0.12); padding-top: 1.4rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.78rem; color: rgba(236,231,219,0.45);
}
.footer-legal .legal-links { display: flex; gap: 1.4rem; }

/* ---------- Rechtsseiten ---------- */
.legal-page { padding: 3.5rem 0 4.5rem; }
.legal-page h1 { font-size: 2.3rem; margin-bottom: 1.8rem; }
.legal-page h2 { font-size: 1.45rem; margin: 2.2rem 0 0.7rem; }
.legal-page p { margin-bottom: 0.9rem; max-width: 46rem; }
.placeholder { /* Felder sind gefuellt - keine Markierung mehr */ }

/* ---------- Responsive: Tablet / Desktop ---------- */
@media (min-width: 640px) {
  .topbar .topbar-hours { display: inline; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 3.1rem; }
}

@media (min-width: 900px) {
  .nav-toggle-label { display: none; }
  .main-nav {
    position: static; max-height: none; overflow: visible;
    background: transparent; border: none;
  }
  .main-nav ul { display: flex; gap: 2rem; padding: 0; }
  .main-nav a { border: none; padding: 0.3rem 0; font-size: 0.82rem; }
  .hero-grid { grid-template-columns: 1.25fr 0.75fr; }
  .clock-box svg { width: 300px; height: 300px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .footer-legal { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero h1 { font-size: 3.6rem; }
  .section-head h2 { font-size: 2.5rem; }
}
