:root{
  /* From your badge/logo palette */
  --bg0:#05050a;
  --bg1:#0b0c16;
  --bg2:#0f1222;
  --cream:#fff5e6;
  --cream2:#f2e6d0;
  --muted:rgba(255,245,230,.78);
  --muted2:rgba(255,245,230,.66);
  --line:rgba(255,245,230,.16);
  --line2:rgba(255,245,230,.24);
  --navy:#1a2d4a;
  --navy2:#24436a;
  --accent:#d13d1b;
  --accent2:#ff6a00;
  --accent-soft:rgba(209,61,27,.14);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --shadow-soft:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  --radius2:26px;
  --container:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Onest", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.6;
  color:var(--cream);
  background:
    radial-gradient(1100px 650px at 14% -10%, rgba(255,106,0,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(26,45,74,.55), transparent 60%),
    radial-gradient(1000px 720px at 60% 90%, rgba(209,61,27,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg2));
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(1.25rem, 4vw, 2.5rem);
}

.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;padding:10px 14px;
  background:rgba(0,0,0,.9);border:1px solid var(--line2);border-radius:12px;z-index:9999;
  box-shadow:var(--shadow-soft);
}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(5,5,10,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,245,230,.12);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:16px;
}

.brand{
  display:flex;align-items:center;gap:14px;
  text-decoration:none;
}
.brand__logo{
  width:56px;height:56px;object-fit:contain;
  flex-shrink:0;
}
.brand__text{display:flex;flex-direction:column;gap:2px}
.brand__title{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-weight:800;
  letter-spacing:.01em;
  color:var(--cream);
  font-size:1.05rem;
}
.brand__sub{font-size:14px;color:var(--muted2)}

.nav{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  text-decoration:none;
  padding:9px 14px;border-radius:999px;
  border:1px solid rgba(255,245,230,.12);
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  transition:background .15s ease,border-color .15s ease,transform .15s ease;
}
.nav a:hover{
  background:rgba(255,245,230,.06);
  border-color:rgba(255,245,230,.26);
  color:var(--cream);
  transform:translateY(-1px);
}

.hero{padding:clamp(3.25rem, 9vw, 6.5rem) 0 2.5rem}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:clamp(2.0rem, 6vw, 4.5rem);
  align-items:start;
}

.pill{
  display:inline-flex;gap:10px;align-items:center;
  padding:9px 14px;border-radius:999px;
  border:1px solid rgba(255,245,230,.14);
  background:rgba(255,245,230,.06);
  color:var(--muted);
  margin:0 0 16px;
  font-size:14px;
  font-weight:650;
}

h1,h2,h3{
  margin:0;
  font-family:"Fraunces", ui-serif, Georgia, serif;
  color:var(--cream);
}
h1{
  font-size:clamp(2.1rem, 4.9vw, 3.25rem);
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:700;
}
.hero__em{display:block;font-weight:700;color:var(--accent2);margin-top:.6rem}
.lede{
  margin:1.3rem 0 0;
  font-size:clamp(1.05rem, 1.6vw, 1.2rem);
  color:var(--muted);
  max-width:52ch;
  line-height:1.7;
}

.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:1.8rem}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(255,245,230,.16);
  background:rgba(255,245,230,.05);
  color:var(--cream);
  font-weight:800;
  font-size:14px;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,245,230,.28);
  background:rgba(255,245,230,.08);
}

.btn--primary{
  border-color:rgba(255,106,0,.35);
  background:linear-gradient(135deg, rgba(209,61,27,1) 0%, rgba(255,106,0,1) 120%);
  color:#0b0b10;
}
.btn--primary:hover{
  border-color:rgba(255,106,0,.55);
  background:linear-gradient(135deg, rgba(209,61,27,1) 0%, rgba(255,122,0,1) 120%);
}

.btn--ghost{
  background:transparent;
  border-color:rgba(255,245,230,.22);
  color:var(--cream);
}
.btn--ghost:hover{
  background:rgba(255,106,0,.09);
  border-color:rgba(255,106,0,.35);
}

.facts{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid rgba(255,245,230,.14);
}
.fact{
  border:1px solid rgba(255,245,230,.12);
  border-radius:18px;
  padding:14px 14px;
  background:rgba(0,0,0,.18);
}
.fact__k{
  font-size:11px;
  color:var(--muted2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}
.fact__v{
  margin-top:8px;
  font-weight:800;
  color:var(--cream);
  line-height:1.35;
}

.hero__art{display:flex;align-items:flex-start;justify-content:center}
.hero__figure{
  margin:0;
  padding:clamp(1.6rem, 3.8vw, 2.4rem);
  width:100%;
  max-width:460px;
  text-align:center;
  border-radius:calc(var(--radius2) + 4px);
  border:1px solid rgba(255,245,230,.14);
  background:
    radial-gradient(520px 260px at 20% 10%, rgba(26,45,74,.55), transparent 60%),
    radial-gradient(420px 240px at 80% 25%, rgba(209,61,27,.42), transparent 58%),
    linear-gradient(180deg, rgba(255,245,230,.08), rgba(255,245,230,.03));
  box-shadow:var(--shadow);
}

.hero__logo{
  width:100%;
  height:auto;
  max-width:300px;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.42));
}
.hero__taglineWrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin:1.25rem 0 0;
}
.hero__tagline{
  width:100%;
  height:auto;
  max-width:300px;
  display:block;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.hero__caption{
  margin:1.35rem 0 0;
  font-size:15px;
  color:var(--muted);
  line-height:1.55;
  font-weight:650;
}

.section{padding:clamp(4.5rem, 10vw, 7rem) 0}
.section__head{max-width:76ch}
.section__head h2{margin-bottom:16px}
.muted{color:var(--muted);margin:12px 0 0;line-height:1.7}

.card{
  border:1px solid rgba(255,245,230,.14);
  border-radius:var(--radius2);
  background:rgba(0,0,0,.22);
  padding:clamp(1.6rem, 3.6vw, 2.5rem);
  box-shadow:0 12px 40px rgba(0,0,0,.35);
}
.card--soft{
  background:
    radial-gradient(260px 160px at 10% 20%, rgba(255,106,0,.12), transparent 60%),
    rgba(0,0,0,.18);
  box-shadow:none;
}

.termine{
  display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap;
}
.termine__meta{min-width:240px;max-width:26rem}
.termine__big{font-weight:900;font-size:1.2rem;color:var(--cream)}
.termine__small{color:var(--muted2);margin-top:.75rem;line-height:1.7;font-size:15px}
.termine__list{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  flex:1;
  min-width:260px;
}

.dateCard{
  border:1px solid rgba(255,245,230,.14);
  border-radius:18px;
  padding:14px 14px;
  background:rgba(0,0,0,.18);
}
.dateCard__m{
  font-size:11px;color:var(--muted2);letter-spacing:.1em;text-transform:uppercase;font-weight:900
}
.dateCard__d{margin-top:8px;font-weight:1000;font-size:1.05rem;color:var(--cream)}
.dateCard__w{margin-top:4px;color:var(--muted);font-size:14px}

.skeleton{
  height:92px;border-radius:18px;
  border:1px solid rgba(255,245,230,.12);
  background:linear-gradient(90deg, rgba(255,245,230,.05), rgba(255,245,230,.09), rgba(255,245,230,.05));
  background-size:200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer{
  0%{background-position:0% 0%}
  100%{background-position:200% 0%}
}

.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.section--contrast{
  border-top:1px solid rgba(255,245,230,.14);
  border-bottom:1px solid rgba(255,245,230,.14);
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(209,61,27,.26), transparent 60%),
    radial-gradient(900px 480px at 95% 20%, rgba(26,45,74,.54), transparent 55%),
    rgba(0,0,0,.12);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:clamp(2rem, 6vw, 4.5rem);
  align-items:start;
}
.quote{
  margin-top:18px;
  border-left:6px solid rgba(255,106,0,.95);
  padding:14px 16px;
  background:rgba(255,106,0,.10);
  border-radius:0 18px 18px 0;
}
.quote p{margin:0;color:var(--cream);line-height:1.7;font-weight:750}

.gridCards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.mini{
  border:1px solid rgba(255,245,230,.14);
  border-radius:22px;
  padding:16px 16px;
  background:rgba(0,0,0,.18);
}
.mini__k{font-size:24px}
.mini__t{margin-top:8px;font-weight:950}
.mini__d{margin-top:6px;color:var(--muted);font-size:15px;line-height:1.6}

.tips{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:10px;
}
.tip{
  border:1px solid rgba(255,245,230,.14);
  border-radius:22px;
  padding:18px 18px;
  background:rgba(0,0,0,.18);
}
.tip h3{font-family:"Fraunces", ui-serif, Georgia, serif;margin:0;font-size:1.15rem;font-weight:850}
.tip p{margin:10px 0 0;color:var(--muted);line-height:1.7;font-size:15px}

.section--soft{
  background:
    radial-gradient(700px 420px at 15% 10%, rgba(26,45,74,.35), transparent 60%),
    rgba(0,0,0,.04);
  border-top:1px solid rgba(255,245,230,.12);
}

.contactGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:10px;
}
.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}
.list a{
  color:rgba(255,245,230,.82);
  text-decoration:none;
  border-bottom:1px solid rgba(255,245,230,.18);
}
.list a:hover{border-bottom-color:rgba(255,106,0,.55);color:var(--cream)}

.footer{
  border-top:1px solid rgba(255,245,230,.14);
  padding:28px 0 34px;
  background:rgba(0,0,0,.20);
}
.footer__inner{
  display:flex;align-items:flex-start;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.footer__left{display:flex;align-items:center;gap:16px}
.footer__logo{width:64px;height:64px;object-fit:contain}
.footer__brand{font-weight:900;color:var(--cream)}
.footer__muted{color:var(--muted2);margin-top:6px;font-size:14px}
.footer__links{display:flex;gap:14px;flex-wrap:wrap}
.footer__links a{
  color:rgba(255,245,230,.78);text-decoration:none;font-size:14px;
  border-bottom:1px solid rgba(255,245,230,.16);
}
.footer__links a:hover{border-bottom-color:rgba(255,106,0,.55);color:var(--cream)}

.legal{
  max-width:82ch;
}
.legal h3{
  margin:1.6rem 0 .6rem;
  font-family:"Fraunces", ui-serif, Georgia, serif;
  color:var(--cream);
  font-weight:900;
  letter-spacing:.01em;
  font-size:1.06rem;
}
.legal p{
  margin:.55rem 0;
  color:var(--muted);
  line-height:1.8;
}
.legal a{
  color:rgba(255,245,230,.88);
  text-decoration:none;
  border-bottom:1px solid rgba(255,245,230,.20);
}
.legal a:hover{
  border-bottom-color:rgba(255,106,0,.55);
  color:var(--cream);
}

.form{
  margin-top:14px;
  display:grid;
  gap:14px;
  max-width:820px;
}
.form__grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.form label{
  display:block;
  font-weight:900;
  color:var(--cream);
  font-size:14px;
  margin-bottom:8px;
}
.form input,
.form select,
.form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,245,230,.18);
  background:rgba(0,0,0,.18);
  color:var(--cream);
  font:inherit;
  outline:none;
}
.form textarea{
  min-height:160px;
  resize:vertical;
}
.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 4px rgba(255,106,0,.10);
}
.form__hint{
  margin:0;
  color:var(--muted2);
  font-size:13px;
  line-height:1.6;
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr;gap:2.5rem}
  .facts{grid-template-columns:1fr}
  .termine__list{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .gridCards{grid-template-columns:1fr}
  .tips{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .nav{display:none}
  .hero__figure{max-width:520px}
  .form__grid2{grid-template-columns:1fr}
}

