/* =====================================================
   LILJENDAL 66 — Main Stylesheet
   ===================================================== */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --red: #8B2A2A;
  --red-light: #B84040;
  --cream: #F5EFE0;
  --cream-dark: #EDE4CC;
  --forest: #3A5A3A;
  --forest-light: #5A7A5A;
  --bark: #6B4C2A;
  --charcoal: #2A2420;
  --white: #FDFAF4;
  --birch: #D4C9A8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(245, 239, 224, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(42,36,32,0.08);
}

.site-logo,
.site-header .nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.primary-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.primary-navigation a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.primary-navigation a:hover { color: var(--red); }

/* ---- HERO ---- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,36,32,0.1) 0%,
    rgba(42,36,32,0.05) 40%,
    rgba(42,36,32,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem 8rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--birch);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--cream);
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,239,224,0.85);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: rgba(245,239,224,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,239,224,0.7), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ---- INTRO SECTION ---- */
.intro {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5A4F42;
  margin-bottom: 1rem;
}

.handwriting-accent {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1.4;
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 3px solid var(--red-light);
  background: rgba(139,42,42,0.04);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.handwriting-accent::before {
  content: '"';
  font-size: 4rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  line-height: 1;
}

.intro-visual {
  position: relative;
}

.intro-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px 40px 4px 40px;
  box-shadow: 20px 20px 60px rgba(42,36,32,0.2);
}

.intro-visual-tag {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  transform: rotate(-3deg);
  box-shadow: 5px 5px 20px rgba(139,42,42,0.3);
}

/* ---- FEATURES ---- */
.features {
  background: var(--cream);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 30px,
    transparent 30px, transparent 40px,
    var(--forest) 40px, var(--forest) 70px,
    transparent 70px, transparent 80px
  );
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.section-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 2px 20px 2px 20px;
  box-shadow: 0 4px 30px rgba(42,36,32,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(42,36,32,0.12);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #6B5F52;
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 8rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.gallery-header .section-title {
  max-width: 400px;
}

.gallery-handwriting {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--bark);
  text-align: right;
  line-height: 1.5;
  max-width: 300px;
  transform: rotate(-1.5deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: 1 / 7; height: 400px; }
.gallery-item:nth-child(2) { grid-column: 7 / 13; height: 400px; }
.gallery-item:nth-child(3) { grid-column: 1 / 5; height: 300px; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; height: 300px; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; height: 300px; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(42,36,32,0.7));
  color: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  padding: 2rem 1.2rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---- KITCHEN SECTION ---- */
.kitchen-section {
  background: var(--charcoal);
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.kitchen-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.kitchen-image {
  position: relative;
}

.kitchen-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 40px 4px 40px 4px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.4);
}

.kitchen-label {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--cream);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: rotate(15deg);
  box-shadow: 5px 5px 25px rgba(0,0,0,0.3);
}

.kitchen-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.kitchen-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--birch);
  margin-bottom: 1rem;
}

.kitchen-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.kitchen-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.kitchen-feat::before {
  content: '✓';
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--forest-light);
}

/* ---- BOOKING SECTION ---- */
.booking-section {
  padding: 8rem 3rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-bg-text {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 18vw;
  color: rgba(139,42,42,0.04);
  font-weight: 700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.booking-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.booking-section h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.booking-handwriting {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 2rem;
  display: block;
}

.booking-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5A4F42;
  margin-bottom: 3rem;
}

.price-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(139,42,42,0.3);
}

.price-badge .caveat-price {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--birch);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,42,42,0.1);
}

.form-group.full { grid-column: 1 / -1; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(139,42,42,0.25);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,42,42,0.35);
}

.form-message {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: rgba(58,90,58,0.1);
  color: var(--forest);
  border: 1px solid var(--forest-light);
}

.form-message.error {
  background: rgba(139,42,42,0.08);
  color: var(--red);
  border: 1px solid var(--red-light);
}

/* ---- LOCATION ---- */
.location-section {
  padding: 7rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.location-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #5A4F42;
  margin-bottom: 1rem;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.location-detail .icon { font-size: 1.2rem; }

.map-placeholder {
  background: var(--cream-dark);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--bark);
  border: 2px dashed var(--birch);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '📍';
  font-size: 3rem;
}

.map-placeholder p {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--bark);
  text-align: center;
}

.map-placeholder small {
  font-size: 0.8rem;
  color: var(--birch);
  font-family: 'Jost', sans-serif;
}

.map-embed {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(42,36,32,0.12);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--forest);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '❝';
  font-size: 25vw;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Lora', serif;
  pointer-events: none;
}

.testimonials-section h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 4rem;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  border-radius: 4px 20px 4px 20px;
  text-align: left;
  backdrop-filter: blur(5px);
}

.testimonial-stars {
  color: #F0C060;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--birch);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 3rem 3rem;
  color: var(--birch);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(212,201,168,0.7);
  max-width: 280px;
}

.footer-brand .handwriting-small {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--red-light);
  margin-top: 1.5rem;
  display: block;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(212,201,168,0.7);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li:hover,
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(212,201,168,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(212,201,168,0.4);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom-handwriting {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  opacity: 0.7;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- DECORATIVE ---- */
.divider-pine {
  text-align: center;
  padding: 2rem 0;
  font-size: 1.5rem;
  opacity: 0.4;
  letter-spacing: 1.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .site-header { padding: 1.2rem 2rem; }
  .primary-navigation { display: none; }
  .hero-content { padding: 0 2rem 5rem; }
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .kitchen-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   BURGER BUTTON
   ═══════════════════════════════════════════════════ */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  position: relative;
}

.burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.2s ease,
              background 0.2s ease;
  transform-origin: center;
}

/* Scrolled header — weiße Linien wenn Overlay offen */
.site-header.scrolled .burger-line { background: var(--charcoal); }

/* Hero-Bereich: Burger-Linien weiß (kein scrolled-Zustand) */
.burger-btn .burger-line { background: var(--white); }
.site-header.scrolled .burger-btn .burger-line { background: var(--charcoal); }

/* Burger → X Animation */
.burger-btn.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger-btn.is-open .burger-line { background: var(--charcoal); }

/* ═══════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 60px rgba(42,36,32,0.18);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 6rem 2.5rem 3rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav-list li:first-child {
  border-top: 1px solid var(--cream-dark);
}

.mobile-nav-list a {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.25s;
  letter-spacing: 0.01em;
}

.mobile-nav-list a:hover {
  color: var(--red);
  padding-left: 0.5rem;
}

.mobile-menu-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-menu-brand {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--red);
}

.mobile-menu-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--bark);
  opacity: 0.7;
}

/* ── Backdrop ── */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42,36,32,0.5);
  backdrop-filter: blur(3px);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Responsive: Burger nur auf Mobile zeigen ── */
@media (max-width: 900px) {
  .primary-navigation { display: none; }
  .burger-btn { display: flex; }
}

/* Body scroll lock wenn Menü offen */
body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   LEAFLET MAP
   ═══════════════════════════════════════════════════ */
.leaflet-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(42,36,32,0.15);
  height: 420px;
  position: relative;
}

#liljendalMap {
  width: 100%;
  height: 100%;
  background: #EDE4CC; /* cream fallback während tiles laden */
}

/* Warmer Farbton über OpenTopoMap — kühles Kartengrün → warmes Waldgrün */
#liljendalMap {
  filter: sepia(18%) saturate(0.9) hue-rotate(-8deg) brightness(0.97);
}

/* Leichte Vignette für Tiefenwirkung */
.leaflet-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(42,36,32,0.12) 100%
  );
  pointer-events: none;
  z-index: 400;
  border-radius: 20px;
}

/* Leaflet Popup */
.liljendal-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(42,36,32,0.2);
  border: 1px solid #EDE4CC;
  padding: 0;
}

.liljendal-popup .leaflet-popup-content {
  margin: 14px 18px;
}

.liljendal-popup .leaflet-popup-tip {
  background: #fff;
}

/* Attribution klein und dezent */
.leaflet-control-attribution {
  font-size: 0.65rem !important;
  background: rgba(253,250,244,0.8) !important;
  backdrop-filter: blur(4px);
}

/* Zoom-Buttons im Theme-Stil */
.leaflet-control-zoom a {
  font-family: 'Lora', serif !important;
  color: var(--charcoal) !important;
  border-color: var(--birch) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--cream) !important;
  color: var(--red) !important;
}

@media (max-width: 900px) {
  .leaflet-map-wrap { height: 320px; }
}

/* ═══════════════════════════════════════════════════
   SOMMERKÜCHE / GLASVERANDA
   ═══════════════════════════════════════════════════ */
.summerhouse-section {
  background: var(--white);
  padding: 8rem 3rem;
  overflow: hidden;
}

.summerhouse-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.summerhouse-text .section-eyebrow {
  margin-bottom: 0.6rem;
}

.summerhouse-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.summerhouse-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5A4F42;
  margin-bottom: 1rem;
}

.summer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.summer-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--forest);
  background: rgba(58,90,58,0.08);
  border: 1px solid rgba(58,90,58,0.2);
  padding: 0.45rem 1rem;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
}

.summer-tag:hover {
  background: var(--forest);
  color: var(--white);
}

/* Bilder-Stack rechts */
.summerhouse-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.summerhouse-img-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px 30px 4px 30px;
  box-shadow: 15px 15px 50px rgba(42,36,32,0.15);
}

.summerhouse-img-secondary {
  position: relative;
  width: 75%;
  margin-left: auto;
}

.summerhouse-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 30px 4px 30px 4px;
  box-shadow: 10px 10px 40px rgba(42,36,32,0.12);
}

.summerhouse-label {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--cream);
  border: 2px solid var(--birch);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--bark);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 12px rgba(42,36,32,0.1);
}

/* ═══════════════════════════════════════════════════
   NATUR: SEE & FLUSS
   ═══════════════════════════════════════════════════ */
.nature-section {
  background: var(--cream);
  padding: 8rem 3rem 0;
  position: relative;
  overflow: hidden;
}

.nature-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--forest) 0px, var(--forest) 30px,
    transparent 30px, transparent 40px,
    #4A8A8A 40px, #4A8A8A 70px,
    transparent 70px, transparent 80px
  );
}

.nature-header {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.nature-header .section-eyebrow { color: #4A7A7A; }

.nature-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5A4F42;
  margin-top: 1.2rem;
}

/* Panels: zwei Spalten */
.nature-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nature-panel {
  background: var(--white);
  border-radius: 4px 24px 4px 24px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(42,36,32,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nature-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(42,36,32,0.14);
}

.nature-panel-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.nature-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nature-panel:hover .nature-panel-img img {
  transform: scale(1.05);
}

.nature-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,36,32,0.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.nature-panel-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nature-panel-overlay h3 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
}

.nature-panel-text {
  padding: 1.8rem;
}

.nature-panel-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5A4F42;
  margin-bottom: 1.2rem;
}

.nature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 400;
}

.nature-list li span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Panorama-Zitat */
.nature-quote {
  margin-top: 5rem;
  background: var(--forest);
  margin-left: -3rem;
  margin-right: -3rem;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.nature-quote::before {
  content: '〰';
  position: absolute;
  font-size: 30vw;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: 'Lora', serif;
}

.nature-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.nature-quote-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .summerhouse-inner { grid-template-columns: 1fr; gap: 3rem; }
  .summerhouse-img-secondary { width: 90%; }
  .nature-panels { grid-template-columns: 1fr; }
  .nature-quote { margin-left: -1.5rem; margin-right: -1.5rem; padding: 3rem 1.5rem; }
  .summerhouse-section { padding: 6rem 1.5rem; }
  .nature-section { padding: 6rem 1.5rem 0; }
}

/* ═══════════════════════════════════════════════════
   DORF & EINKAUFEN
   ═══════════════════════════════════════════════════ */
.village-section {
  padding: 8rem 3rem;
  background: var(--white);
  overflow: hidden;
}

.village-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.village-image {
  position: relative;
  margin-top: 1rem;
}

.village-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px 40px 4px 40px;
  box-shadow: 20px 20px 60px rgba(42,36,32,0.15);
}

.village-text .section-eyebrow { margin-bottom: 0.6rem; }

.village-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.village-text > p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5A4F42;
  margin-bottom: 2rem;
}

/* Orte-Liste */
.village-places {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.village-place {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}

.village-place:first-child { border-top: 1px solid var(--cream-dark); }

.village-place:hover {
  background: rgba(245,239,224,0.5);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  border-color: transparent;
}

.village-place-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.4rem;
  text-align: center;
  margin-top: 0.1rem;
}

.village-place-body { flex: 1; }

.village-place-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.village-place-header h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.village-place-dist {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.village-place-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6B5F52;
  margin: 0;
}

@media (max-width: 900px) {
  .village-inner { grid-template-columns: 1fr; gap: 3rem; }
  .village-image img { height: 300px; }
}
