/* ════════════════════════════════════════════════
   HERZENSWARM – Shared Stylesheet
   Warm organic / editorial aesthetic
   Fonts: Cormorant Garamond (display) + Nunito (body)
   ════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
  --cream:        #FAF6EF;
  --cream-mid:    #F3EDE2;
  --cream-dark:   #EAE0D2;
  --terra:        #C0888E;
  --terra-dk:     #9E6872;
  --sage:         #8E96B0;
  --sage-dk:      #6E7692;
  --brown:        #3D2B33;
  --brown-lt:     #6B4F58;
  --warm-gray:    #9E8A8E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', sans-serif;
  --nav-h:        68px;
  --radius:       6px;
  --shadow:       0 4px 24px rgba(61,43,31,.10);
  --shadow-sm:    0 2px 10px rgba(61,43,31,.08);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  min-height: 100vh;
}
img   { max-width: 100%; display: block; }
a     { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dk); text-decoration: underline; }

/* ── Navigation ─────────────────────────────────── */
.hw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,246,239,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61,43,31,.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
  box-shadow: 0 2px 16px rgba(61,43,31,.05);
}

.hw-nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.hw-nav-brand strong {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 600;
  color: var(--terra); letter-spacing: .01em;
}
.hw-nav-brand span {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 300;
  color: var(--brown-lt); letter-spacing: .06em;
}

.hw-nav-links { display: flex; gap: .2rem; list-style: none; }
.hw-nav-links a {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--brown-lt);
  padding: .45rem .8rem;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
}
.hw-nav-links a:hover,
.hw-nav-links a.hw-active {
  background: var(--terra); color: white;
  text-decoration: none;
}

/* Hamburger */
.hw-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hw-nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.hw-nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid rgba(61,43,31,.08);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column; gap: .35rem;
  box-shadow: 0 8px 20px rgba(61,43,31,.08);
}
.hw-nav-mobile.hw-open { display: flex; }
.hw-nav-mobile a {
  font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--brown-lt); padding: .6rem .9rem;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
}
.hw-nav-mobile a:hover,
.hw-nav-mobile a.hw-active { background: var(--terra); color: white; }

@media (max-width: 700px) {
  .hw-nav-links  { display: none; }
  .hw-nav-toggle { display: flex; }
}

/* ── Hero Slider ─────────────────────────────────── */
.hw-hero {
  position: relative; width: 100%;
  height: clamp(360px, 58vh, 560px);
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hw-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.hw-slide.hw-slide-active { opacity: 1; }
.hw-slide img { width: 100%; height: 100%; object-fit: cover; }
.hw-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(61,43,31,.12), rgba(61,43,31,.58));
  display: flex; align-items: center; justify-content: center; padding: 2rem 2rem 5rem;
}
.hw-slide-quote {
  max-width: 640px; text-align: center;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-style: italic; font-weight: 600; line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.7), 0 0 40px rgba(0,0,0,.3);
}
.hw-hero-brand {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%); text-align: center; color: white;
  pointer-events: none;
}
.hw-hero-brand h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem); font-weight: 300;
  letter-spacing: .04em;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hw-hero-brand p {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase; font-style: italic;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hw-slide-dots {
  position: absolute; bottom: 1.2rem; right: 1.6rem;
  display: flex; gap: .45rem;
}
.hw-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.hw-dot.hw-dot-active { background: white; transform: scale(1.2); }

/* ── Layout Utilities ────────────────────────────── */
.hw-container {
  max-width: 960px; margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2.5rem);
}
.hw-section { padding: 3.5rem 0; }
.hw-section + .hw-section {
  border-top: 1px solid rgba(61,43,31,.07);
}

/* ── Typography ──────────────────────────────────── */
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500; color: var(--terra);
  line-height: 1.15; margin-bottom: 1.4rem;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500;
  color: var(--brown); margin-bottom: .7rem;
}
p {
  font-size: 1.05rem; line-height: 1.82;
  color: var(--brown-lt); margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }
strong { color: var(--brown); }

/* ── Callout blockquote ──────────────────────────── */
.hw-callout {
  border-left: 4px solid var(--terra);
  background: rgba(192,112,72,.06);
  padding: 1.1rem 1.6rem;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-display);
  font-size: 1.18rem; font-style: italic;
  font-weight: 400; color: var(--brown);
  line-height: 1.65; margin: 1.6rem 0;
}

/* ── Info strip (dt/dd) ──────────────────────────── */
.hw-info-strip {
  background: var(--cream-mid);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem; margin-top: 1.8rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: .35rem 1.2rem;
  font-size: .93rem; line-height: 1.65;
}
.hw-info-strip dt { font-weight: 700; color: var(--brown); white-space: nowrap; }
.hw-info-strip dd { color: var(--brown-lt); }

/* ── Cards ───────────────────────────────────────── */
.hw-card {
  background: white; border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--terra);
}
.hw-card h3 { color: var(--terra); }

/* ── Offer grid ──────────────────────────────────── */
.hw-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem; margin-top: 2rem;
}
.hw-offer-card {
  background: white; border-radius: var(--radius);
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.hw-offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--terra), var(--sage));
}
.hw-offer-card h3 { font-size: 1.15rem; }
.hw-price {
  display: inline-block; margin-top: .9rem;
  font-weight: 700; font-size: .85rem;
  color: var(--terra);
  background: rgba(192,112,72,.1);
  padding: .25rem .75rem; border-radius: 30px;
}

/* ── Quick infos (dark bar) ──────────────────────── */
.hw-quick {
  background: var(--brown); color: white;
  padding: 3rem 0;
}
.hw-quick h3 {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .8rem;
}
.hw-quick p, .hw-quick a {
  color: rgba(255,255,255,.78); font-size: .94rem;
}
.hw-quick a:hover { color: var(--terra); text-decoration: none; }
.hw-quick-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (max-width: 520px) { .hw-quick-grid { grid-template-columns: 1fr; } }

.hw-insta {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem;
}
.hw-insta img { width: 26px; height: 26px; border-radius: 6px; }
.hw-insta span { color: rgba(255,255,255,.78); font-size: .9rem; }
.hw-insta:hover span { color: var(--terra); }

/* ── IE list ─────────────────────────────────────── */
.hw-ie-list { list-style: none; margin: 1rem 0 1.5rem; }
.hw-ie-list li {
  position: relative; padding-left: 1.5rem;
  font-size: .97rem; line-height: 1.75;
  color: var(--brown-lt); margin-bottom: .25rem;
}
.hw-ie-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--terra); font-size: .65rem; top: .38rem;
}

/* ── Source box ──────────────────────────────────── */
.hw-sources {
  background: var(--cream-mid); border-radius: var(--radius);
  padding: 1.5rem 2rem; margin-top: 1.5rem;
}
.hw-sources ol { padding-left: 1.2rem; }
.hw-sources li {
  font-size: .88rem; line-height: 1.7;
  color: var(--brown-lt); margin-bottom: .6rem;
}

/* ── Tag cloud ───────────────────────────────────── */
.hw-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0;
}
.hw-tags span {
  background: var(--sage); color: white;
  font-size: .78rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 30px;
}

/* ── Links list ──────────────────────────────────── */
.hw-links-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.hw-links-list a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1.02rem; font-weight: 600;
  color: var(--terra); padding: .9rem 1.4rem;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(192,112,72,.15);
  transition: background .18s, color .18s, transform .15s;
}
.hw-links-list a::before { content: '↗'; }
.hw-links-list a:hover {
  background: var(--terra); color: white;
  transform: translateX(4px); text-decoration: none;
}

/* ── Grids ───────────────────────────────────────── */
.hw-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 580px) { .hw-two-col { grid-template-columns: 1fr; } }

.hw-img-text {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 3rem; align-items: start; margin-top: 1.5rem;
}
.hw-img-text.hw-flip { grid-template-columns: 1fr 220px; }
@media (max-width: 640px) {
  .hw-img-text,
  .hw-img-text.hw-flip { grid-template-columns: 1fr; }
  .hw-img-text.hw-flip img { order: -1; }
}
.hw-img-text img, .hw-img-text.hw-flip img {
  border-radius: var(--radius); box-shadow: var(--shadow); width: 100%;
}

/* ── Full-width image ────────────────────────────── */
.hw-full-img {
  width: 100%; max-height: 520px; object-fit: cover;
  display: block;
}

/* ── Footer ──────────────────────────────────────── */
.hw-footer {
  background: var(--cream-mid);
  border-top: 1px solid rgba(61,43,31,.08);
  text-align: center; padding: 1.4rem;
  font-size: .78rem; color: var(--warm-gray);
}
.hw-footer a { color: var(--warm-gray); }
.hw-footer a:hover { color: var(--terra); }

/* ── Fade-in animation ───────────────────────────── */
.hw-fade {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.hw-fade.hw-visible { opacity: 1; transform: none; }
