/* =====================================================================
   Neuschwanstein money-page — global styles.
   Palette derived from Bayerische Schlösserverwaltung visual identity
   (dark teal header, warm ivory content, gold accents) and the alpine
   heritage feel of the actual Neuschwanstein.de site.
   ===================================================================== */

:root {
  --white:    #ffffff;
  --ivory:    #fbfaf6;
  --paper:    #f4f2ec;
  --ink:      #1c2c2b;
  --ink-2:    #33474a;
  --dim:      #74858a;
  --line:     #dcdbd3;
  --line-2:   #ecebe4;
  --teal:     #517977;    /* BSV header teal */
  --teal-dk:  #3d5f5d;
  --teal-lt:  #6b8f8d;
  --gold:     #b48b3a;    /* gold accent */
  --gold-lt:  #d4a955;
  --gold-dk:  #8c6b28;
  --brand:    #1c2c2b;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header (matches BSV / neuschwanstein.de dark teal bar) ---- */
.site-header {
  background: var(--teal);
  color: var(--white);
  height: 84px;
  display: flex; align-items: center;
  position: sticky; top: 0; z-index: 30;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.site-header .inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}
.hdr-brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--white);
}
.hdr-brand-mark {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  padding: 4px;
  color: var(--white);
}
.hdr-brand-mark svg { width: 100%; height: 100%; }
.hdr-brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hdr-brand-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px; font-weight: 500; letter-spacing: 0.01em;
}
.hdr-brand-sub {
  font-size: 12px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.hdr-right { display: flex; align-items: center; gap: 20px; }
.hdr-link {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 6px 4px;
}
.hdr-link:hover { color: var(--white); }
.hdr-link.is-active { color: var(--white); font-weight: 600; }
.hdr-lang {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 500;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
}
.hdr-lang::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}
.hdr-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 120ms ease;
}
.hdr-buy:hover { background: var(--gold-dk); }
.hdr-buy svg { width: 16px; height: 16px; }

/* ---------- Hero: single big castle photo with overlay ---------------- */
.hero {
  position: relative;
  height: calc(100vh - 84px); min-height: 540px; max-height: 780px;
  overflow: hidden;
  background: #0e1a1a center/cover no-repeat;
  background-image: url('/assets/img/hero/castle_wide.jpg');
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,26,26,0.35) 0%,
    rgba(14,26,26,0.15) 40%,
    rgba(14,26,26,0.75) 100%
  );
}
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 0 0 72px;
  z-index: 2;
  color: var(--white);
}
.hero-overlay .container { width: 100%; }
.hero-kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  max-width: 780px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 28px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 120ms ease, transform 100ms ease;
}
.hero-cta:hover { background: var(--gold-dk); transform: translateY(-1px); }
.hero-cta svg { width: 18px; height: 18px; }

/* ---------- USP band -------------------------------------------------- */
.usp {
  background: var(--ink);
  color: var(--white);
  padding: 42px 0;
  text-align: center;
}
.usp .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(180,139,58,0.5);
  background: rgba(180,139,58,0.15);
  color: var(--gold-lt);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.usp .badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(180,139,58,0.2);
}
.usp h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin: 0 0 12px;
}
.usp p {
  max-width: 640px; margin: 0 auto;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

/* ---------- About / Story -------------------------------------------- */
.about {
  padding: 96px 0 64px;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-copy .eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 16px;
}
.about-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 500; line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ink);
}
.about-copy p {
  color: var(--ink-2); font-size: 16px; line-height: 1.75;
  margin: 0 0 16px;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Ticket cards --------------------------------------------- */
.tickets {
  background: var(--ivory);
  padding: 96px 0 112px;
}
.tickets .head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.tickets .head .eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 16px;
}
.tickets .head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 500; line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.tickets .head p { color: var(--dim); }

.ticket-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ticket-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,44,43,0.08);
}
.ticket-card--feat {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.ticket-card--feat .t-title,
.ticket-card--feat .t-name,
.ticket-card--feat li { color: var(--white); }
.ticket-card--feat .t-desc { color: rgba(255,255,255,0.75); }
.ticket-card--feat li { color: rgba(255,255,255,0.85); }
.ticket-card--feat .t-price .amount { color: var(--gold-lt); }

.ticket-card .t-name {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--teal);
  margin-bottom: 10px;
}
.ticket-card--feat .t-name { color: var(--gold-lt); }
.ticket-card .t-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px; font-weight: 500; line-height: 1.15;
  margin: 0 0 12px;
}
.ticket-card .t-desc {
  color: var(--dim); font-size: 14px; line-height: 1.6;
  margin: 0 0 24px;
}
.ticket-card .t-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
}
.ticket-card .t-price .amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px; font-weight: 600; line-height: 1;
  color: var(--ink);
}
.ticket-card .t-price .unit {
  font-size: 13px; color: var(--dim);
}
.ticket-card ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  font-size: 14px; color: var(--ink-2);
}
.ticket-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ticket-card--feat ul li { border-bottom: 1px solid rgba(255,255,255,0.14); }
.ticket-card ul li:last-child { border-bottom: 0; }
.ticket-card ul li::before {
  content: ""; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  margin-top: 8px;
}
.ticket-card .buy {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; background: var(--gold); color: var(--white);
  border-radius: 3px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 120ms ease;
}
.ticket-card .buy:hover { background: var(--gold-dk); }
.ticket-card--feat .buy { background: var(--gold-lt); color: var(--ink); }
.ticket-card--feat .buy:hover { background: var(--gold); color: var(--white); }

/* ---------- Practical info ------------------------------------------ */
.practical { padding: 96px 0; background: var(--white); }
.practical .head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.practical .head .eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 16px;
}
.practical .head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; line-height: 1.15; margin: 0;
  color: var(--ink);
}
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.info-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}
.info-card .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(180,139,58,0.12); color: var(--gold-dk);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px; font-weight: 500; margin: 0 0 8px;
  color: var(--ink);
}
.info-card p { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.65; }
.info-card p strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer -------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin: 16px 0 0; max-width: 320px; line-height: 1.65; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.5); font-size: 12px;
}

/* ---------- Responsive ---------------------------------------------- */
@media (max-width: 1024px) {
  .ticket-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-header { height: 68px; }
  .hdr-brand-sub, .hdr-link { display: none; }
  .hero { height: calc(100vh - 68px); min-height: 480px; }
  .hero-title { font-size: 34px; }
  .hero-lead { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
}
