/* Brothaus Möwe — L2 typographic fold · prefix bm- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;1,9..144,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bm-ink: #16262e;
  --bm-mist: #e4ecef;
  --bm-fog: #f3f7f8;
  --bm-sea: #2f5c52;
  --bm-sea-deep: #1e3d37;
  --bm-wheat: #b8955a;
  --bm-mute: #5a6d75;
  --bm-line: rgba(22, 38, 46, 0.12);
  --bm-max: 1120px;
  --bm-serif: 'Fraunces', Georgia, serif;
  --bm-sans: 'Outfit', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bm-sans);
  font-weight: 400;
  color: var(--bm-ink);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, #d5e4e8 0%, transparent 55%),
    linear-gradient(180deg, var(--bm-fog) 0%, var(--bm-mist) 40%, #dce6ea 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bm-sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--bm-sea-deep); }

.bm-wrap {
  width: min(100% - 2.5rem, var(--bm-max));
  margin-inline: auto;
}

/* —— Centered logo header —— */
.bm-head {
  padding: 1.35rem 0 0.75rem;
  position: relative;
  z-index: 40;
}

.bm-head__inner {
  width: min(100% - 2.5rem, var(--bm-max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.bm-logo {
  font-family: var(--bm-serif);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: var(--bm-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bm-logo span {
  display: block;
  font-family: var(--bm-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bm-mute);
  margin-top: 0.28rem;
}

.bm-nav-toggle {
  display: none;
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--bm-line);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: 2px;
}

.bm-nav-toggle span,
.bm-nav-toggle::before,
.bm-nav-toggle::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--bm-ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s;
}

.bm-nav-toggle::before { margin-bottom: 5px; }
.bm-nav-toggle::after { margin-top: 5px; }
.bm-nav-toggle span { height: 1.5px; }

.bm-nav-toggle.is-open::before {
  transform: translateY(6.5px) rotate(45deg);
}
.bm-nav-toggle.is-open::after {
  transform: translateY(-6.5px) rotate(-45deg);
}
.bm-nav-toggle.is-open span { opacity: 0; }

.bm-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.6rem;
}

.bm-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bm-ink);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.bm-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 1px;
  background: var(--bm-sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bm-nav a:hover::after,
.bm-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* —— Typographic hero (little/no photo) —— */
.bm-typefold {
  min-height: calc(100vh - 8.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.bm-typefold::before {
  content: '';
  position: absolute;
  inset: 8% 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bm-line), transparent);
  pointer-events: none;
}

.bm-typefold__brand {
  font-family: var(--bm-serif);
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--bm-ink);
  margin-bottom: 1.5rem;
  animation: bm-rise 0.9s ease both;
}

.bm-typefold__brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--bm-sea);
}

.bm-typefold h1 {
  font-family: var(--bm-serif);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto 1rem;
  line-height: 1.25;
  animation: bm-rise 0.9s 0.12s ease both;
}

.bm-typefold__lede {
  font-size: 1.05rem;
  color: var(--bm-mute);
  max-width: 36ch;
  margin: 0 auto 1.75rem;
  font-weight: 300;
  animation: bm-rise 0.9s 0.22s ease both;
}

.bm-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  animation: bm-rise 0.9s 0.32s ease both;
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.45rem;
  font-family: var(--bm-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.bm-btn--fill {
  background: var(--bm-sea);
  color: #fff;
}
.bm-btn--fill:hover {
  background: var(--bm-sea-deep);
  color: #fff;
}

.bm-btn--line {
  background: transparent;
  border-color: var(--bm-ink);
  color: var(--bm-ink);
}
.bm-btn--line:hover {
  background: var(--bm-ink);
  color: var(--bm-fog);
}

/* —— Horizontal service list (not cards) —— */
.bm-services {
  border-block: 1px solid var(--bm-line);
  background: rgba(255, 255, 255, 0.35);
}

.bm-services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--bm-max));
  margin-inline: auto;
}

.bm-services__item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--bm-line);
  transition: background 0.3s ease;
}

.bm-services__item:last-child { border-right: none; }

.bm-services__item:hover {
  background: rgba(47, 92, 82, 0.06);
}

.bm-services__num {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bm-wheat);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.bm-services__title {
  font-family: var(--bm-serif);
  font-size: 1.45rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--bm-ink);
}

.bm-services__hint {
  font-size: 0.88rem;
  color: var(--bm-mute);
  font-weight: 300;
  line-height: 1.45;
}

/* —— Large quote —— */
.bm-quote {
  padding: 5rem 0;
  text-align: center;
}

.bm-quote blockquote {
  font-family: var(--bm-serif);
  font-size: clamp(1.65rem, 4.5vw, 2.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  color: var(--bm-ink);
}

.bm-quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bm-mute);
  font-weight: 500;
}

/* —— Asymmetric 40/60 —— */
.bm-asym {
  padding: 1rem 0 4.5rem;
}

.bm-asym__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.bm-asym__grid--flip {
  grid-template-columns: 3fr 2fr;
}

.bm-asym__grid--flip .bm-asym__media { order: 2; }
.bm-asym__grid--flip .bm-asym__copy { order: 1; }

.bm-asym__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.bm-asym__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.7s ease;
}

.bm-asym__media:hover img {
  transform: scale(1.03);
}

.bm-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bm-sea);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.bm-asym__copy h2,
.bm-block h2,
.bm-hours h2 {
  font-family: var(--bm-serif);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.bm-lede {
  font-size: 1.05rem;
  color: var(--bm-mute);
  font-weight: 300;
  max-width: 38ch;
  margin-bottom: 1.35rem;
}

/* Hours band */
.bm-hours {
  background: var(--bm-ink);
  color: var(--bm-fog);
  padding: 3.5rem 0;
}

.bm-hours .bm-eyebrow { color: var(--bm-wheat); }
.bm-hours .bm-lede { color: rgba(243, 247, 248, 0.72); }
.bm-hours h2 { color: #fff; }

.bm-hours__dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.bm-hours__dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 247, 248, 0.55);
  margin-bottom: 0.35rem;
}

.bm-hours__dl dd {
  font-family: var(--bm-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

/* Inner page mast */
.bm-mast {
  padding: 2.5rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--bm-line);
}

.bm-mast__brand {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bm-mute);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.bm-mast h1 {
  font-family: var(--bm-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.bm-section {
  padding: 3.5rem 0;
}

.bm-section--tight { padding-top: 2rem; }

/* Plain lists (no cards) */
.bm-menu {
  list-style: none;
  border-top: 1px solid var(--bm-line);
}

.bm-menu li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--bm-line);
}

.bm-menu strong {
  display: block;
  font-family: var(--bm-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.bm-menu span {
  font-size: 0.92rem;
  color: var(--bm-mute);
  font-weight: 300;
}

.bm-menu em {
  font-style: normal;
  font-family: var(--bm-serif);
  font-size: 1.05rem;
  color: var(--bm-sea);
  white-space: nowrap;
  flex-shrink: 0;
}

.bm-prose {
  max-width: 58ch;
  color: var(--bm-mute);
  font-weight: 300;
  margin-bottom: 1rem;
}

.bm-prose + .bm-prose { margin-top: 0.75rem; }

/* Contact */
.bm-contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.bm-contact a { color: var(--bm-sea-deep); }

.bm-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bm-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bm-mute);
}

.bm-form input,
.bm-form select,
.bm-form textarea {
  font-family: var(--bm-sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--bm-line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--bm-ink);
  border-radius: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.bm-form textarea { min-height: 8rem; resize: vertical; }

.bm-form input:focus,
.bm-form select:focus,
.bm-form textarea:focus {
  outline: 2px solid var(--bm-sea);
  outline-offset: 1px;
}

.bm-form-success {
  display: none;
  padding: 0.9rem 1rem;
  background: rgba(47, 92, 82, 0.12);
  border-left: 3px solid var(--bm-sea);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.bm-form-success.is-visible { display: block; }

/* Legal */
.bm-legal {
  padding: 3rem 0 4rem;
  max-width: 68ch;
}

.bm-legal h1 {
  font-family: var(--bm-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.bm-legal h2 {
  font-family: var(--bm-serif);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
}

.bm-legal p,
.bm-legal li {
  color: var(--bm-mute);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.bm-legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Footer F2: horizontal ribbon */
.bm-foot {
  background: var(--bm-sea-deep);
  color: rgba(243, 247, 248, 0.78);
  padding: 1.35rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bm-foot a {
  color: rgba(243, 247, 248, 0.85);
  text-decoration: none;
}
.bm-foot a:hover { color: #fff; }

.bm-foot__ribbon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.bm-foot__mark {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
}

.bm-foot__brand {
  font-family: var(--bm-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.bm-foot__meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(243, 247, 248, 0.55);
  line-height: 1.4;
}

.bm-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.bm-foot__links a {
  white-space: nowrap;
}

/* Cookie banner */
.bm-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bm-ink);
  color: var(--bm-fog);
  padding: 1.15rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.bm-cookie.is-visible { transform: translateY(0); }

.bm-cookie__inner {
  width: min(100%, var(--bm-max));
  margin-inline: auto;
}

.bm-cookie__inner > p {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
  max-width: 62ch;
}

.bm-cookie__inner a { color: var(--bm-wheat); }

.bm-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bm-cookie__actions button {
  font-family: var(--bm-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
}

.bm-cookie__actions .bm-cookie-accept {
  background: var(--bm-sea);
  border-color: var(--bm-sea);
}

.bm-cookie__panel {
  display: none;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bm-cookie__panel.is-open { display: block; }

.bm-cookie__panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  font-weight: 300;
}

/* Motion */
@keyframes bm-rise {
  from { opacity: 0; transform: translateY(1.1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.bm-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bm-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.bm-photo-break {
  width: 100%;
  max-height: 42vh;
  overflow: hidden;
}

.bm-photo-break img {
  width: 100%;
  height: 42vh;
  object-fit: cover;
  filter: saturate(0.88);
}

/* Responsive */
@media (max-width: 860px) {
  .bm-nav-toggle { display: block; }

  .bm-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
    gap: 0;
  }

  .bm-nav.is-open { display: flex; }

  .bm-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--bm-line);
  }

  .bm-services__row {
    grid-template-columns: 1fr;
  }

  .bm-services__item {
    border-right: none;
    border-bottom: 1px solid var(--bm-line);
    text-align: left;
    padding: 1.35rem 1.5rem;
  }

  .bm-services__item:last-child { border-bottom: none; }

  .bm-asym__grid,
  .bm-asym__grid--flip {
    grid-template-columns: 1fr;
  }

  .bm-asym__grid--flip .bm-asym__media,
  .bm-asym__grid--flip .bm-asym__copy { order: unset; }

  .bm-asym__media { aspect-ratio: 16 / 11; max-height: 320px; }

  .bm-hours__dl {
    grid-template-columns: 1fr 1fr;
  }

  .bm-contact {
    grid-template-columns: 1fr;
  }

  .bm-foot__ribbon {
    gap: 0.75rem;
  }
  .bm-foot__links {
    gap: 0.3rem 0.85rem;
  }

  .bm-typefold {
    min-height: auto;
    padding: 3rem 0 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .bm-reveal { opacity: 1; transform: none; }
}
