/* =====================================================
   Společný základ pro všechny varianty — písma a reset.
   Vzhled si každá varianta řeší ve svém styl.css.
   Písmo Cormorant Garamond je stejné jako na pozvánce.
   ===================================================== */

@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:300;
  src:url('fonty/cormorant-300.woff2') format('woff2'); font-display:swap;
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:400;
  src:url('fonty/cormorant-400.woff2') format('woff2'); font-display:swap;
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:italic; font-weight:400;
  src:url('fonty/cormorant-400i.woff2') format('woff2'); font-display:swap;
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:500;
  src:url('fonty/cormorant-500.woff2') format('woff2'); font-display:swap;
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:600;
  src:url('fonty/cormorant-600.woff2') format('woff2'); font-display:swap;
}

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

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }

/* Přesahující dekorace nesmí roztáhnout stránku do šířky.
   „clip" nevytvoří scroll kontejner, který by rozbil pinování. */
html, body{ overflow-x:clip; }

/* O plynulé rolování se stará Lenis, jakmile naběhne */
html.anim{ scroll-behavior:auto; }
html:not(.anim){ scroll-behavior:smooth; }
