/* No.1 Miriam — black / gold / white (Sara Vasilache–style) */

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --panel: #0f0f0f;
  --gold: #c9a227;
  --gold-mid: #a68520;
  --gold-dark: #8b6914;
  --white: #ffffff;
  --muted: #a3a3a3;
  --muted-dark: #737373;
  --radius: 16px;
  --radius-lg: 22px;
  --nav-radius: 0 0 24px 24px;
  --max: 1180px;
  --font: 'Montserrat', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.theme-sara {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 640px; margin: 0 auto; }

/* ── Floating top bar ── */
.header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 20px 0;
  pointer-events: none;
}
.header-shell > * { pointer-events: auto; }

.navbar-float {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--black);
  border-radius: var(--nav-radius);
  padding: 14px 22px 16px;
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  display: block;
}
.brand-mark-footer .brand-logo-img {
  height: 42px;
  max-width: 180px;
}

.nav-main { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav-main-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  justify-content: center;
}
.nav-main-list a {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-main-list a:hover,
.nav-main-list a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-switch a {
  color: rgba(255,255,255,0.55);
  padding: 4px 6px;
  border-radius: 4px;
}
.lang-switch a.is-on { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,0.25); user-select: none; }

.btn-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-donate:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-donate-light {
  border-color: rgba(255,255,255,0.5);
}
.btn-donate-light:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-donate-block { width: 100%; text-align: center; margin-top: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100vh;
  background: var(--black-soft);
  z-index: 300;
  padding: 88px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  border-left: 1px solid rgba(201, 162, 39, 0.25);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: var(--white);
  font-weight: 600;
  border-radius: 10px;
}
.mobile-menu a:hover { background: rgba(201, 162, 39, 0.12); color: var(--gold); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 520px) {
  .lang-switch { display: none; }
}

/* ── Hero (home) ── */
.hero-sara {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 120px 0 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-sara-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  align-items: center;
}
.hero-org {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.hero-name {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  background: linear-gradient(110deg, #f0e6b8, var(--gold) 35%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.7;
}

.hero-sara-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(201, 162, 39, 0.2);
  aspect-ratio: 16 / 10;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-embed.ratio,
.gallery-embed.ratio {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  min-height: 200px;
}
.hero-embed iframe,
.gallery-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-card-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}
.hero-card-placeholder span { font-size: 2rem; opacity: 0.5; }
.hero-card-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.65);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg {
  width: 100%;
  height: clamp(48px, 8vw, 90px);
  display: block;
}

@media (max-width: 900px) {
  .hero-sara-inner { grid-template-columns: 1fr; }
  .hero-sara { min-height: unset; padding-top: 110px; }
}

/* ── Sections ── */
.section-white { background: var(--white); padding: 72px 0 96px; }
.section-muted { background: #f4f4f4; padding: 72px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  color: var(--white);
  padding: 80px 0;
}

.about-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.about-subheading {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--black);
}

.about-grid-sara {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px 40px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
}
.about-photo-tall,
.about-photo-small,
.ph {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ececec;
  border: 1px solid #e5e5e5;
}
.about-photo-tall { min-height: 420px; }
.about-photo-tall img,
.about-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-stack { display: flex; flex-direction: column; gap: 16px; }
.about-photo-small { flex: 1; min-height: 160px; }
.ph, .ph-tall {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-dark);
  font-size: 0.85rem;
  font-weight: 600;
}
.ph-tall { min-height: 420px; }

.about-text-sara .about-kicker {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-text-sara p {
  color: #333;
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.about-text-sara strong { color: var(--black); }

.btn-gold-outline {
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-gold-solid {
  display: inline-flex;
  padding: 14px 28px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, #e8d48b, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.btn-gold-solid:hover { filter: brightness(1.06); transform: translateY(-1px); }

@media (max-width: 900px) {
  .about-grid-sara { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .about-photo-tall { min-height: 280px; }
  .ph-tall { min-height: 280px; }
}

/* Mission */
.mission-inner-sara { text-align: center; max-width: 820px; margin: 0 auto; }
.mission-inner-sara.center { display: flex; justify-content: center; }
.mission-quote {
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
}
.mission-body {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

/* Gallery */
.gallery-preview { padding-bottom: 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid #e8e8e8;
}
.gallery-cell img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-cell figcaption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #444;
}
.gallery-empty { grid-column: 1 / -1; color: var(--muted-dark); }

.gallery-embed { aspect-ratio: 16/10; position: relative; min-height: 160px; }

/* Inner pages */
.page-hero-sara {
  background: var(--black);
  color: var(--white);
  padding: 130px 0 56px;
  text-align: center;
}
.page-title-sara {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(110deg, #f0e6b8, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.page-lead-sara { color: rgba(255,255,255,0.65); font-size: 1rem; }

.timeline-sara { display: flex; flex-direction: column; gap: 24px; }
.tl-row {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  background: #fafafa;
}
.tl-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.tl-row h3 { margin-bottom: 8px; font-size: 1.15rem; }
.tl-row p { color: #555; font-size: 0.95rem; }

.support-p { color: #444; margin-bottom: 20px; font-size: 1rem; }

/* Donation amount tiers (2–4–8–16 EUR) */
.donate-tier-wrap { max-width: 920px; margin: 0 auto; }
.donate-tier-intro {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.donate-tier-legend {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding: 0;
}
.donate-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.donate-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px 20px;
  border-radius: var(--radius-lg);
  background: #fafafa;
  border: 2px solid #e8e8e8;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}
button.donate-tier-card {
  width: 100%;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.donate-tier-card:hover {
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.donate-tier-card.is-selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf7 0%, #faf8f2 100%);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}
.donate-tier-picker .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.donate-tier-picker .btn-row .btn-gold-solid {
  border: 0;
  font: inherit;
  cursor: pointer;
}
.donate-tier-picker .btn-row .btn-gold-outline {
  margin-top: 0;
  align-self: center;
}
.donate-tier-amount {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(110deg, #f0e6b8, var(--gold) 40%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  line-height: 1.1;
}
.donate-tier-eur { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; color: var(--gold-dark); margin-bottom: 10px; }
.donate-tier-desc { font-size: 0.82rem; color: #555; line-height: 1.45; }
.donate-tier-note {
  font-size: 0.8rem;
  color: var(--muted-dark);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .donate-tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .donate-tier-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-sara label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
  margin-top: 14px;
}
.form-sara label:first-child { margin-top: 0; }
.form-sara input,
.form-sara textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font: inherit;
  background: var(--white);
}
.form-sara button { margin-top: 20px; border: 0; cursor: pointer; }
.form-error { color: #b91c1c; margin-bottom: 12px; font-size: 0.9rem; }
.thanks { font-size: 1.1rem; font-weight: 600; color: var(--gold-dark); }

.contact-aside {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}
.contact-aside p { margin-bottom: 18px; }
.contact-aside a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tag { margin-top: 12px; font-size: 0.9rem; max-width: 280px; line-height: 1.5; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0 28px; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  margin-left: 16px;
}
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal-page { padding: 100px 0 80px; max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; margin-bottom: 12px; }
.legal-page h2 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal-page p { color: #444; margin-bottom: 12px; }
