/*
Theme Name: Loesen - Christoph Loher
Theme URI: https://christoph-loher.ch
Author: Christoph Loher
Author URI: https://christoph-loher.ch
Description: Systemisches Coaching, Aufstellung & Begleitung
Version: 2.0
License: GNU General Public License v2
Text Domain: loesen
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #1A3A5C;
  --blue:    #2B5C8A;
  --gold:    #C4A04A;
  --gold-soft: #F5EDD0;
  --light:   #F4F7FB;
  --white:   #FFFFFF;
  --text:    #333333;
  --muted:   #666666;
  --border:  #E0E8F0;
  --radius:  6px;
  --shadow:  0 2px 16px rgba(26,58,92,0.08);
  --transition: 0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,58,92,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.site-logo__name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-logo__tagline {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Logo image - theme default + WordPress Customizer override */
.site-logo--image {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo--image a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-logo--image img {
  height: 68px;
  width: auto;
  display: block;
}
@media (max-width: 680px) {
  .site-logo--image img { height: 44px; }
}

.main-nav { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.main-nav .nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none !important; margin: 0; padding: 0; }
.main-nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none !important; margin: 0; padding: 0; }
.main-nav li { list-style: none !important; display: inline-flex; align-items: center; padding-left: 0 !important; }
.main-nav li::before { display: none !important; content: '' !important; }

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--blue); background: var(--light); }

.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}

.main-nav .nav-cta:hover { background: var(--dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7rem 0 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(196,160,74,0.08);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn--primary:hover { background: #b8922e; color: var(--dark); border-color: #b8922e; }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title h2 { margin-bottom: 0.75rem; }

.section-title p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   RÄUME CARDS
   ============================================================ */
.raeume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.raum-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.raum-card__visual { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
.raum-card__visual svg { width: 100%; height: 100%; display: block; }
.raum-card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.raum-card__name, .raum-card__tagline, .raum-card__desc { padding: 0 1.5rem; }
.raum-card__name { padding-top: 1.25rem; }

.raum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.raum-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue); }
.raum-card:hover::before { transform: scaleX(1); }

.raum-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.raum-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.raum-card__tagline {
  font-size: 0.85rem;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}

.raum-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  padding-bottom: 1.5rem;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-section {
  background: var(--dark);
  padding: 5rem 0;
}

.blockquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.blockquote__text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding: 0 1.5rem;
}

.blockquote__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85em;
  opacity: 0.7;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.blockquote__text::before,
.blockquote__text::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ============================================================
   ABOUT PREVIEW (HOMEPAGE)
   ============================================================ */
.about-preview {
  background: var(--light);
}

.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-preview__img img { width: 100%; object-fit: cover; aspect-ratio: 3/4; }

.about-preview__content h2 { margin-bottom: 1.25rem; }
.about-preview__content p { color: var(--muted); margin-bottom: 1rem; }

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
  list-style: none;
}

.credentials-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   BLOG - LOOP
   ============================================================ */
.blog-section { background: var(--white); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
}

.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.post-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card__img img { transform: scale(1.03); }

.post-card__body { padding: 1.5rem; }

.post-card__date {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.post-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--blue); }

.post-card__excerpt { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.post-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.post-card__link:hover { color: var(--gold); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header {
  background: linear-gradient(135deg, var(--dark), var(--blue));
  color: var(--white);
  padding: 5rem 0 3rem;
  text-align: center;
}

.post-header__date {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}

.post-header h1 {
  color: var(--white);
  max-width: 740px;
  margin: 0 auto;
}

.post-content { padding: 4rem 0; }

.entry-content p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.85; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 0.75rem; color: var(--dark); }
.entry-content ul, .entry-content ol { color: var(--muted); margin: 1rem 0 1.2rem 1.5rem; }
.entry-content li { margin-bottom: 0.4rem; line-height: 1.75; }
.entry-content a { color: var(--blue); }
.entry-content strong { color: var(--dark); }

.post-content .container--narrow h2,
.post-content .container--narrow h3 { margin: 2rem 0 0.75rem; }

.post-content .container--narrow img {
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  max-width: 100%;
  box-shadow: var(--shadow);
}

.post-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-nav a { font-size: 0.9rem; color: var(--muted); transition: color var(--transition); }
.post-nav a:hover { color: var(--blue); }
.post-nav span { font-size: 0.85rem; color: var(--muted); }

.post-content .container--narrow blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--blue);
  font-size: 1.1rem;
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark), var(--blue));
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.page-content { padding: 4rem 0; }

/* ============================================================
   RAUM DETAIL (page-raeume)
   ============================================================ */
.raum-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.raum-detail:last-child { border-bottom: none; }

.raum-detail__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.raum-detail__meta {
  background: var(--light);
  border-radius: 10px;
  padding: 2rem;
  position: sticky;
  top: 5rem;
}

.raum-detail__icon { margin-bottom: 1rem; border-radius: 8px; overflow: hidden; }
.raum-detail__icon svg { width: 100%; height: auto; display: block; border-radius: 8px; }
.raum-detail__icon img { width: 100%; height: auto; display: block; border-radius: 8px; object-fit: cover; }
.raum-detail__meta-body { margin-top: 0.25rem; }
.raum-detail__name { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.raum-detail__tagline { font-size: 0.9rem; color: var(--blue); font-style: italic; display: block; margin-bottom: 0.4rem; }
.raum-detail__format { font-size: 0.82rem; color: var(--muted); margin: 0; }

.raum-detail__body h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.6rem; margin-top: 1.5rem; }
.raum-detail__body h3:first-child { margin-top: 0; }
.raum-detail__body p { color: var(--muted); margin-bottom: 0.9rem; }
.raum-detail__body .btn { margin-top: 1rem; }

/* ============================================================
   ÜBER MICH PAGE
   ============================================================ */
.about-page__intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-page__photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-page__photo img { width: 100%; object-fit: cover; aspect-ratio: 3/4; }

.about-page__text h2 { margin-bottom: 1rem; }
.about-page__text p { color: var(--muted); margin-bottom: 1.1rem; }

.about-story {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.about-story h3 { font-size: 1.35rem; margin-bottom: 1.5rem; color: var(--dark); }
.about-story p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.8; }
.about-story em { color: var(--blue); font-style: italic; }

.about-page__quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--blue);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--light);
  border-radius: 0 6px 6px 0;
}

.credentials {
  background: var(--light);
  border-radius: 10px;
  padding: 2.5rem;
}

.credentials h3 { margin-bottom: 1.5rem; color: var(--dark); }

.credentials-group { margin-bottom: 1.5rem; }
.credentials-group h4 { color: var(--blue); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.credential-item:last-child { border-bottom: none; }

.credential-item__check { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.credential-item__text { font-size: 0.95rem; color: var(--text); }

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon { color: var(--gold); width: 20px; text-align: center; font-size: 1.1rem; }

.contact-quote {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.contact-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

.contact-form-wrap { background: var(--light); border-radius: 10px; padding: 2.5rem; }
.contact-form-wrap h3 { margin-bottom: 1.5rem; }

/* Contact Form 7 styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 1rem;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--blue); }

.wpcf7 textarea { min-height: 140px; resize: vertical; }

.wpcf7 input[type="submit"] {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.02em;
}

.wpcf7 input[type="submit"]:hover { background: var(--dark); }

/* ============================================================
   DIVIDER & MISC
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }

.raum-closing-quote {
  margin: 3rem auto 1rem;
  max-width: 560px;
  padding: 1.5rem 2rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  text-align: center;
}
.raum-closing-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  margin: 0;
  font-family: 'Raleway', sans-serif;
}
.mt-2 { margin-top: 2rem; }

/* ============================================================
   KOMMENTARE
   ============================================================ */
#comments { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.comments-title { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--dark); }
.comment-list { list-style: none !important; padding: 0; margin: 0 0 2rem; }
.comment-list .comment { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.comment-author .fn { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.comment-metadata { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.comment-content p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.comment-awaiting-moderation { font-size: 0.8rem; color: var(--gold); font-style: italic; }

#respond { margin-top: 2rem; }
#respond h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--dark); }
#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--white); margin-bottom: 1rem;
  transition: border-color var(--transition);
}
#respond input:focus, #respond textarea:focus { outline: none; border-color: var(--blue); }
#respond textarea { min-height: 130px; resize: vertical; }
#respond .submit {
  background: var(--blue); color: var(--white); border: none;
  padding: 0.65rem 1.75rem; border-radius: var(--radius);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: background var(--transition);
}
#respond .submit:hover { background: var(--dark); }
.comment-notes, .logged-in-as { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }

/* ============================================================
   IMPRESSUM & DATENSCHUTZ (static pages)
   ============================================================ */
.static-page { padding: 0; }
.static-page h2 { margin: 2rem 0 0.75rem; font-size: 1.35rem; color: var(--dark); }
.static-page h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
.static-page p { color: var(--muted); margin-bottom: 0.75rem; line-height: 1.75; }
.static-page a { color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand__name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand__tagline { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-preview__inner { grid-template-columns: 1fr; }
  .about-preview__img { max-width: 320px; }
  .about-page__intro { grid-template-columns: 1fr; }
  .about-page__photo { max-width: 260px; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .raum-detail__inner { grid-template-columns: 1fr; }
  .raum-detail__meta { position: static; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }
  .main-nav.is-open a { display: block; width: 100%; padding: 0.6rem 0.5rem; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 0 3rem; }
  .raeume-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  section { padding: 3.5rem 0; }
}

/* ============================================================
   FADE IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie Banner - hidden by default, shown via JS */
#cookie-banner { display: none; }
