:root {
  --ink: #141414;
  --muted: #5c5750;
  --paper: #fbf8f1;
  --paper-warm: #f4ecde;
  --white: #ffffff;
  --green: #5f7f4f;
  --green-dark: #344f36;
  --blue: #496f7d;
  --blue-dark: #233f4a;
  --gold: #d7aa5d;
  --line: rgba(20, 20, 20, 0.13);
  --shadow: 0 26px 80px rgba(32, 42, 36, 0.16);
  --radius: 16px;
  --max: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link,
.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:focus {
  z-index: 30;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 21, 18, 0.28) 0%, rgba(15, 21, 18, 0.56) 46%, rgba(15, 21, 18, 0.72) 100%),
    url("/hero.jpg"),
    linear-gradient(135deg, #314d42 0%, #496f7d 46%, #d7aa5d 100%);
  background-position: center;
  background-size: cover;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 5vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 90vw);
  place-self: center;
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow {
  color: var(--green-dark);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 720;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0.6rem;
  font-size: 7rem;
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.7rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(30, 46, 32, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 6rem 5vw;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.music-section p,
.trust-grid p,
.occasion-grid p {
  color: var(--muted);
}

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

.video-frame {
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-section {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
  margin: 0 auto;
}

.about-copy p {
  font-size: 1.08rem;
}

.about-image,
.image-placeholder {
  display: grid;
  min-height: 420px;
  place-items: end start;
  padding: 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(35, 63, 74, 0.26), rgba(52, 79, 54, 0.62)),
    url("/johannes.jpg"),
    linear-gradient(145deg, #d7aa5d 0%, #8e9f6e 44%, #496f7d 100%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.about-image span,
.image-placeholder::after {
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.85rem;
  font-weight: 800;
}

.occasions-section {
  background: var(--paper-warm);
}

.occasion-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 0 auto;
}

.occasion-grid article,
.trust-grid article,
.image-card,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(37, 43, 37, 0.07);
}

.occasion-grid article {
  min-height: 210px;
  padding: 1.5rem;
  text-align: center;
}

.occasion-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.15rem;
}

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

.music-card-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0 auto;
}

.image-card {
  overflow: hidden;
}

.image-card > div:last-child {
  padding: 1.4rem;
}

.image-placeholder {
  min-height: 300px;
  border-radius: 0;
  box-shadow: none;
}

.image-placeholder::after {
  content: "";
}

.image-placeholder.oberkrainer {
  background:
    linear-gradient(155deg, rgba(35, 63, 74, 0.28), rgba(52, 79, 54, 0.5)),
    url("/oberkrainer.jpg"),
    linear-gradient(145deg, #d7aa5d 0%, #8e9f6e 44%, #496f7d 100%);
  background-position: center;
  background-size: cover;
}

.image-placeholder.blasmusik {
  background:
    linear-gradient(155deg, rgba(35, 63, 74, 0.34), rgba(95, 127, 79, 0.46)),
    url("/blasmusik.jpg"),
    linear-gradient(145deg, #496f7d 0%, #9aae7e 54%, #d7aa5d 100%);
  background-position: center;
  background-size: cover;
}

.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.trust-grid article {
  padding: 1.4rem;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 6rem 5vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 63, 74, 0.95), rgba(52, 79, 54, 0.95)),
    var(--blue-dark);
}

.contact-copy {
  max-width: 520px;
}

.contact-section .eyebrow {
  color: #ead7b5;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
}

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

.inquiry-form label,
.inquiry-form label span {
  display: block;
}

.inquiry-form label span {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 5vw;
  color: var(--muted);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .occasion-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    position: absolute;
    padding: 0 1rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
  }

  .menu-lines::before {
    transform: translateY(-7px);
  }

  .menu-lines::after {
    transform: translateY(7px);
  }

  body.nav-open .menu-lines {
    background: transparent;
  }

  body.nav-open .menu-lines::before {
    transform: rotate(45deg);
  }

  body.nav-open .menu-lines::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    z-index: 11;
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(20, 20, 20, 0.82);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.45rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions,
  .music-card-grid,
  .occasion-grid,
  .trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding: 4.5rem 1rem;
  }

  .about-image,
  .image-placeholder {
    min-height: 300px;
  }

  .occasion-grid,
  .music-card-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
