/* ═══════════════════════════════════════════════════════
   CelleLiebe – Shared Stylesheet
   Gästeführung Celle · Olkeda Rudolf
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream:        #FAF6F0;
  --cream-dark:   #F0E8DA;
  --cream-mid:    #E5D8C5;
  --brown:        #5C3820;
  --brown-mid:    #7A5038;
  --brown-light:  #9E7258;
  --terra:        #C47240;
  --terra-light:  #D99060;
  --terra-pale:   #F2DECA;
  --sage:         #7D9068;
  --sage-light:   #9AAF85;
  --sage-pale:    #D8E5CE;
  --white:        #FDFAF6;
  --text:         #3A2010;
  --text-mid:     #7A5E48;
  --text-light:   #A88A72;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

.fachwerk-bg {
  /* Fachwerkoptik entfernt */
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.75rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,114,64,0.15);
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand img.nav-logo { height: 48px; width: auto; display: block; }
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--brown); letter-spacing: 0.01em; line-height: 1;
}
.nav-brand-text span { color: var(--terra); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; text-decoration: none;
  color: var(--text-mid); letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terra); }
.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 0.48rem 1.3rem !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--terra) !important; }

/* ── HERO (index – full viewport) ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 6rem 7vw;
  background: var(--cream); position: relative; overflow: hidden;
}
.hero-left::before {
  display: none; /* Fachwerkoptik entfernt */
}
.hero-right {
  background: var(--brown); position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 6rem 3rem 4rem;
}
.hero-right::after {
  content: ''; position: absolute; bottom: 0; left: 15%; right: 15%;
  height: 3px; background: var(--terra);
}
.hero-fw-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.06; }
.hero-logo-wrap {
  position: relative; z-index: 2;
  background: var(--white); border-radius: 50%; padding: 2.5rem;
  width: clamp(260px, 40vw, 420px); height: clamp(260px, 40vw, 420px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(196,114,64,0.25), 0 0 0 18px rgba(196,114,64,0.1);
  margin-bottom: 2.8rem;
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-stats {
  position: relative; z-index: 2; display: flex;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.8rem; width: 100%; max-width: 360px; justify-content: center;
}
.hero-stat {
  text-align: center; padding: 0 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.12); flex: 1;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--terra-light);
  line-height: 1; display: block;
}
.hero-stat-label {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,246,240,0.42); margin-top: 0.3rem; display: block;
}

/* ── HERO COMPACT (inner pages) ── */
.hero-compact {
  background: var(--brown);
  padding: 8rem 7vw 5rem;
  position: relative; overflow: hidden;
}
.hero-compact::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--terra);
}
.hero-compact.sage-bg { background: var(--sage); }
.hero-compact.sage-bg::after { background: var(--sage-pale); }
.hero-compact h1 { color: var(--white); }
.hero-compact .label-tag { color: var(--terra-light); }
.hero-compact .label-tag::before { background: var(--terra-light); }
.hero-compact .hero-sub { color: rgba(250,246,240,0.72); max-width: 600px; margin-bottom: 0; }
.hero-compact.sage-bg .label-tag { color: var(--sage-pale); }
.hero-compact.sage-bg .label-tag::before { background: var(--sage-pale); }
.hero-compact.sage-bg h1 { color: var(--white); }

/* ── TYPOGRAPHY ── */
.label-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); display: flex; align-items: center;
  gap: 0.9rem; margin-bottom: 1.6rem; position: relative;
}
.label-tag::before {
  content: ''; display: inline-block;
  width: 1.8rem; height: 1px; background: var(--terra); flex-shrink: 0;
}
.label-tag-sm {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); display: flex; align-items: center;
  gap: 0.8rem; margin-bottom: 1rem;
}
.label-tag-sm::before {
  content: ''; display: inline-block;
  width: 1.5rem; height: 1px; background: var(--terra); flex-shrink: 0;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem); font-weight: 300; line-height: 1.1;
  color: var(--brown); margin-bottom: 1.6rem; position: relative;
}
h1 em { font-style: italic; color: var(--terra); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 400; line-height: 1.2;
  color: var(--brown); margin-bottom: 1.4rem;
}
h2 em { font-style: italic; color: var(--terra); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 400; line-height: 1.25;
  color: var(--brown); margin-bottom: 0.8rem;
}
h3 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.88;
  color: var(--text-mid); max-width: 430px; margin-bottom: 2.8rem; position: relative;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; position: relative; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brown); color: var(--white);
  padding: 0.88rem 2.3rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--brown); display: inline-block;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--terra); border-color: var(--terra); }
.btn-outline {
  color: var(--brown); padding: 0.88rem 2.3rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--brown); display: inline-block;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--sage); padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--white); display: inline-block;
  white-space: nowrap; transition: background 0.25s, color 0.25s;
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ── PHOTO FRAME ── */
.photo-frame {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  border: 2px solid rgba(196,114,64,0.3);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.photo-frame::before, .photo-frame::after {
  content: ''; position: absolute;
  background: var(--terra); width: 40%; height: 3px; z-index: 2;
}
.photo-frame::before { top: 0; left: 0; }
.photo-frame::after  { bottom: 0; right: 0; }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: linear-gradient(transparent, rgba(92,56,32,0.75));
  padding: 2rem 1.5rem 1.2rem;
}
.photo-caption-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500;
  color: var(--white); display: block; line-height: 1;
}
.photo-caption-role {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,240,0.65); margin-top: 0.3rem; display: block;
}

/* ── ABOUT SECTION (index) ── */
.about {
  background: var(--brown); padding: 7rem 7vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.about h2 { color: var(--white); }
.about .label-tag-sm { color: var(--terra-light); }
.about .label-tag-sm::before { background: var(--terra-light); }
.about-text { font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(250,246,240,0.65); margin-bottom: 1.5rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 2rem; }
.highlight { border-left: 2px solid var(--terra); padding-left: 1rem; }
.highlight-title {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 0.25rem;
}
.highlight-text { font-size: 0.92rem; color: rgba(250,246,240,0.62); line-height: 1.5; }

/* ── TOURS (index grid) ── */
.tours { padding: 7rem 7vw; background: var(--white); }
.tours-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tour-card {
  border: 1px solid var(--cream-dark); background: var(--cream);
  padding: 2.5rem 2rem 2rem; position: relative;
  transition: transform 0.3s, box-shadow 0.3s; overflow: hidden;
}
.tour-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--terra); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(92,56,32,0.1); }
.tour-card:hover::after { transform: scaleX(1); }
.tour-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; font-weight: 300;
  color: var(--terra-pale); line-height: 1; margin-bottom: 0.7rem;
}
.tour-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500;
  color: var(--brown); line-height: 1.2; margin-bottom: 0.9rem;
}
.tour-text { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
.tour-personal {
  font-size: 0.84rem; line-height: 1.65; color: var(--brown-light);
  font-style: italic; border-left: 2px solid var(--terra-pale);
  padding-left: 0.85rem; margin-bottom: 1.4rem;
}
.tour-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tour-tag {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--terra); border: 1px solid var(--terra-pale);
  padding: 0.18rem 0.55rem; border-radius: 1px;
}
.tour-card.sage-accent::after { background: var(--sage); }
.tour-card.sage-accent .tour-tag { color: var(--sage); border-color: var(--sage-pale); }
.tour-card.sage-accent .tour-personal { border-color: var(--sage-pale); color: var(--sage); }

/* ── USP ── */
.usp { padding: 7rem 7vw; background: var(--cream-dark); }
.usp-inner { max-width: 560px; margin: 0 auto 3.5rem; text-align: center; }
.usp-inner .label-tag-sm { justify-content: center; }
.usp-inner .label-tag-sm::before { display: none; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp-card {
  text-align: center; padding: 2rem 1.3rem;
  background: var(--white); border: 1px solid var(--cream-mid);
}
.usp-icon {
  width: 56px; height: 56px; border: 1px solid var(--terra-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin: 0 auto 1.2rem;
}
.usp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--brown); margin-bottom: 0.5rem; }
.usp-text { font-size: 0.86rem; line-height: 1.65; color: var(--text-mid); }

/* ── SAGE STRIP ── */
.sage-strip {
  background: var(--sage); padding: 3.5rem 7vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.sage-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400;
  color: var(--white); line-height: 1.3; max-width: 600px;
}
.sage-strip-text em { font-style: italic; color: var(--sage-pale); }

/* ── INSTAGRAM SECTION ── */
.instagram-section { padding: 6rem 7vw; background: var(--cream); text-align: center; }
.instagram-section .label-tag-sm { justify-content: center; }
.instagram-section .label-tag-sm::before { display: none; }
.instagram-handle {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: var(--brown); text-decoration: none; margin: 1rem 0 0.5rem;
  transition: color 0.2s;
}
.instagram-handle:hover { color: var(--terra); }
.instagram-icon { font-size: 1.4rem; }
.instagram-sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 2rem; }
.instagram-placeholder {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  max-width: 480px; margin: 0 auto 2rem;
  border: 1px solid var(--cream-mid); overflow: hidden;
}
.insta-tile {
  aspect-ratio: 1; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: opacity 0.2s;
}
.insta-tile:hover { opacity: 0.8; }
.instagram-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); text-decoration: none;
  border-bottom: 1px solid var(--terra-pale); padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.instagram-cta:hover { color: var(--brown); border-color: var(--brown); }

/* ── CONTACT (dark / index) ── */
.contact {
  padding: 7rem 7vw; background: var(--brown);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start;
}
.contact h2 { color: var(--white); }
.contact .label-tag-sm { color: var(--terra-light); }
.contact .label-tag-sm::before { background: var(--terra-light); }
.contact-intro {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(250,246,240,0.62); margin-bottom: 2.5rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:first-child { padding-top: 0; }
.contact-icon { font-size: 1.1rem; margin-top: 0.05rem; flex-shrink: 0; }
.contact-label {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(250,246,240,0.35); margin-bottom: 0.2rem;
}
.contact-value { font-size: 0.95rem; color: rgba(250,246,240,0.75); line-height: 1.5; }
.contact-value a { color: var(--terra-light); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,240,0.4); margin-bottom: 0.45rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 1rem; color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  border-radius: 0; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terra); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,246,240,0.22); }
.form-group select option { background: #3a2010; color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: rgba(125,144,104,0.2); border: 1px solid var(--sage);
  padding: 1.2rem 1.5rem; margin-top: 1rem; text-align: center;
  color: var(--sage-light); font-size: 0.9rem; line-height: 1.6;
}
.form-success.show { display: block; }
.form-privacy {
  font-size: 0.78rem; color: rgba(250,246,240,0.35);
  line-height: 1.55; margin-top: 0.8rem;
}
.form-privacy a { color: var(--terra-light); }

/* ── CONTACT LIGHT (kontakt.html) ── */
.contact-light {
  padding: 6rem 7vw; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-light h2 { color: var(--brown); }
.contact-light .label-tag-sm { color: var(--terra); }
.contact-light .label-tag-sm::before { background: var(--terra); }
.contact-light .contact-intro { color: var(--text-mid); }
.contact-light .contact-item { border-bottom: 1px solid var(--cream-mid); }
.contact-light .contact-label { color: var(--text-light); }
.contact-light .contact-value { color: var(--text-mid); }
.contact-light .contact-value a { color: var(--terra); }
.contact-info-note {
  background: var(--cream-dark); border: 1px solid var(--cream-mid);
  padding: 1.2rem 1.5rem; margin-top: 2rem;
}
.contact-info-note p {
  font-size: 0.88rem; line-height: 1.65;
  color: var(--text-mid); margin-bottom: 0.3rem;
}
.contact-info-note p:last-child { margin-bottom: 0; }
.map-placeholder {
  height: 220px; background: var(--cream-dark);
  border: 1px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem; margin-top: 1.5rem;
}
.map-placeholder-text { font-size: 0.85rem; color: var(--text-light); text-align: center; }
.contact-form-light {
  background: var(--white); border: 1px solid var(--cream-mid); padding: 2.5rem;
}
.contact-form-light .form-group label { color: var(--text-mid); }
.contact-form-light .form-group input,
.contact-form-light .form-group select,
.contact-form-light .form-group textarea {
  background: var(--cream); border: 1px solid var(--cream-mid); color: var(--text);
}
.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder { color: var(--text-light); }
.contact-form-light .form-group select option { background: var(--cream); color: var(--text); }
.contact-form-light .form-group input:focus,
.contact-form-light .form-group select:focus,
.contact-form-light .form-group textarea:focus { border-color: var(--terra); }
.form-success-light {
  display: none;
  background: var(--sage-pale); border: 1px solid var(--sage-light);
  padding: 1.2rem 1.5rem; margin-top: 1rem; text-align: center;
  color: var(--sage); font-size: 0.9rem; line-height: 1.6;
}
.form-success-light.show { display: block; }
.form-privacy-light {
  font-size: 0.78rem; color: var(--text-mid);
  line-height: 1.55; margin-top: 0.8rem;
}
.form-privacy-light a { color: var(--terra); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: 5rem 7vw 6rem; background: var(--white);
}
.legal-content h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-top: 2.5rem; margin-bottom: 0.8rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--cream-mid);
}
.legal-content h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-top: 1.8rem; margin-bottom: 0.5rem;
}
.legal-content p { font-size: 0.93rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem; }
.legal-content a { color: var(--terra); }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content li { font-size: 0.93rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 0.3rem; }

/* ── FOOTER ── */
footer {
  background: #2A180A; padding: 2.5rem 7vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.footer-brand img { height: 36px; width: auto; opacity: 0.7; }
.footer-brand-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500;
  color: rgba(250,246,240,0.5);
}
.footer-brand-text span { color: var(--terra); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(250,246,240,0.32); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--terra); }
.footer-copy { font-size: 0.72rem; color: rgba(250,246,240,0.2); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  background: var(--terra); color: var(--white);
  width: 44px; height: 44px; border-radius: 2px;
  border: none; font-size: 1.1rem; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--brown); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:translateY(0) } }
.fade-up { opacity: 0; animation: fadeUp 0.85s ease forwards; }
.d1 { animation-delay: 0.1s }
.d2 { animation-delay: 0.28s }
.d3 { animation-delay: 0.46s }
.d4 { animation-delay: 0.64s }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr }
  .hero-right { min-height: 380px; padding: 3.5rem 2rem }
  .about, .contact { grid-template-columns: 1fr; gap: 3rem }
  .tours-grid { grid-template-columns: 1fr }
  .usp-grid { grid-template-columns: 1fr 1fr }
  .hero-left { padding: 7rem 5vw 4rem }
  .sage-strip { flex-direction: column; align-items: flex-start }
  .contact-light { grid-template-columns: 1fr; gap: 3rem }
  .tour-detail-card { grid-template-columns: 1fr !important; direction: ltr !important }
  .about-page-grid { grid-template-columns: 1fr }
  .about-page-photo { order: -1; max-width: 380px; margin: 0 auto }
  .why-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 600px) {
  .nav-links li:not(:last-child) { display: none }
  .usp-grid { grid-template-columns: 1fr }
  .tours-header { flex-direction: column; gap: 1.5rem; align-items: flex-start }
  .form-row { grid-template-columns: 1fr }
  footer { flex-direction: column; text-align: center }
  .instagram-placeholder { grid-template-columns: repeat(3, 1fr) }
  .tour-detail-meta { grid-template-columns: 1fr 1fr }
  .facts-grid { grid-template-columns: 1fr 1fr }
  .why-grid { grid-template-columns: 1fr }
  .tour-cta-section { padding: 3rem 5vw }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--brown);
  border-top: 3px solid var(--terra);
  padding: 1.3rem 7vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.22);
}
.cookie-text {
  font-size: 0.87rem; line-height: 1.65;
  color: rgba(250,246,240,0.78); max-width: 700px; flex: 1;
}
.cookie-text a { color: var(--terra-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--terra); color: var(--white);
  padding: 0.58rem 1.5rem; border-radius: 2px;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: 2px solid var(--terra);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-btn-accept:hover { background: var(--terra-light); border-color: var(--terra-light); }
.cookie-btn-decline {
  background: transparent; color: rgba(250,246,240,0.5);
  padding: 0.58rem 1.5rem; border-radius: 2px;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: 2px solid rgba(250,246,240,0.18);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-btn-decline:hover { color: var(--white); border-color: rgba(250,246,240,0.45); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.2rem 5vw; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
