/* ============================================
   BRIGID BAY — GEMEINSAMES STYLESHEET
   ============================================ */

:root {
  /* Kernpalette — gedämpft, erdig */
  --petrol:      #25211F;   /* Hauptdunkel: Espresso (ersetzt vormaliges Petrol) */
  --petrol-mid:  #4a3f38;   /* Labels/Akzenttext auf hellem Grund */
  --plum:        #4B2838;   /* nur als sehr sparsamer Karten-Akzent */
  --terracotta:  #A65342;   /* nur als winziger Akzent: Divider, Preis-Label */
  --espresso:    #25211F;
  --bone:        #F5F0E7;
  --bone-dark:   #EEE7DC;
  --sand:        #B99579;   /* helle Akzenttexte auf dunklem Grund = Ton/Lehm */
  --clay:        #B99579;   /* CTA-Farbe: Ton/Lehm */
  --white:       #FFFFFF;

  --text:        #241f1c;
  --text-soft:   #5a5148;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Mulish', sans-serif;

  --max-w: 1160px;
  --section-gap: 6.5rem;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bone);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petrol-mid);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--petrol);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; }
.divider {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 2rem;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(37, 33, 31, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 0.8rem 0;
}
.nav--solid {
  background: var(--petrol);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--bone); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--sand); }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--petrol);
  border: 1px solid rgba(212,192,168,0.2);
  border-radius: 3px;
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.76rem;
  border-radius: 2px;
  text-transform: none;
  letter-spacing: 0.03em;
}
.nav__dropdown-menu a:hover { background: rgba(255,255,255,0.06); }

.nav__cta {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav__cta:hover { color: var(--clay); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sand);
  transition: all 0.3s;
}
.nav__mobile-panel {
  display: none;
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 84vw);
  background: var(--petrol);
  z-index: 205;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  flex-direction: column;
  gap: 0.4rem;
}
.nav__mobile-panel.open { transform: translateX(0); }
.nav__mobile-panel a {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: none;
}
.nav__mobile-panel .nav__cta {
  display: inline-block;
  text-align: center;
  margin-top: 1.5rem;
  border: none;
}
.nav__mobile-sub {
  padding-left: 1rem;
  font-size: 0.85rem !important;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile-panel { display: flex; }
}

/* ============================================
   PAGE HERO (Unterseiten)
============================================ */
.page-hero {
  background: var(--petrol);
  padding: 9rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,192,168,0.08);
  top: -220px; right: -150px;
}
.page-hero__crumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.page-hero__crumb a { color: rgba(212,192,168,0.85); }
.page-hero__crumb a:hover { color: var(--sand); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
  max-width: 720px;
}
.page-hero__title em { font-style: italic; }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
  position: relative; z-index: 1;
}
.page-hero__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.3rem;
  position: relative; z-index: 1;
}

/* Accent-Tags pro Angebot */
.tag--plum       { background: rgba(75,40,56,0.35);   color: #e8b9c9; border: 1px solid rgba(232,185,201,0.3); }
.tag--terracotta { background: rgba(166,83,66,0.3);    color: #f0b8a6; border: 1px solid rgba(240,184,166,0.3); }
.tag--sand       { background: rgba(212,192,168,0.18); color: var(--sand); border: 1px solid rgba(212,192,168,0.35); }
.tag--espresso   { background: rgba(37,33,31,0.4);     color: #d8bfa8; border: 1px solid rgba(216,191,168,0.3); }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn--primary {
  background: var(--clay);
  color: var(--espresso);
  font-weight: 500;
}
.btn--primary:hover { background: #a3805f; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: var(--sand); color: var(--sand); transform: translateY(-2px); }
.btn--outline-dark {
  background: transparent;
  color: var(--petrol);
  border: 1px solid var(--petrol);
}
.btn--outline-dark:hover { background: var(--petrol); color: var(--white); }

/* ============================================
   OFFER CARDS (Übersicht)
============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--bone-dark);
  border-top: 3px solid var(--clay);
  border-radius: 3px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(37,33,31,0.1); }
.offer-card--plum       { border-top-color: var(--plum); }
.offer-card--terracotta { border-top-color: var(--terracotta); }
.offer-card--sand       { border-top-color: var(--clay); }
.offer-card--espresso   { border-top-color: var(--espresso); }

.offer-card__status {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol-mid);
  margin-bottom: 0.6rem;
}
.offer-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.offer-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 1.3rem;
}
.offer-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.1rem;
  border-top: 1px solid var(--bone-dark);
  margin-bottom: 1.2rem;
}
.offer-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--petrol);
}
.offer-card__price span { font-size: 0.7rem; color: var(--text-soft); font-family: var(--font-body); }
.offer-card__cta {
  display: block;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid var(--petrol);
  color: var(--petrol);
  border-radius: 2px;
  transition: all 0.25s;
}
.offer-card__cta:hover { background: var(--petrol); color: var(--white); }

@media (max-width: 780px) {
  .offers-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 3px;
  padding: 1.9rem;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
  opacity: 0.55;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.testimonial-card__author {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol-mid);
  font-weight: 500;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--petrol);
  padding: 3.5rem 0 1.8rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.8rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--sand);
  margin-bottom: 0.7rem;
}
.footer__brand span { color: rgba(255,255,255,0.5); font-size: 0.95rem; font-family: var(--font-body); display: block; margin-top: 0.2rem; letter-spacing: 0.05em; }
.footer__tagline { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer__col-title {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,192,168,0.6);
  margin-bottom: 1.1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__links a:hover { color: var(--sand); }
.footer__contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__contact-item { font-size: 0.86rem; color: rgba(255,255,255,0.5); display: flex; align-items: flex-start; gap: 0.5rem; }
.footer__contact-item a { color: inherit; transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--sand); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(255,255,255,0.32); flex-wrap: wrap; gap: 0.8rem; }
.footer__bottom-links { display: flex; gap: 1.3rem; }
.footer__bottom-links a { color: inherit; transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--sand); }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212,192,168,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--sand); color: var(--sand); }

@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLL REVEAL & ANIMATIONS
============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   COOKIE BANNER (nur falls benötigt)
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--espresso);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.2rem;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--sand); text-decoration: underline; }
.cookie-banner button {
  background: var(--clay);
  color: var(--espresso);
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
}

/* ============================================
   GENERIC SECTION HELPERS
============================================ */
.section { padding: var(--section-gap) 0; }
.section--bone  { background: var(--bone); }
.section--petrol{ background: var(--petrol); }
.section--dark .section-label { color: rgba(212,192,168,0.7); }
.section--dark .section-title { color: var(--white); }
.section--white { background: var(--white); }

@media (max-width: 600px) {
  :root { --section-gap: 4rem; }
}
