/* Adirim — Sanctuary design: trust, warmth, discovery */
:root {
  --navy: #0a1628;
  --navy-mid: #152a4a;
  --navy-soft: #1e3a5f;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --cream: #f7f4ee;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --text: #1a2438;
  --muted: #5c6578;
  --on-dark: rgba(255, 255, 255, 0.9);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 4.5rem;
  --shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  --shadow-deep: 0 32px 80px rgba(10, 22, 40, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1080px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: 0.6rem 1rem; background: var(--gold-light); color: var(--navy);
  font-weight: 700; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Typography */
.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-head { margin-bottom: 2rem; text-align: center; }
.section-head--light .label { color: var(--gold-light); }
.section-head--light h2 { color: var(--white); }
.section-head--light .section-head__lead { color: var(--on-dark); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(2rem, 5vw, 2.75rem); color: var(--navy); }
.section-head__lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 8px 28px var(--gold-glow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--outline {
  background: transparent;
  border-color: var(--navy-mid);
  color: var(--navy-mid);
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2rem; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header);
}
.header.is-scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}
.brand__ring {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(201, 162, 39, 0.55);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.brand__img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__links { display: flex; align-items: center; gap: 1.25rem; }
.nav__links a:not(.btn) {
  color: var(--on-dark);
  font-size: 0.88rem;
  font-weight: 500;
}
.nav__links a:not(.btn):hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header);
  overflow: hidden;
  background: var(--navy);
}

.hero__bg { position: absolute; inset: 0; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.82) 100%
  );
}

.hero__mute {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 22, 40, 0.6);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.hero__mute.is-on { border-color: var(--gold-light); color: var(--gold-light); }

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero__brand { margin-bottom: 1rem; }
.hero__ring {
  display: inline-flex;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.15), 0 20px 50px rgba(0, 0, 0, 0.35);
}
.hero__ring img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.hero__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--white);
  max-width: 16ch;
  margin: 0 auto 1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__lead {
  color: var(--on-dark);
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__trust-line {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  max-width: 28rem;
  margin: 0 auto;
}

/* Sections */
.section { padding: clamp(4rem, 10vh, 6rem) 0; }

.section--discover { background: var(--cream); }
.section--trust { background: var(--navy); color: var(--white); }
.section--experiences { background: var(--navy-mid); color: var(--white); }
.section--crews { background: var(--cream-dark); }
.section--gallery { background: var(--navy); }
.section--donate { background: var(--cream); }
.section--contact { background: var(--white); }

/* Discover — interactive */
.discover {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.discover__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.discover-tab {
  text-align: left;
  padding: 1rem 1.15rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.discover-tab:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.discover-tab.is-active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, var(--white) 100%);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.discover-tab strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.discover-tab span {
  font-size: 0.8rem;
  color: var(--muted);
}

.discover__panel {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(201, 162, 39, 0.2);
  min-height: 380px;
}

.discover__visual {
  position: relative;
  min-height: 240px;
  background: var(--navy);
  overflow: hidden;
}
.discover__visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}
.discover__visual img.is-fading { opacity: 0; }

.discover__copy {
  padding: 1.5rem 1.75rem;
}
.discover__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.discover__copy h3 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.discover__copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.discover__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--navy-mid);
  border-bottom: 1px solid var(--gold);
}

/* Trust cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.trust-card.is-open {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.trust-card__btn {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--white);
}
.trust-card__icon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.trust-card__btn h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.trust-card__hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.trust-card__detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), padding 0.35s var(--ease);
}
.trust-card.is-open .trust-card__detail {
  max-height: 280px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
}
.trust-card__detail p {
  color: var(--on-dark);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.trust-card__detail li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}
.trust-card__detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.trust-card__detail .btn { margin-top: 0.75rem; }

/* Experiences — tabs + panel */
.exp-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.exp-layout__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exp-tab {
  width: 100%;
  padding: 1.15rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.exp-tab.is-active,
.exp-tab:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: rgba(201, 162, 39, 0.45);
}
.exp-tab__when {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.exp-tab strong { font-family: var(--font-display); font-size: 1.1rem; }

.exp-layout__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 2;
  grid-row: 1;
}
.exp-layout__panel.is-active { display: grid; }

.exp-layout__panel img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}
.exp-panel__text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-panel__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.exp-panel__text p { color: var(--on-dark); font-size: 0.92rem; margin-bottom: 1rem; }
.exp-panel__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Crews */
.crews {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.crew {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  max-width: 280px;
}
.crew__badge { width: 180px; margin: 0 auto 1rem; border-radius: 50%; }
.crew h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.35rem; }
.crew p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.crew--soon {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.crew__age {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
}

/* Slideshow — images always in DOM */
.slideshow {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 520px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep);
  background: var(--navy-mid);
}

.slideshow__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  z-index: 0;
}
.slideshow__img.is-active {
  opacity: 1;
  z-index: 1;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.slideshow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.slideshow-dot.is-active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* Donate */
.donate-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.donate-box h2 { margin-bottom: 0.75rem; }
.donate-box > p { color: var(--muted); margin-bottom: 1.5rem; }
.donate-box__methods { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.donate-box__zelle span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.donate-box__zelle strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.donate-box__zelle small { color: var(--muted); font-size: 0.8rem; }
.donate-box__note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Contact */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}
.contact-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.contact-card__role {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-card a { font-weight: 600; color: var(--navy-mid); }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}
.contact-row__email { font-weight: 600; color: var(--navy-mid); font-size: 0.95rem; }
.contact-address { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; }
.contact-address a:hover { color: var(--gold); }

.contact-form {
  text-align: left;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.field { margin-bottom: 0.85rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.field input, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 0.75rem; padding: 0.75rem; border-radius: var(--radius); font-size: 0.9rem; text-align: center; }
.form-msg--ok { background: rgba(30, 58, 95, 0.08); color: var(--navy-mid); }
.form-msg--err { background: rgba(180, 40, 40, 0.08); color: #8b2020; }

.site-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.82rem;
  color: var(--muted);
}
.site-foot__logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.fab-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .discover { grid-template-columns: 1fr; }
  .discover__tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }
  .discover__tabs::-webkit-scrollbar { display: none; }
  .discover-tab { flex: 0 0 auto; min-width: 140px; }
  .trust-grid { grid-template-columns: 1fr; }
  .exp-layout { grid-template-columns: 1fr; }
  .exp-layout__tabs { flex-direction: row; overflow-x: auto; }
  .exp-tab { flex: 0 0 auto; min-width: 160px; }
  .exp-layout__panel { grid-column: auto; grid-template-columns: 1fr; }
  .exp-layout__panel img { min-height: 180px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.98);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.75rem 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero__ring { width: 6rem; height: 6rem; }
}

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