:root {
  --pico-primary: #003456;
  --pico-primary-background: #003456;
  --pico-primary-hover: #001841;
  --pico-primary-hover-background: #001841;
  --pico-background-color: #fff2e9;
  --pico-color: #000e19;
  --pico-secondary: #be9851;
  --pico-font-family: 'Karla', sans-serif;
  --pico-border-radius: 16px;
  --pico-spacing: 1rem;
  --surface-color: #fffaf6;
  --tint-color: #fff2e9;
  --text-secondary: #3d505b;
  --accent-color: #b74e00;
  --primary-light: #3a7a98;
  --shadow-tint: 0 8px 24px rgba(0, 52, 86, 0.12);
  --shadow-soft: 0 4px 14px rgba(0, 52, 86, 0.1);
  --nav-height: 6.25rem;
  --nav-height-shrink: 4.5rem;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Vollkorn', serif; }

html {
  scroll-behavior: smooth;
}

body {
  background: #fff2e9;
  color: #000e19;
}

main.container {
  padding-top: 0;
  padding-bottom: 0;
}

body > header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

body > header.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

body > header.site-header nav.container {
  min-height: var(--nav-height);
  transition: min-height 0.25s ease, padding 0.25s ease;
}

body > header.site-header.is-scrolled nav.container {
  min-height: var(--nav-height-shrink);
}

nav img.logo-mark {
  height: 5rem;
  width: auto;
  border-radius: 24px;
  transition: height 0.25s ease;
}

body > header.site-header.is-scrolled nav img.logo-mark {
  height: 3.5rem;
}

nav ul {
  align-items: center;
}

nav a {
  color: #000e19;
  text-decoration: none;
  font-weight: 600;
}

nav a[role="button"] {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  background-image: linear-gradient(rgba(0, 24, 65, 0.28), rgba(0, 24, 65, 0.28)), url('images/hero-bbq-grillhaus-zuerich.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .container {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-content {
  max-width: 44rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 40rem;
}

.decorative-kicker,
.timeline-year,
.section-intro strong {
  color: var(--accent-color);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-band {
  padding: 5rem 0;
}

.section-band.surface {
  background: var(--surface-color);
}

.section-band.tint {
  background: var(--tint-color);
}

.section-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 46rem;
  color: var(--text-secondary);
}

.timeline {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-year {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--primary-light);
}

.timeline-copy {
  border-left: 3px solid rgba(190, 152, 81, 0.5);
  padding-left: 1.5rem;
}

.grid.services-grid,
.grid.testimonial-grid,
.grid.contact-grid,
.grid.info-grid {
  gap: 1.5rem;
}

article,
.service-visual,
.contact-panel,
.map-frame {
  background: var(--surface-color);
  box-shadow: var(--shadow-tint);
}

article {
  border-radius: 16px;
  padding: 1.5rem;
}

article p:last-child,
article ul:last-child {
  margin-bottom: 0;
}

.service-visual img,
.hero-logo img,
.content-image,
footer img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.service-visual {
  border-radius: 16px;
  padding: 1rem;
}

blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary-color, #be9851);
}

blockquote footer {
  margin-top: 1rem;
  color: var(--text-secondary);
}

button,
input[type="submit"],
a[role="button"] {
  border-radius: 12px;
  border: 0;
  background: var(--surface-color);
  color: var(--pico-primary);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

button:hover,
input[type="submit"]:hover,
a[role="button"]:hover {
  background: #ffffff;
  color: var(--pico-primary-hover);
}

a[role="button"].primary,
button.primary {
  background: var(--pico-primary);
  color: #fff;
}

a[role="button"].primary:hover,
button.primary:hover {
  background: var(--pico-primary-hover);
  color: #fff;
}

input,
textarea,
select {
  border-radius: 4px;
  border: 0;
  background: var(--surface-color);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

img {
  border-radius: 24px;
}

.contact-panel p,
.contact-panel address,
footer p,
footer a,
.section-muted {
  color: var(--text-secondary);
}

.map-frame iframe {
  width: 100%;
  min-height: 22rem;
  border: 0;
  border-radius: 24px;
}

.site-footer {
  background: var(--surface-color);
  padding: 4rem 0 3rem;
  min-height: 280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  max-width: 9rem;
  height: auto;
  border-radius: 24px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 24rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 26rem;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: var(--shadow-tint);
  padding: 1rem;
  z-index: 1100;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.content-header {
  padding: 3rem 0 1rem;
}

.content-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.legal main.container {
  max-width: 52rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (max-width: 900px) {
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 70vh;
  }

  .hero .container,
  .section-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  nav.container,
  body > header.site-header nav.container {
    gap: 0.75rem;
  }

  nav ul:last-child {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 1rem;
    max-width: none;
  }
}
