/* Backhaus Rosso — static site (no WordPress) */
:root {
  --br-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --br-font-body: "Outfit", "Segoe UI", sans-serif;
  --br-rosso: #9c2b2b;
  --br-rosso-dark: #6b1f1f;
  --br-ink: #1c140e;
  --br-ink-soft: #4a3a2e;
  --br-paper: #f7f1e8;
  --br-cream: #fffaf4;
  --br-line: rgba(28, 20, 14, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--br-font-body);
  color: var(--br-ink);
  background: var(--br-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--br-rosso);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--br-rosso-dark);
}

.site-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.site-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— Header —— */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
}

.site-header__logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 250, 244, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--br-rosso);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.2s ease;
}

.site-nav__cta:hover {
  background: var(--br-rosso-dark);
  transform: translateY(-1px);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--br-cream);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(28, 16, 10, 0.55) 0%, rgba(28, 16, 10, 0.35) 40%, rgba(20, 12, 8, 0.72) 100%),
    url("../assets/welcome/bg-bread.jpg") center / cover no-repeat,
    #3d2a1a;
  transform: scale(1.06);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 0 clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 10vh, 6rem);
  animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--br-font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero__headline {
  margin: 0 0 0.75rem;
  font-family: var(--br-font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 250, 244, 0.92);
}

.hero__lead {
  margin: 0 0 1.6rem;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 250, 244, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--br-rosso);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  background: var(--br-rosso-dark);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 250, 244, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 250, 244, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 250, 244, 0.2);
  color: #fff;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
}

.section--paper {
  background: var(--br-cream);
}

.section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--br-font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--br-ink);
}

.section__text {
  margin: 0;
  max-width: 38rem;
  font-size: 1.08rem;
  color: var(--br-ink-soft);
}

.section__cta {
  margin-top: 1.75rem;
}

.section--order {
  background:
    linear-gradient(135deg, rgba(156, 43, 43, 0.08), transparent 55%),
    var(--br-paper);
  border-top: 1px solid var(--br-line);
  border-bottom: 1px solid var(--br-line);
}

/* —— Page (kontakt / legal) —— */
.page-header {
  background:
    linear-gradient(160deg, rgba(28, 16, 10, 0.82), rgba(60, 32, 22, 0.7)),
    url("../assets/welcome/bg-pastry.jpg") center / cover no-repeat;
  color: var(--br-cream);
  padding: 6.5rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
}

.page-header .site-header {
  position: absolute;
}

.page-header__title {
  margin: 0;
  font-family: var(--br-font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
}

.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem) 4rem;
}

.page-body h2 {
  font-family: var(--br-font-display);
  font-size: 1.55rem;
  margin: 2rem 0 0.6rem;
}

.page-body p,
.page-body li {
  color: var(--br-ink-soft);
}

.page-body ul {
  padding-left: 1.2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.contact-list li {
  margin: 0 0 0.65rem;
}

.note-box {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--br-rosso);
  background: rgba(156, 43, 43, 0.06);
  font-size: 0.95rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  background: #1c140e;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.92rem;
}

.site-footer__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: rgba(255, 250, 244, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer__brand {
  font-family: var(--br-font-display);
  font-size: 1.2rem;
  color: #fff;
}

@media (max-width: 640px) {
  .site-nav a:not(.site-nav__cta) {
    display: none;
  }

  .hero__inner {
    padding-bottom: 3rem;
  }
}
