/* UmzugsMeister Berlin — global.css */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-navy: #1a2b4a;
  --color-navy-dark: #11203a;
  --color-terracotta: #c85a3a;
  --color-terracotta-dark: #a8472c;
  --color-cream: #faf7f2;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #6b6f78;
  --color-border: #e6e2d9;
  --color-success: #2f7d50;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(26, 43, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 43, 74, 0.12);

  --container: 1200px;
  --transition: 200ms ease-out;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 5vw, 54px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 18px; }

p { margin: 0 0 16px; max-width: 72ch; }

a { color: var(--color-terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-terracotta-dark); text-decoration: underline; }

ul, ol { margin: 0 0 16px; padding-left: 24px; }
li { margin-bottom: 8px; }

button { font-family: inherit; cursor: pointer; }

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  min-height: 48px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}
.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-terracotta-dark);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}
.btn--light {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn--light:hover {
  background: var(--color-cream);
  color: var(--color-navy);
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  z-index: 1000;
}
.skip-link:focus {
  left: 8px;
  color: var(--color-white);
}

:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--color-muted);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--color-border); }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-navy); }

.section {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .section { padding: 96px 0; }
}
.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }

.section__intro {
  max-width: 720px;
  margin-bottom: 48px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}
