
:root {
  --cream: #f7efe6;
  --ivory: #fffaf3;
  --sand: #d7b89a;
  --rose: #c79588;
  --taupe: #7e665d;
  --brown: #4f3f39;
  --gold: #d5a45f;
  --shadow: rgba(65, 47, 39, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--brown);
  background: var(--ivory);
  line-height: 1.7;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: linear-gradient(to bottom, rgba(255,250,243,.88), rgba(255,250,243,.18));
  backdrop-filter: blur(10px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--brown);
}.nav { display: flex; gap: 24px; }

.nav a {
  color: var(--brown);
  text-decoration: none;
  font-size: 14px;
  opacity: .85;
}

.nav a:hover { opacity: 1; }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,243,.90), rgba(255,250,243,.48), rgba(255,250,243,.10)),
    linear-gradient(0deg, rgba(79,63,57,.18), rgba(255,250,243,.05));
}

.hero-content {
  position: relative;
  width: min(1120px, 90vw);
  padding-top: 80px;
}

.hero-content h1 {
  max-width: 780px;
  margin: 12px 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.03em;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--taupe);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  margin: 0 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  margin-right: 10px;
  margin-top: 20px;
  font-size: 14px;
}

.btn.primary {
  background: var(--brown);
  color: var(--ivory);
  box-shadow: 0 16px 40px var(--shadow);
}

.btn.secondary {
  border: 1px solid rgba(79,63,57,.25);
  color: var(--brown);
  background: rgba(255,250,243,.45);
}

.section { padding: 110px 5vw; }

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow { width: min(760px, 100%); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
}

.align-center { align-items: center; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 22px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.copy p {
  margin-top: 0;
  font-size: 17px;
  color: var(--taupe);
}

.quote-band {
  background: linear-gradient(135deg, #f0ddce, #fff4e9);
  padding: 88px 5vw;
  text-align: center;
}

blockquote {
  margin: 0 auto;
  max-width: 850px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  color: var(--brown);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p { color: var(--taupe); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 34px;
  border: 1px solid rgba(126, 102, 93, .18);
  border-radius: 28px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 50px rgba(126, 102, 93, .08);
}

.card p {
  color: var(--taupe);
  margin: 0;
}

.warm { background: #f5e8dc; }

.image-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(79,63,57,.18);
}

.image-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lyric {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #fff5e9, #f3dfd1);
}

.lyric h2 {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.lyric p {
  color: var(--taupe);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(79,63,57,.12);
}

.list {
  padding-left: 18px;
  color: var(--taupe);
}

.list li { margin-bottom: 8px; }

.cta {
  padding: 120px 5vw;
  background:
    linear-gradient(rgba(79,63,57,.38), rgba(79,63,57,.34)),
    url('assets/brueckenlaeufer_2.png') center/cover;
  color: var(--ivory);
  text-align: center;
}

.cta .eyebrow,
.cta p,
.cta a { color: var(--ivory); }

.cta h2 { color: var(--ivory); }

.contact-box {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,250,243,.18);
  backdrop-filter: blur(6px);
}

.contact-box a { text-decoration: none; }

.small-note {
  font-size: 12px;
  opacity: .78;
}

.footer {
  padding: 34px 5vw;
  text-align: center;
  font-size: 13px;
  color: var(--taupe);
  background: var(--ivory);
}

@media (max-width: 860px) {
  .nav { display: none; }
  .site-header { padding: 16px 5vw; }
  .logo { font-size: 26px; }
  .hero { min-height: 92vh; }
  .hero-content h1 { font-size: clamp(42px, 14vw, 72px); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .reverse .image-frame { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 240px; }
  .section { padding: 78px 5vw; }
  .contact-box { border-radius: 24px; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; margin-right: 0; }
}
@media (max-width: 860px) {
  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 26px;
  }
}
.audio-card {
  width: min(520px, 100%);
  margin-top: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(126, 102, 93, .18);
  border-radius: 26px;
  background: rgba(255, 250, 243, .68);
  box-shadow: 0 18px 50px rgba(79, 63, 57, .12);
  backdrop-filter: blur(10px);
}

.audio-card h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.audio-kicker {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
}

.audio-card audio {
  width: 100%;
  display: block;
  margin-top: 8px;
}

.lyric-audio {
  margin: 34px auto 0;
  text-align: left;
}

.site-footer {
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #6f6258;
  background-color: #f7f1eb;
  margin-top: 60px;
}

.site-footer p {
  margin: 0 0 8px 0;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #6f6258;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
  line-height: 1.7;
  color: #3d342e;
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 1.3rem;
}

.legal-page a {
  color: #8b6f5a;
}
.legal-page {
  max-width: 850px;
  margin: 80px auto;
  padding: 0 24px;
  line-height: 1.8;
  color: #3d342e;
  font-size: 1rem;
}

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  color: #5f4a3f;
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #6f6258;
}

.legal-page p {
  margin-bottom: 18px;
}

.legal-page a {
  color: #8b6f5a;
  text-decoration: underline;
}

.back-link {
  margin-top: 45px;
  text-align: center;
}

.site-footer {
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #6f6258;
  background-color: #f7f1eb;
  margin-top: 60px;
}

.site-footer p {
  margin: 0 0 8px 0;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #6f6258;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}



